tencentcloud-sdk-python-ocr 3.0.1216__tar.gz → 3.0.1226__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/ocr/v20181119/models.py +15 -2
  5. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/ocr/v20181119/ocr_client.py +8 -2
  6. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud_sdk_python_ocr.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-ocr-3.0.1226/tencentcloud_sdk_python_ocr.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-ocr-3.0.1216/tencentcloud_sdk_python_ocr.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/README.rst +0 -0
  10. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/ocr/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/ocr/v20181119/__init__.py +0 -0
  13. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud/ocr/v20181119/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud_sdk_python_ocr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud_sdk_python_ocr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ocr-3.0.1216 → tencentcloud-sdk-python-ocr-3.0.1226}/tencentcloud_sdk_python_ocr.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1216
3
+ Version: 3.0.1226
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
@@ -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.1216"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1226"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ocr SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1216'
17
+ __version__ = '3.0.1226'
@@ -3832,6 +3832,10 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
3832
3832
  :type BackPageName: str
3833
3833
  :param _BackPageCardCode: 驾驶证副页证号
3834
3834
  :type BackPageCardCode: str
3835
+ :param _DriverLicenseType: 驾驶证类型
3836
+ 电子驾驶证:Electronic
3837
+ 普通驾驶证:Normal
3838
+ :type DriverLicenseType: str
3835
3839
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3836
3840
  :type RequestId: str
3837
3841
  """
@@ -3856,6 +3860,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
3856
3860
  self._GenerateTime = None
3857
3861
  self._BackPageName = None
3858
3862
  self._BackPageCardCode = None
3863
+ self._DriverLicenseType = None
3859
3864
  self._RequestId = None
3860
3865
 
3861
3866
  @property
@@ -4026,6 +4031,14 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
4026
4031
  def BackPageCardCode(self, BackPageCardCode):
4027
4032
  self._BackPageCardCode = BackPageCardCode
4028
4033
 
4034
+ @property
4035
+ def DriverLicenseType(self):
4036
+ return self._DriverLicenseType
4037
+
4038
+ @DriverLicenseType.setter
4039
+ def DriverLicenseType(self, DriverLicenseType):
4040
+ self._DriverLicenseType = DriverLicenseType
4041
+
4029
4042
  @property
4030
4043
  def RequestId(self):
4031
4044
  return self._RequestId
@@ -4057,6 +4070,7 @@ WARN_DRIVER_LICENSE_BORDER_INCOMPLETE 边框不完整告警
4057
4070
  self._GenerateTime = params.get("GenerateTime")
4058
4071
  self._BackPageName = params.get("BackPageName")
4059
4072
  self._BackPageCardCode = params.get("BackPageCardCode")
4073
+ self._DriverLicenseType = params.get("DriverLicenseType")
4060
4074
  self._RequestId = params.get("RequestId")
4061
4075
 
4062
4076
 
@@ -22602,8 +22616,7 @@ class StoreInfo(AbstractModel):
22602
22616
 
22603
22617
  def __init__(self):
22604
22618
  r"""
22605
- :param _Name: 识别出的字段名称(关键字),支持以下字段:
22606
- 付款开户行、收款开户行、付款账号、收款账号、回单类型、回单编号、币种、流水号、凭证号码、交易机构、交易金额、手续费、日期等字段信息。
22619
+ :param _Name: 识别出的字段名称(关键字),如商店名称
22607
22620
  :type Name: str
22608
22621
  :param _Value: 识别出的字段名称对应的值,也就是字段Name对应的字符串结果。
22609
22622
  :type Value: str
@@ -255,6 +255,7 @@ class OcrClient(AbstractClient):
255
255
 
256
256
  def ClassifyStoreName(self, request):
257
257
  """本接口用于识别门头照分类标签信息
258
+ 默认接口请求频率限制:1次/秒
258
259
 
259
260
  :param request: Request instance for ClassifyStoreName.
260
261
  :type request: :class:`tencentcloud.ocr.v20181119.models.ClassifyStoreNameRequest`
@@ -277,7 +278,9 @@ class OcrClient(AbstractClient):
277
278
 
278
279
 
279
280
  def CreateAIFormTask(self, request):
280
- """本接口可创建智能表单录入任务,支持多个识别图片和PDF的URL上传,返回含有识别内容的操作页面URL。
281
+ """智慧表单产品已下线,需要下线相关API
282
+
283
+ 本接口可创建智能表单录入任务,支持多个识别图片和PDF的URL上传,返回含有识别内容的操作页面URL。
281
284
 
282
285
  智能表单录入产品提供高准确率的表单识别技术和人工核对工具,支持自定义字段,将识别结果自动填入到自定义条目中,并提供人工操作工具,完成整个表单识别过程。适用性强,可对票据、合同、货单等文件的识别,适用于金融、货代、保险、档案等领域。本产品免费公测中,您可以点击demo(超链接:https://ocr.smartform.cloud.tencent.com/)试用,如需购买请与商务团队联系。
283
286
 
@@ -866,7 +869,9 @@ class OcrClient(AbstractClient):
866
869
 
867
870
 
868
871
  def GetTaskState(self, request):
869
- """支持查询智能表单录入任务的状态。本产品免费公测中,您可以点击demo(超链接:https://ocr.smartform.cloud.tencent.com/)试用,如需购买请与商务团队联系。
872
+ """智慧表单产品已下线,需要下线相关API
873
+
874
+ 支持查询智能表单录入任务的状态。本产品免费公测中,您可以点击demo(超链接:https://ocr.smartform.cloud.tencent.com/)试用,如需购买请与商务团队联系。
870
875
 
871
876
  :param request: Request instance for GetTaskState.
872
877
  :type request: :class:`tencentcloud.ocr.v20181119.models.GetTaskStateRequest`
@@ -1946,6 +1951,7 @@ class OcrClient(AbstractClient):
1946
1951
 
1947
1952
  def RecognizeStoreName(self, request):
1948
1953
  """本接口用于识别门头照文字识别结果以及对应分类标签信息
1954
+ 默认接口请求频率限制:1次/秒
1949
1955
 
1950
1956
  :param request: Request instance for RecognizeStoreName.
1951
1957
  :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeStoreNameRequest`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ocr
3
- Version: 3.0.1216
3
+ Version: 3.0.1226
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1226
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1216