tencentcloud-sdk-python-trtc 3.1.130__tar.gz → 3.1.134__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.130 → tencentcloud_sdk_python_trtc-3.1.134}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/setup.py +1 -1
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/v20190722/errorcodes.py +6 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_trtc-3.1.134/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_trtc-3.1.130/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/README.rst +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/setup.cfg +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/v20190722/models.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud/trtc/v20190722/trtc_client_async.py +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_trtc-3.1.130 → tencentcloud_sdk_python_trtc-3.1.134}/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.134
|
|
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.134
|
|
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.134,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Trtc SDK for Python',
|
|
@@ -188,6 +188,9 @@ INVALIDPARAMETER_MAINVIDEORIGHTALIGN = 'InvalidParameter.MainVideoRightAlign'
|
|
|
188
188
|
# 大画面流类型错误。
|
|
189
189
|
INVALIDPARAMETER_MAINVIDEOSTREAMTYPE = 'InvalidParameter.MainVideoStreamType'
|
|
190
190
|
|
|
191
|
+
# 无效的Model参数
|
|
192
|
+
INVALIDPARAMETER_MODEL = 'InvalidParameter.Model'
|
|
193
|
+
|
|
191
194
|
# 参数超出范围。
|
|
192
195
|
INVALIDPARAMETER_OUTOFRANGE = 'InvalidParameter.OutOfRange'
|
|
193
196
|
|
|
@@ -272,6 +275,9 @@ INVALIDPARAMETER_STREAMURL = 'InvalidParameter.StreamUrl'
|
|
|
272
275
|
# TaskId 参数错误。
|
|
273
276
|
INVALIDPARAMETER_TASKID = 'InvalidParameter.TaskId'
|
|
274
277
|
|
|
278
|
+
# 无效文本
|
|
279
|
+
INVALIDPARAMETER_TEXT = 'InvalidParameter.Text'
|
|
280
|
+
|
|
275
281
|
# 无效的文本长度
|
|
276
282
|
INVALIDPARAMETER_TEXTLENGTH = 'InvalidParameter.TextLength'
|
|
277
283
|
|
|
@@ -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.134
|
|
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.134
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.134
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.130
|
|
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
|