tencentcloud-sdk-python-mps 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_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/setup.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/v20190612/errorcodes.py +9 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/v20190612/models.py +1897 -2691
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/v20190612/mps_client.py +92 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/v20190612/mps_client_async.py +72 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mps-3.1.60/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mps-3.1.59/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/README.rst +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.59 → tencentcloud_sdk_python_mps-3.1.60}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mps
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.60
|
|
4
4
|
Summary: Tencent Cloud Mps 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-mps',
|
|
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 Mps SDK for Python',
|
|
@@ -386,6 +386,9 @@ INVALIDPARAMETERVALUE_SOURCETEXT = 'InvalidParameterValue.SourceText'
|
|
|
386
386
|
# 源文件错误。
|
|
387
387
|
INVALIDPARAMETERVALUE_SRCFILE = 'InvalidParameterValue.SrcFile'
|
|
388
388
|
|
|
389
|
+
# 字幕压制id无效
|
|
390
|
+
INVALIDPARAMETERVALUE_SUBTITLEEMBEDID = 'InvalidParameterValue.SubtitleEmbedId'
|
|
391
|
+
|
|
389
392
|
# 擦除模板字幕擦除方式错误
|
|
390
393
|
INVALIDPARAMETERVALUE_SUBTITLEERASEMETHOD = 'InvalidParameterValue.SubtitleEraseMethod'
|
|
391
394
|
|
|
@@ -449,6 +452,12 @@ INVALIDPARAMETERVALUE_TYPE = 'InvalidParameterValue.Type'
|
|
|
449
452
|
# 未知的检测类别。
|
|
450
453
|
INVALIDPARAMETERVALUE_UNKNOWNCATEGORY = 'InvalidParameterValue.UnknownCategory'
|
|
451
454
|
|
|
455
|
+
# UseOriginalPos无效
|
|
456
|
+
INVALIDPARAMETERVALUE_USEORIGINALPOS = 'InvalidParameterValue.UseOriginalPos'
|
|
457
|
+
|
|
458
|
+
# UseOriginalSize无效
|
|
459
|
+
INVALIDPARAMETERVALUE_USEORIGINALSIZE = 'InvalidParameterValue.UseOriginalSize'
|
|
460
|
+
|
|
452
461
|
# 参数值错误:人脸用户自定义库过滤标签非法。
|
|
453
462
|
INVALIDPARAMETERVALUE_USERDEFINELIBRARYLABELSET = 'InvalidParameterValue.UserDefineLibraryLabelSet'
|
|
454
463
|
|