tencentcloud-sdk-python-ocr 3.1.59__tar.gz → 3.1.60__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.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/setup.py +1 -1
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/v20181119/models.py +0 -30
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ocr-3.1.60/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ocr-3.1.59/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/README.rst +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/__init__.py +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/v20181119/__init__.py +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/v20181119/ocr_client.py +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud/ocr/v20181119/ocr_client_async.py +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ocr-3.1.59 → tencentcloud_sdk_python_ocr-3.1.60}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ocr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.60
|
|
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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.60
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.60,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ocr SDK for Python',
|
|
@@ -11689,10 +11689,6 @@ class GeneralAccurateOCRRequest(AbstractModel):
|
|
|
11689
11689
|
:type EnableDetectText: bool
|
|
11690
11690
|
:param _ConfigID: <p>配置ID支持: OCR -- 通用场景 MulOCR--多语种场景,默认值为OCR</p>
|
|
11691
11691
|
:type ConfigID: str
|
|
11692
|
-
:param _WordsType: <p>需要识别的文字类型,默认识别全部类型的文字。 0:自动识别全部类型文字 1:仅识别手写体文字 2:仅识别印刷体文字</p>
|
|
11693
|
-
:type WordsType: str
|
|
11694
|
-
:param _LanguageInfo: <p>支持输出单行文字的语种信息,开启后耗时会略有增加。</p>
|
|
11695
|
-
:type LanguageInfo: bool
|
|
11696
11692
|
"""
|
|
11697
11693
|
self._ImageBase64 = None
|
|
11698
11694
|
self._ImageUrl = None
|
|
@@ -11702,8 +11698,6 @@ class GeneralAccurateOCRRequest(AbstractModel):
|
|
|
11702
11698
|
self._PdfPageNumber = None
|
|
11703
11699
|
self._EnableDetectText = None
|
|
11704
11700
|
self._ConfigID = None
|
|
11705
|
-
self._WordsType = None
|
|
11706
|
-
self._LanguageInfo = None
|
|
11707
11701
|
|
|
11708
11702
|
@property
|
|
11709
11703
|
def ImageBase64(self):
|
|
@@ -11793,28 +11787,6 @@ class GeneralAccurateOCRRequest(AbstractModel):
|
|
|
11793
11787
|
def ConfigID(self, ConfigID):
|
|
11794
11788
|
self._ConfigID = ConfigID
|
|
11795
11789
|
|
|
11796
|
-
@property
|
|
11797
|
-
def WordsType(self):
|
|
11798
|
-
r"""<p>需要识别的文字类型,默认识别全部类型的文字。 0:自动识别全部类型文字 1:仅识别手写体文字 2:仅识别印刷体文字</p>
|
|
11799
|
-
:rtype: str
|
|
11800
|
-
"""
|
|
11801
|
-
return self._WordsType
|
|
11802
|
-
|
|
11803
|
-
@WordsType.setter
|
|
11804
|
-
def WordsType(self, WordsType):
|
|
11805
|
-
self._WordsType = WordsType
|
|
11806
|
-
|
|
11807
|
-
@property
|
|
11808
|
-
def LanguageInfo(self):
|
|
11809
|
-
r"""<p>支持输出单行文字的语种信息,开启后耗时会略有增加。</p>
|
|
11810
|
-
:rtype: bool
|
|
11811
|
-
"""
|
|
11812
|
-
return self._LanguageInfo
|
|
11813
|
-
|
|
11814
|
-
@LanguageInfo.setter
|
|
11815
|
-
def LanguageInfo(self, LanguageInfo):
|
|
11816
|
-
self._LanguageInfo = LanguageInfo
|
|
11817
|
-
|
|
11818
11790
|
|
|
11819
11791
|
def _deserialize(self, params):
|
|
11820
11792
|
self._ImageBase64 = params.get("ImageBase64")
|
|
@@ -11825,8 +11797,6 @@ class GeneralAccurateOCRRequest(AbstractModel):
|
|
|
11825
11797
|
self._PdfPageNumber = params.get("PdfPageNumber")
|
|
11826
11798
|
self._EnableDetectText = params.get("EnableDetectText")
|
|
11827
11799
|
self._ConfigID = params.get("ConfigID")
|
|
11828
|
-
self._WordsType = params.get("WordsType")
|
|
11829
|
-
self._LanguageInfo = params.get("LanguageInfo")
|
|
11830
11800
|
memeber_set = set(params.keys())
|
|
11831
11801
|
for name, value in vars(self).items():
|
|
11832
11802
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ocr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.60
|
|
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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.60
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.60
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|