tencentcloud-sdk-python-trtc 3.1.48__tar.gz → 3.1.53__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_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/setup.py +1 -1
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/v20190722/models.py +848 -74
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/v20190722/trtc_client.py +70 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/v20190722/trtc_client_async.py +55 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_trtc-3.1.53/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_trtc-3.1.48/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/README.rst +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/setup.cfg +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_trtc-3.1.48 → tencentcloud_sdk_python_trtc-3.1.53}/tencentcloud_sdk_python_trtc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-trtc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.53
|
|
4
4
|
Summary: Tencent Cloud Trtc 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.53
|
|
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-trtc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.53,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Trtc SDK for Python',
|
|
@@ -35,6 +35,9 @@ FAILEDOPERATION_CRUNSUPPORTMETHOD = 'FailedOperation.CRUnsupportMethod'
|
|
|
35
35
|
# 云端切片方法不支持。
|
|
36
36
|
FAILEDOPERATION_CSUNSUPPORTMETHOD = 'FailedOperation.CSUnsupportMethod'
|
|
37
37
|
|
|
38
|
+
# 云端转录方法不支持。
|
|
39
|
+
FAILEDOPERATION_CTUNSUPPORTMETHOD = 'FailedOperation.CTUnsupportMethod'
|
|
40
|
+
|
|
38
41
|
# Cos上传出现异常。
|
|
39
42
|
FAILEDOPERATION_COSOPERATIONFAILED = 'FailedOperation.CosOperationFailed'
|
|
40
43
|
|
|
@@ -104,6 +107,9 @@ INTERNALERROR_CRINTERNALERROR = 'InternalError.CRInternalError'
|
|
|
104
107
|
# 云端切片内部服务错误
|
|
105
108
|
INTERNALERROR_CSINTERNALERROR = 'InternalError.CSInternalError'
|
|
106
109
|
|
|
110
|
+
# 云端转录内部服务错误。
|
|
111
|
+
INTERNALERROR_CTINTERNALERROR = 'InternalError.CTInternalError'
|
|
112
|
+
|
|
107
113
|
# 数据库查询异常。
|
|
108
114
|
INTERNALERROR_DBERROR = 'InternalError.DBError'
|
|
109
115
|
|
|
@@ -302,12 +308,18 @@ MISSINGPARAMETER = 'MissingParameter'
|
|
|
302
308
|
# 无效的APIKey
|
|
303
309
|
MISSINGPARAMETER_APIKEY = 'MissingParameter.APIKey'
|
|
304
310
|
|
|
311
|
+
# 缺少ASR模型参数Lang。
|
|
312
|
+
MISSINGPARAMETER_ASRLANG = 'MissingParameter.ASRLang'
|
|
313
|
+
|
|
305
314
|
# 缺少AccessKey参数。
|
|
306
315
|
MISSINGPARAMETER_ACCESSKEY = 'MissingParameter.AccessKey'
|
|
307
316
|
|
|
308
317
|
# 缺少AppId参数。
|
|
309
318
|
MISSINGPARAMETER_APPID = 'MissingParameter.AppId'
|
|
310
319
|
|
|
320
|
+
# 缺少AsrParam参数。
|
|
321
|
+
MISSINGPARAMETER_ASRPARAM = 'MissingParameter.AsrParam'
|
|
322
|
+
|
|
311
323
|
# EncodeParams中缺少音频输出参数。
|
|
312
324
|
MISSINGPARAMETER_AUDIOENCODEPARAMS = 'MissingParameter.AudioEncodeParams'
|
|
313
325
|
|
|
@@ -392,6 +404,9 @@ MISSINGPARAMETER_STREAMTYPE = 'MissingParameter.StreamType'
|
|
|
392
404
|
# 缺少TaskId参数。
|
|
393
405
|
MISSINGPARAMETER_TASKID = 'MissingParameter.TaskId'
|
|
394
406
|
|
|
407
|
+
# 缺少转录参数TranscriptionParam。
|
|
408
|
+
MISSINGPARAMETER_TRANSCRIPTIONPARAM = 'MissingParameter.TranscriptionParam'
|
|
409
|
+
|
|
395
410
|
# 缺少UserId参数。
|
|
396
411
|
MISSINGPARAMETER_USERID = 'MissingParameter.UserId'
|
|
397
412
|
|