tencentcloud-sdk-python-ocr 3.0.1444__tar.gz → 3.0.1445__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.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/setup.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/ocr/v20181119/models.py +15 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ocr-3.0.1445/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ocr-3.0.1444/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/README.rst +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ocr-3.0.1444 → tencentcloud-sdk-python-ocr-3.0.1445}/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.1445,<4.0.0"],
|
12
12
|
version=tencentcloud.__version__,
|
13
13
|
description='Tencent Cloud Ocr SDK for Python',
|
14
14
|
long_description=open('README.rst').read(),
|
@@ -36801,6 +36801,8 @@ class VatElectronicInfo(AbstractModel):
|
|
36801
36801
|
:type TaxMark: str
|
36802
36802
|
:param _CompanySealMark: 是否有公司印章(0:没有,1:有)
|
36803
36803
|
:type CompanySealMark: int
|
36804
|
+
:param _InvoicePageIndex: 全电类型的多页pdf票据中,支持输出票面页码:当前第几页,一共第几页。
|
36805
|
+
:type InvoicePageIndex: str
|
36804
36806
|
"""
|
36805
36807
|
self._Title = None
|
36806
36808
|
self._Number = None
|
@@ -36824,6 +36826,7 @@ class VatElectronicInfo(AbstractModel):
|
|
36824
36826
|
self._PretaxAmountMark = None
|
36825
36827
|
self._TaxMark = None
|
36826
36828
|
self._CompanySealMark = None
|
36829
|
+
self._InvoicePageIndex = None
|
36827
36830
|
|
36828
36831
|
@property
|
36829
36832
|
def Title(self):
|
@@ -37067,6 +37070,17 @@ class VatElectronicInfo(AbstractModel):
|
|
37067
37070
|
def CompanySealMark(self, CompanySealMark):
|
37068
37071
|
self._CompanySealMark = CompanySealMark
|
37069
37072
|
|
37073
|
+
@property
|
37074
|
+
def InvoicePageIndex(self):
|
37075
|
+
"""全电类型的多页pdf票据中,支持输出票面页码:当前第几页,一共第几页。
|
37076
|
+
:rtype: str
|
37077
|
+
"""
|
37078
|
+
return self._InvoicePageIndex
|
37079
|
+
|
37080
|
+
@InvoicePageIndex.setter
|
37081
|
+
def InvoicePageIndex(self, InvoicePageIndex):
|
37082
|
+
self._InvoicePageIndex = InvoicePageIndex
|
37083
|
+
|
37070
37084
|
|
37071
37085
|
def _deserialize(self, params):
|
37072
37086
|
self._Title = params.get("Title")
|
@@ -37096,6 +37110,7 @@ class VatElectronicInfo(AbstractModel):
|
|
37096
37110
|
self._PretaxAmountMark = params.get("PretaxAmountMark")
|
37097
37111
|
self._TaxMark = params.get("TaxMark")
|
37098
37112
|
self._CompanySealMark = params.get("CompanySealMark")
|
37113
|
+
self._InvoicePageIndex = params.get("InvoicePageIndex")
|
37099
37114
|
memeber_set = set(params.keys())
|
37100
37115
|
for name, value in vars(self).items():
|
37101
37116
|
property_name = name[1:]
|
@@ -0,0 +1 @@
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1445
|
@@ -1 +0,0 @@
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1444
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|