tencentcloud-sdk-python-ocr 3.0.1316__tar.gz → 3.0.1318__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/ocr/v20181119/models.py +42 -4
  5. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ocr-3.0.1318/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ocr-3.0.1316/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/ocr/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/ocr/v20181119/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
  14. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ocr-3.0.1316 → tencentcloud-sdk-python-ocr-3.0.1318}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1316
3
+ Version: 3.0.1318
4
4
  Summary: Tencent Cloud Ocr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ocr',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1316"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1318"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ocr SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1316'
17
+ __version__ = '3.0.1318'
@@ -3956,19 +3956,29 @@ class ContentInfo(AbstractModel):
3956
3956
  :type Content: str
3957
3957
  :param _Confidence: 结果置信度
3958
3958
  :type Confidence: int
3959
- :param _IsInComplete: 字段是否不完整
3959
+ :param _IsInComplete: 字段是否不完整(value内容)
3960
3960
  0 字段正常
3961
3961
  1 字段不完整
3962
3962
  :type IsInComplete: int
3963
- :param _IsReflect: 字段反光
3963
+ :param _IsReflect: 字段反光(value内容)
3964
3964
  0 字段正常
3965
3965
  1 字段有反光
3966
3966
  :type IsReflect: int
3967
+ :param _IsKeyInComplete: 字段是否不完整(key内容)
3968
+ 0 字段正常
3969
+ 1 字段不完整
3970
+ :type IsKeyInComplete: int
3971
+ :param _IsKeyReflect: 字段反光(key内容)
3972
+ 0 字段正常
3973
+ 1 字段有反光
3974
+ :type IsKeyReflect: int
3967
3975
  """
3968
3976
  self._Content = None
3969
3977
  self._Confidence = None
3970
3978
  self._IsInComplete = None
3971
3979
  self._IsReflect = None
3980
+ self._IsKeyInComplete = None
3981
+ self._IsKeyReflect = None
3972
3982
 
3973
3983
  @property
3974
3984
  def Content(self):
@@ -3994,7 +4004,7 @@ class ContentInfo(AbstractModel):
3994
4004
 
3995
4005
  @property
3996
4006
  def IsInComplete(self):
3997
- """字段是否不完整
4007
+ """字段是否不完整(value内容)
3998
4008
  0 字段正常
3999
4009
  1 字段不完整
4000
4010
  :rtype: int
@@ -4007,7 +4017,7 @@ class ContentInfo(AbstractModel):
4007
4017
 
4008
4018
  @property
4009
4019
  def IsReflect(self):
4010
- """字段反光
4020
+ """字段反光(value内容)
4011
4021
  0 字段正常
4012
4022
  1 字段有反光
4013
4023
  :rtype: int
@@ -4018,12 +4028,40 @@ class ContentInfo(AbstractModel):
4018
4028
  def IsReflect(self, IsReflect):
4019
4029
  self._IsReflect = IsReflect
4020
4030
 
4031
+ @property
4032
+ def IsKeyInComplete(self):
4033
+ """字段是否不完整(key内容)
4034
+ 0 字段正常
4035
+ 1 字段不完整
4036
+ :rtype: int
4037
+ """
4038
+ return self._IsKeyInComplete
4039
+
4040
+ @IsKeyInComplete.setter
4041
+ def IsKeyInComplete(self, IsKeyInComplete):
4042
+ self._IsKeyInComplete = IsKeyInComplete
4043
+
4044
+ @property
4045
+ def IsKeyReflect(self):
4046
+ """字段反光(key内容)
4047
+ 0 字段正常
4048
+ 1 字段有反光
4049
+ :rtype: int
4050
+ """
4051
+ return self._IsKeyReflect
4052
+
4053
+ @IsKeyReflect.setter
4054
+ def IsKeyReflect(self, IsKeyReflect):
4055
+ self._IsKeyReflect = IsKeyReflect
4056
+
4021
4057
 
4022
4058
  def _deserialize(self, params):
4023
4059
  self._Content = params.get("Content")
4024
4060
  self._Confidence = params.get("Confidence")
4025
4061
  self._IsInComplete = params.get("IsInComplete")
4026
4062
  self._IsReflect = params.get("IsReflect")
4063
+ self._IsKeyInComplete = params.get("IsKeyInComplete")
4064
+ self._IsKeyReflect = params.get("IsKeyReflect")
4027
4065
  memeber_set = set(params.keys())
4028
4066
  for name, value in vars(self).items():
4029
4067
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1316
3
+ Version: 3.0.1318
4
4
  Summary: Tencent Cloud Ocr SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1318
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1316