tencentcloud-sdk-python-ocr 3.0.1229__tar.gz → 3.0.1231__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.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/ocr/v20181119/models.py +12 -0
  5. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ocr-3.0.1231/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ocr-3.0.1229/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/ocr/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/ocr/v20181119/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
  14. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ocr-3.0.1229 → tencentcloud-sdk-python-ocr-3.0.1231}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1229
3
+ Version: 3.0.1231
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.1229"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1231"],
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.1229'
17
+ __version__ = '3.0.1231'
@@ -12032,6 +12032,8 @@ class MainlandPermitOCRResponse(AbstractModel):
12032
12032
  :type Type: str
12033
12033
  :param _Profile: RetProfile为True时返回头像字段, Base64编码
12034
12034
  :type Profile: str
12035
+ :param _Nationality: 国籍
12036
+ :type Nationality: str
12035
12037
  :param _MainlandTravelPermitBackInfos: 背面字段信息
12036
12038
  :type MainlandTravelPermitBackInfos: :class:`tencentcloud.ocr.v20181119.models.MainlandTravelPermitBackInfos`
12037
12039
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12048,6 +12050,7 @@ class MainlandPermitOCRResponse(AbstractModel):
12048
12050
  self._IssueNumber = None
12049
12051
  self._Type = None
12050
12052
  self._Profile = None
12053
+ self._Nationality = None
12051
12054
  self._MainlandTravelPermitBackInfos = None
12052
12055
  self._RequestId = None
12053
12056
 
@@ -12139,6 +12142,14 @@ class MainlandPermitOCRResponse(AbstractModel):
12139
12142
  def Profile(self, Profile):
12140
12143
  self._Profile = Profile
12141
12144
 
12145
+ @property
12146
+ def Nationality(self):
12147
+ return self._Nationality
12148
+
12149
+ @Nationality.setter
12150
+ def Nationality(self, Nationality):
12151
+ self._Nationality = Nationality
12152
+
12142
12153
  @property
12143
12154
  def MainlandTravelPermitBackInfos(self):
12144
12155
  return self._MainlandTravelPermitBackInfos
@@ -12168,6 +12179,7 @@ class MainlandPermitOCRResponse(AbstractModel):
12168
12179
  self._IssueNumber = params.get("IssueNumber")
12169
12180
  self._Type = params.get("Type")
12170
12181
  self._Profile = params.get("Profile")
12182
+ self._Nationality = params.get("Nationality")
12171
12183
  if params.get("MainlandTravelPermitBackInfos") is not None:
12172
12184
  self._MainlandTravelPermitBackInfos = MainlandTravelPermitBackInfos()
12173
12185
  self._MainlandTravelPermitBackInfos._deserialize(params.get("MainlandTravelPermitBackInfos"))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1229
3
+ Version: 3.0.1231
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.1231
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1229