tencentcloud-sdk-python 3.0.1430__py2.py3-none-any.whl → 3.0.1431__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 might be problematic. Click here for more details.

Files changed (28) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cdb/v20170320/cdb_client.py +6 -6
  3. tencentcloud/cdb/v20170320/models.py +132 -108
  4. tencentcloud/cdn/v20180606/cdn_client.py +12 -4
  5. tencentcloud/dsgc/v20190723/models.py +2 -2
  6. tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
  7. tencentcloud/gs/v20191118/models.py +57 -4
  8. tencentcloud/lcic/v20220817/lcic_client.py +3 -0
  9. tencentcloud/lcic/v20220817/models.py +10 -10
  10. tencentcloud/live/v20180801/models.py +70 -0
  11. tencentcloud/lke/v20231130/models.py +2 -2
  12. tencentcloud/oceanus/v20190422/models.py +36 -2
  13. tencentcloud/ocr/v20181119/models.py +147 -0
  14. tencentcloud/ocr/v20181119/ocr_client.py +25 -0
  15. tencentcloud/postgres/v20170312/models.py +284 -258
  16. tencentcloud/postgres/v20170312/postgres_client.py +9 -9
  17. tencentcloud/ssl/v20191205/models.py +32 -2
  18. tencentcloud/tsf/v20180326/errorcodes.py +1 -1
  19. tencentcloud/wsa/__init__.py +0 -0
  20. tencentcloud/wsa/v20250508/__init__.py +0 -0
  21. tencentcloud/wsa/v20250508/errorcodes.py +27 -0
  22. tencentcloud/wsa/v20250508/models.py +187 -0
  23. tencentcloud/wsa/v20250508/wsa_client.py +49 -0
  24. {tencentcloud_sdk_python-3.0.1430.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/METADATA +1 -1
  25. {tencentcloud_sdk_python-3.0.1430.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/RECORD +28 -23
  26. {tencentcloud_sdk_python-3.0.1430.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/LICENSE +0 -0
  27. {tencentcloud_sdk_python-3.0.1430.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/WHEEL +0 -0
  28. {tencentcloud_sdk_python-3.0.1430.dist-info → tencentcloud_sdk_python-3.0.1431.dist-info}/top_level.txt +0 -0
@@ -2103,6 +2103,31 @@ class OcrClient(AbstractClient):
2103
2103
  raise TencentCloudSDKException(type(e).__name__, str(e))
2104
2104
 
2105
2105
 
2106
+ def RecognizeTableMultiOCR(self, request):
2107
+ """基于MLLM(多模态大语言模型)的表格识别能力,针对复杂表格的算法识别效果更佳,适配财务报表识别场景,并可输出直接对接业务系统的Excel数据。
2108
+
2109
+ 默认接口请求频率限制:1次/秒。
2110
+
2111
+ :param request: Request instance for RecognizeTableMultiOCR.
2112
+ :type request: :class:`tencentcloud.ocr.v20181119.models.RecognizeTableMultiOCRRequest`
2113
+ :rtype: :class:`tencentcloud.ocr.v20181119.models.RecognizeTableMultiOCRResponse`
2114
+
2115
+ """
2116
+ try:
2117
+ params = request._serialize()
2118
+ headers = request.headers
2119
+ body = self.call("RecognizeTableMultiOCR", params, headers=headers)
2120
+ response = json.loads(body)
2121
+ model = models.RecognizeTableMultiOCRResponse()
2122
+ model._deserialize(response["Response"])
2123
+ return model
2124
+ except Exception as e:
2125
+ if isinstance(e, TencentCloudSDKException):
2126
+ raise
2127
+ else:
2128
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2129
+
2130
+
2106
2131
  def RecognizeTableOCR(self, request):
2107
2132
  """本接口支持中英文图片/ PDF内常规表格、无线表格、多表格的检测和识别,支持日文有线表格识别,返回每个单元格的文字内容,支持旋转的表格图片识别,且支持将识别结果保存为 Excel 格式。
2108
2133