tencentcloud-sdk-python-mps 3.1.92__tar.gz → 3.1.93__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.92 → tencentcloud_sdk_python_mps-3.1.93}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/setup.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/v20190612/models.py +15 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mps-3.1.93/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mps-3.1.92/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/README.rst +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.92 → tencentcloud_sdk_python_mps-3.1.93}/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.93
|
|
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.93
|
|
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.93,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Mps SDK for Python',
|
|
@@ -12661,10 +12661,13 @@ class AigcImageExtraParam(AbstractModel):
|
|
|
12661
12661
|
:type Resolution: str
|
|
12662
12662
|
:param _LogoAdd: <p>是否添加图标水印。默认不加。1-添加,0-不添加。</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
|
|
12663
12663
|
:type LogoAdd: int
|
|
12664
|
+
:param _OutputFormat: <p>指定图片的输出格式,支持jpeg, png。</p>
|
|
12665
|
+
:type OutputFormat: str
|
|
12664
12666
|
"""
|
|
12665
12667
|
self._AspectRatio = None
|
|
12666
12668
|
self._Resolution = None
|
|
12667
12669
|
self._LogoAdd = None
|
|
12670
|
+
self._OutputFormat = None
|
|
12668
12671
|
|
|
12669
12672
|
@property
|
|
12670
12673
|
def AspectRatio(self):
|
|
@@ -12699,11 +12702,23 @@ class AigcImageExtraParam(AbstractModel):
|
|
|
12699
12702
|
def LogoAdd(self, LogoAdd):
|
|
12700
12703
|
self._LogoAdd = LogoAdd
|
|
12701
12704
|
|
|
12705
|
+
@property
|
|
12706
|
+
def OutputFormat(self):
|
|
12707
|
+
r"""<p>指定图片的输出格式,支持jpeg, png。</p>
|
|
12708
|
+
:rtype: str
|
|
12709
|
+
"""
|
|
12710
|
+
return self._OutputFormat
|
|
12711
|
+
|
|
12712
|
+
@OutputFormat.setter
|
|
12713
|
+
def OutputFormat(self, OutputFormat):
|
|
12714
|
+
self._OutputFormat = OutputFormat
|
|
12715
|
+
|
|
12702
12716
|
|
|
12703
12717
|
def _deserialize(self, params):
|
|
12704
12718
|
self._AspectRatio = params.get("AspectRatio")
|
|
12705
12719
|
self._Resolution = params.get("Resolution")
|
|
12706
12720
|
self._LogoAdd = params.get("LogoAdd")
|
|
12721
|
+
self._OutputFormat = params.get("OutputFormat")
|
|
12707
12722
|
memeber_set = set(params.keys())
|
|
12708
12723
|
for name, value in vars(self).items():
|
|
12709
12724
|
property_name = name[1:]
|
|
@@ -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.93
|
|
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.93
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.93
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.92
|
|
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
|