tencentcloud-sdk-python-ocr 3.0.1184__tar.gz → 3.0.1185__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.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/ocr/v20181119/models.py +12 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1185/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1184/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1184 → tencentcloud-sdk-python-ocr-3.0.1185}/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.1185"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -30490,9 +30490,12 @@ class VerifyOfdVatInvoiceOCRRequest(AbstractModel):
|
|
|
30490
30490
|
:param _OfdFileBase64: OFD文件的 Base64 值。
|
|
30491
30491
|
OfdFileUrl 和 OfdFileBase64 必传其一,若两者都传,只解析OfdFileBase64。
|
|
30492
30492
|
:type OfdFileBase64: str
|
|
30493
|
+
:param _OfdPageNumber: 需要识别的OFD发票页面的对应页码,默认值为1。 示例值:1
|
|
30494
|
+
:type OfdPageNumber: int
|
|
30493
30495
|
"""
|
|
30494
30496
|
self._OfdFileUrl = None
|
|
30495
30497
|
self._OfdFileBase64 = None
|
|
30498
|
+
self._OfdPageNumber = None
|
|
30496
30499
|
|
|
30497
30500
|
@property
|
|
30498
30501
|
def OfdFileUrl(self):
|
|
@@ -30510,10 +30513,19 @@ OfdFileUrl 和 OfdFileBase64 必传其一,若两者都传,只解析OfdFileBa
|
|
|
30510
30513
|
def OfdFileBase64(self, OfdFileBase64):
|
|
30511
30514
|
self._OfdFileBase64 = OfdFileBase64
|
|
30512
30515
|
|
|
30516
|
+
@property
|
|
30517
|
+
def OfdPageNumber(self):
|
|
30518
|
+
return self._OfdPageNumber
|
|
30519
|
+
|
|
30520
|
+
@OfdPageNumber.setter
|
|
30521
|
+
def OfdPageNumber(self, OfdPageNumber):
|
|
30522
|
+
self._OfdPageNumber = OfdPageNumber
|
|
30523
|
+
|
|
30513
30524
|
|
|
30514
30525
|
def _deserialize(self, params):
|
|
30515
30526
|
self._OfdFileUrl = params.get("OfdFileUrl")
|
|
30516
30527
|
self._OfdFileBase64 = params.get("OfdFileBase64")
|
|
30528
|
+
self._OfdPageNumber = params.get("OfdPageNumber")
|
|
30517
30529
|
memeber_set = set(params.keys())
|
|
30518
30530
|
for name, value in vars(self).items():
|
|
30519
30531
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1185
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1184
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|