tencentcloud-sdk-python-ocr 3.0.1369__tar.gz → 3.0.1371__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.
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/ocr/v20181119/models.py +15 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1371/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1369/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1369 → tencentcloud-sdk-python-ocr-3.0.1371}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1371"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1520,6 +1520,8 @@ class BankCardOCRResponse(AbstractModel):
|
|
|
1520
1520
|
:param _QualityValue: 图片质量分数,请求EnableQualityValue时返回(取值范围:0-100,分数越低越模糊,建议阈值≥50)。
|
|
1521
1521
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1522
1522
|
:type QualityValue: int
|
|
1523
|
+
:param _CardCategory: 卡类别, 如: 标准实体银行卡、电子银行卡信息截图
|
|
1524
|
+
:type CardCategory: str
|
|
1523
1525
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1524
1526
|
:type RequestId: str
|
|
1525
1527
|
"""
|
|
@@ -1532,6 +1534,7 @@ class BankCardOCRResponse(AbstractModel):
|
|
|
1532
1534
|
self._CardNoImage = None
|
|
1533
1535
|
self._WarningCode = None
|
|
1534
1536
|
self._QualityValue = None
|
|
1537
|
+
self._CardCategory = None
|
|
1535
1538
|
self._RequestId = None
|
|
1536
1539
|
|
|
1537
1540
|
@property
|
|
@@ -1643,6 +1646,17 @@ class BankCardOCRResponse(AbstractModel):
|
|
|
1643
1646
|
def QualityValue(self, QualityValue):
|
|
1644
1647
|
self._QualityValue = QualityValue
|
|
1645
1648
|
|
|
1649
|
+
@property
|
|
1650
|
+
def CardCategory(self):
|
|
1651
|
+
"""卡类别, 如: 标准实体银行卡、电子银行卡信息截图
|
|
1652
|
+
:rtype: str
|
|
1653
|
+
"""
|
|
1654
|
+
return self._CardCategory
|
|
1655
|
+
|
|
1656
|
+
@CardCategory.setter
|
|
1657
|
+
def CardCategory(self, CardCategory):
|
|
1658
|
+
self._CardCategory = CardCategory
|
|
1659
|
+
|
|
1646
1660
|
@property
|
|
1647
1661
|
def RequestId(self):
|
|
1648
1662
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1665,6 +1679,7 @@ class BankCardOCRResponse(AbstractModel):
|
|
|
1665
1679
|
self._CardNoImage = params.get("CardNoImage")
|
|
1666
1680
|
self._WarningCode = params.get("WarningCode")
|
|
1667
1681
|
self._QualityValue = params.get("QualityValue")
|
|
1682
|
+
self._CardCategory = params.get("CardCategory")
|
|
1668
1683
|
self._RequestId = params.get("RequestId")
|
|
1669
1684
|
|
|
1670
1685
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1371
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1369
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|