tencentcloud-sdk-python-ocr 3.0.1155__tar.gz → 3.0.1157__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.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/ocr/v20181119/models.py +72 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1157/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1155/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1155 → tencentcloud-sdk-python-ocr-3.0.1157}/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.1157"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1556,6 +1556,18 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
|
1556
1556
|
|
|
1557
1557
|
|
|
1558
1558
|
:type Angle: float
|
|
1559
|
+
:param _NationalEmblem: 是否有国徽。0为没有,1为有。
|
|
1560
|
+
:type NationalEmblem: bool
|
|
1561
|
+
:param _QRCode: 是否有二维码。0为没有,1为有。
|
|
1562
|
+
:type QRCode: bool
|
|
1563
|
+
:param _Seal: 是否有印章。0为没有,1为有。
|
|
1564
|
+
:type Seal: bool
|
|
1565
|
+
:param _Title: 标题
|
|
1566
|
+
:type Title: str
|
|
1567
|
+
:param _SerialNumber: 编号
|
|
1568
|
+
:type SerialNumber: str
|
|
1569
|
+
:param _RegistrationAuthority: 登记机关
|
|
1570
|
+
:type RegistrationAuthority: str
|
|
1559
1571
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1560
1572
|
:type RequestId: str
|
|
1561
1573
|
"""
|
|
@@ -1574,6 +1586,12 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
|
1574
1586
|
self._IsDuplication = None
|
|
1575
1587
|
self._RegistrationDate = None
|
|
1576
1588
|
self._Angle = None
|
|
1589
|
+
self._NationalEmblem = None
|
|
1590
|
+
self._QRCode = None
|
|
1591
|
+
self._Seal = None
|
|
1592
|
+
self._Title = None
|
|
1593
|
+
self._SerialNumber = None
|
|
1594
|
+
self._RegistrationAuthority = None
|
|
1577
1595
|
self._RequestId = None
|
|
1578
1596
|
|
|
1579
1597
|
@property
|
|
@@ -1696,6 +1714,54 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
|
1696
1714
|
def Angle(self, Angle):
|
|
1697
1715
|
self._Angle = Angle
|
|
1698
1716
|
|
|
1717
|
+
@property
|
|
1718
|
+
def NationalEmblem(self):
|
|
1719
|
+
return self._NationalEmblem
|
|
1720
|
+
|
|
1721
|
+
@NationalEmblem.setter
|
|
1722
|
+
def NationalEmblem(self, NationalEmblem):
|
|
1723
|
+
self._NationalEmblem = NationalEmblem
|
|
1724
|
+
|
|
1725
|
+
@property
|
|
1726
|
+
def QRCode(self):
|
|
1727
|
+
return self._QRCode
|
|
1728
|
+
|
|
1729
|
+
@QRCode.setter
|
|
1730
|
+
def QRCode(self, QRCode):
|
|
1731
|
+
self._QRCode = QRCode
|
|
1732
|
+
|
|
1733
|
+
@property
|
|
1734
|
+
def Seal(self):
|
|
1735
|
+
return self._Seal
|
|
1736
|
+
|
|
1737
|
+
@Seal.setter
|
|
1738
|
+
def Seal(self, Seal):
|
|
1739
|
+
self._Seal = Seal
|
|
1740
|
+
|
|
1741
|
+
@property
|
|
1742
|
+
def Title(self):
|
|
1743
|
+
return self._Title
|
|
1744
|
+
|
|
1745
|
+
@Title.setter
|
|
1746
|
+
def Title(self, Title):
|
|
1747
|
+
self._Title = Title
|
|
1748
|
+
|
|
1749
|
+
@property
|
|
1750
|
+
def SerialNumber(self):
|
|
1751
|
+
return self._SerialNumber
|
|
1752
|
+
|
|
1753
|
+
@SerialNumber.setter
|
|
1754
|
+
def SerialNumber(self, SerialNumber):
|
|
1755
|
+
self._SerialNumber = SerialNumber
|
|
1756
|
+
|
|
1757
|
+
@property
|
|
1758
|
+
def RegistrationAuthority(self):
|
|
1759
|
+
return self._RegistrationAuthority
|
|
1760
|
+
|
|
1761
|
+
@RegistrationAuthority.setter
|
|
1762
|
+
def RegistrationAuthority(self, RegistrationAuthority):
|
|
1763
|
+
self._RegistrationAuthority = RegistrationAuthority
|
|
1764
|
+
|
|
1699
1765
|
@property
|
|
1700
1766
|
def RequestId(self):
|
|
1701
1767
|
return self._RequestId
|
|
@@ -1721,6 +1787,12 @@ WARN_RESHOOT_CARD翻拍件告警
|
|
|
1721
1787
|
self._IsDuplication = params.get("IsDuplication")
|
|
1722
1788
|
self._RegistrationDate = params.get("RegistrationDate")
|
|
1723
1789
|
self._Angle = params.get("Angle")
|
|
1790
|
+
self._NationalEmblem = params.get("NationalEmblem")
|
|
1791
|
+
self._QRCode = params.get("QRCode")
|
|
1792
|
+
self._Seal = params.get("Seal")
|
|
1793
|
+
self._Title = params.get("Title")
|
|
1794
|
+
self._SerialNumber = params.get("SerialNumber")
|
|
1795
|
+
self._RegistrationAuthority = params.get("RegistrationAuthority")
|
|
1724
1796
|
self._RequestId = params.get("RequestId")
|
|
1725
1797
|
|
|
1726
1798
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1157
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1155
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|