tencentcloud-sdk-python-ocr 3.0.1453__py2.py3-none-any.whl → 3.0.1455__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-ocr might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ocr/v20181119/models.py +29 -0
- {tencentcloud_sdk_python_ocr-3.0.1453.dist-info → tencentcloud_sdk_python_ocr-3.0.1455.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_ocr-3.0.1455.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_ocr-3.0.1453.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_ocr-3.0.1453.dist-info → tencentcloud_sdk_python_ocr-3.0.1455.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_ocr-3.0.1453.dist-info → tencentcloud_sdk_python_ocr-3.0.1455.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -8655,6 +8655,12 @@ CarInsurance -- 车辆保险单识别模板
|
|
8655
8655
|
MultiRealEstateCertificate -- 房产材料识别模板
|
8656
8656
|
MultiRealEstateMaterial -- 房产证明识别模板
|
8657
8657
|
HongKongUtilityBill -- 中国香港水电煤单识别模板
|
8658
|
+
OverseasCheques -- 海外支票
|
8659
|
+
RegistrationCertificate -- 备案证
|
8660
|
+
GridPhoto -- 电网系统照片
|
8661
|
+
SignaturePage -- 签署页
|
8662
|
+
|
8663
|
+
|
8658
8664
|
:type ConfigId: str
|
8659
8665
|
:param _EnableCoord: 是否开启全文字段坐标值的识别
|
8660
8666
|
:type EnableCoord: bool
|
@@ -8766,6 +8772,12 @@ CarInsurance -- 车辆保险单识别模板
|
|
8766
8772
|
MultiRealEstateCertificate -- 房产材料识别模板
|
8767
8773
|
MultiRealEstateMaterial -- 房产证明识别模板
|
8768
8774
|
HongKongUtilityBill -- 中国香港水电煤单识别模板
|
8775
|
+
OverseasCheques -- 海外支票
|
8776
|
+
RegistrationCertificate -- 备案证
|
8777
|
+
GridPhoto -- 电网系统照片
|
8778
|
+
SignaturePage -- 签署页
|
8779
|
+
|
8780
|
+
|
8769
8781
|
:rtype: str
|
8770
8782
|
"""
|
8771
8783
|
return self._ConfigId
|
@@ -36737,9 +36749,13 @@ class Value(AbstractModel):
|
|
36737
36749
|
:param _Coord: 四点坐标
|
36738
36750
|
注意:此字段可能返回 null,表示取不到有效值。
|
36739
36751
|
:type Coord: :class:`tencentcloud.ocr.v20181119.models.Polygon`
|
36752
|
+
:param _PageIndex: 页数
|
36753
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36754
|
+
:type PageIndex: str
|
36740
36755
|
"""
|
36741
36756
|
self._AutoContent = None
|
36742
36757
|
self._Coord = None
|
36758
|
+
self._PageIndex = None
|
36743
36759
|
|
36744
36760
|
@property
|
36745
36761
|
def AutoContent(self):
|
@@ -36764,12 +36780,25 @@ class Value(AbstractModel):
|
|
36764
36780
|
def Coord(self, Coord):
|
36765
36781
|
self._Coord = Coord
|
36766
36782
|
|
36783
|
+
@property
|
36784
|
+
def PageIndex(self):
|
36785
|
+
"""页数
|
36786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36787
|
+
:rtype: str
|
36788
|
+
"""
|
36789
|
+
return self._PageIndex
|
36790
|
+
|
36791
|
+
@PageIndex.setter
|
36792
|
+
def PageIndex(self, PageIndex):
|
36793
|
+
self._PageIndex = PageIndex
|
36794
|
+
|
36767
36795
|
|
36768
36796
|
def _deserialize(self, params):
|
36769
36797
|
self._AutoContent = params.get("AutoContent")
|
36770
36798
|
if params.get("Coord") is not None:
|
36771
36799
|
self._Coord = Polygon()
|
36772
36800
|
self._Coord._deserialize(params.get("Coord"))
|
36801
|
+
self._PageIndex = params.get("PageIndex")
|
36773
36802
|
memeber_set = set(params.keys())
|
36774
36803
|
for name, value in vars(self).items():
|
36775
36804
|
property_name = name[1:]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tencentcloud-sdk-python-ocr
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1455
|
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
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1455)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=N4t2nCd7A9PPk2i_nvv8EPP8-VVzl_e0MK-aFMzPTd8,631
|
2
|
+
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
tencentcloud/ocr/v20181119/errorcodes.py,sha256=F14bbQDRi4P9JfBfjuTGaR08iiQkY3d3KcyBwscqAtk,6985
|
5
|
+
tencentcloud/ocr/v20181119/models.py,sha256=kmIJTLgLA2nMQElj0oKxtPPeAmq5Ho378SzueWG80rA,1386730
|
6
|
+
tencentcloud/ocr/v20181119/ocr_client.py,sha256=JQvqYoFzfFFk1WpsYl0Lp6B40f8R7ioLLQAHuhLYeDM,123154
|
7
|
+
tencentcloud_sdk_python_ocr-3.0.1455.dist-info/METADATA,sha256=1iH8e0vtBPv5eK7ckByS4yXP1ZfVHaAujZtJoiC010w,1503
|
8
|
+
tencentcloud_sdk_python_ocr-3.0.1455.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_ocr-3.0.1455.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_ocr-3.0.1455.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=9rvyv4O_Ve_jdTLtBmmYg2c0wchwEaBW8GTxG4fH1HU,631
|
2
|
-
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
tencentcloud/ocr/v20181119/errorcodes.py,sha256=F14bbQDRi4P9JfBfjuTGaR08iiQkY3d3KcyBwscqAtk,6985
|
5
|
-
tencentcloud/ocr/v20181119/models.py,sha256=nb7_719ZMOEHjNkm6lkWFopdu-ITG63_v_mSwrTLC4s,1385966
|
6
|
-
tencentcloud/ocr/v20181119/ocr_client.py,sha256=JQvqYoFzfFFk1WpsYl0Lp6B40f8R7ioLLQAHuhLYeDM,123154
|
7
|
-
tencentcloud_sdk_python_ocr-3.0.1453.dist-info/METADATA,sha256=Yy_ZyNOB5NSR7iqD5n_QG-JVIGnr8FyaJY5G-XZ5fG0,1503
|
8
|
-
tencentcloud_sdk_python_ocr-3.0.1453.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_ocr-3.0.1453.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_ocr-3.0.1453.dist-info/RECORD,,
|
File without changes
|
File without changes
|