tencentcloud-sdk-python-ai3d 3.0.1460__tar.gz → 3.0.1462__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-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/setup.py +1 -1
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/ai3d/v20250513/ai3d_client.py +48 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/ai3d/v20250513/models.py +288 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud_sdk_python_ai3d.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ai3d-3.0.1462/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ai3d-3.0.1460/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/README.rst +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/ai3d/__init__.py +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/ai3d/v20250513/__init__.py +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud/ai3d/v20250513/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud_sdk_python_ai3d.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud_sdk_python_ai3d.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ai3d-3.0.1460 → tencentcloud-sdk-python-ai3d-3.0.1462}/tencentcloud_sdk_python_ai3d.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ai3d',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1462,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ai3d SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -74,6 +74,30 @@ class Ai3dClient(AbstractClient):
|
|
|
74
74
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
75
75
|
|
|
76
76
|
|
|
77
|
+
def QueryHunyuanTo3DRapidJob(self, request):
|
|
78
|
+
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
|
79
|
+
默认提供3个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
80
|
+
|
|
81
|
+
:param request: Request instance for QueryHunyuanTo3DRapidJob.
|
|
82
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DRapidJobRequest`
|
|
83
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DRapidJobResponse`
|
|
84
|
+
|
|
85
|
+
"""
|
|
86
|
+
try:
|
|
87
|
+
params = request._serialize()
|
|
88
|
+
headers = request.headers
|
|
89
|
+
body = self.call("QueryHunyuanTo3DRapidJob", params, headers=headers)
|
|
90
|
+
response = json.loads(body)
|
|
91
|
+
model = models.QueryHunyuanTo3DRapidJobResponse()
|
|
92
|
+
model._deserialize(response["Response"])
|
|
93
|
+
return model
|
|
94
|
+
except Exception as e:
|
|
95
|
+
if isinstance(e, TencentCloudSDKException):
|
|
96
|
+
raise
|
|
97
|
+
else:
|
|
98
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
99
|
+
|
|
100
|
+
|
|
77
101
|
def SubmitHunyuanTo3DJob(self, request):
|
|
78
102
|
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
|
79
103
|
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
@@ -115,6 +139,30 @@ class Ai3dClient(AbstractClient):
|
|
|
115
139
|
model = models.SubmitHunyuanTo3DProJobResponse()
|
|
116
140
|
model._deserialize(response["Response"])
|
|
117
141
|
return model
|
|
142
|
+
except Exception as e:
|
|
143
|
+
if isinstance(e, TencentCloudSDKException):
|
|
144
|
+
raise
|
|
145
|
+
else:
|
|
146
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def SubmitHunyuanTo3DRapidJob(self, request):
|
|
150
|
+
r"""混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
|
|
151
|
+
默认提供3个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
152
|
+
|
|
153
|
+
:param request: Request instance for SubmitHunyuanTo3DRapidJob.
|
|
154
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DRapidJobRequest`
|
|
155
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DRapidJobResponse`
|
|
156
|
+
|
|
157
|
+
"""
|
|
158
|
+
try:
|
|
159
|
+
params = request._serialize()
|
|
160
|
+
headers = request.headers
|
|
161
|
+
body = self.call("SubmitHunyuanTo3DRapidJob", params, headers=headers)
|
|
162
|
+
response = json.loads(body)
|
|
163
|
+
model = models.SubmitHunyuanTo3DRapidJobResponse()
|
|
164
|
+
model._deserialize(response["Response"])
|
|
165
|
+
return model
|
|
118
166
|
except Exception as e:
|
|
119
167
|
if isinstance(e, TencentCloudSDKException):
|
|
120
168
|
raise
|
|
@@ -342,6 +342,135 @@ class QueryHunyuanTo3DProJobResponse(AbstractModel):
|
|
|
342
342
|
self._RequestId = params.get("RequestId")
|
|
343
343
|
|
|
344
344
|
|
|
345
|
+
class QueryHunyuanTo3DRapidJobRequest(AbstractModel):
|
|
346
|
+
r"""QueryHunyuanTo3DRapidJob请求参数结构体
|
|
347
|
+
|
|
348
|
+
"""
|
|
349
|
+
|
|
350
|
+
def __init__(self):
|
|
351
|
+
r"""
|
|
352
|
+
:param _JobId: 任务ID。
|
|
353
|
+
:type JobId: str
|
|
354
|
+
"""
|
|
355
|
+
self._JobId = None
|
|
356
|
+
|
|
357
|
+
@property
|
|
358
|
+
def JobId(self):
|
|
359
|
+
r"""任务ID。
|
|
360
|
+
:rtype: str
|
|
361
|
+
"""
|
|
362
|
+
return self._JobId
|
|
363
|
+
|
|
364
|
+
@JobId.setter
|
|
365
|
+
def JobId(self, JobId):
|
|
366
|
+
self._JobId = JobId
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
def _deserialize(self, params):
|
|
370
|
+
self._JobId = params.get("JobId")
|
|
371
|
+
memeber_set = set(params.keys())
|
|
372
|
+
for name, value in vars(self).items():
|
|
373
|
+
property_name = name[1:]
|
|
374
|
+
if property_name in memeber_set:
|
|
375
|
+
memeber_set.remove(property_name)
|
|
376
|
+
if len(memeber_set) > 0:
|
|
377
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class QueryHunyuanTo3DRapidJobResponse(AbstractModel):
|
|
382
|
+
r"""QueryHunyuanTo3DRapidJob返回参数结构体
|
|
383
|
+
|
|
384
|
+
"""
|
|
385
|
+
|
|
386
|
+
def __init__(self):
|
|
387
|
+
r"""
|
|
388
|
+
:param _Status: 任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
|
|
389
|
+
:type Status: str
|
|
390
|
+
:param _ErrorCode: 错误码
|
|
391
|
+
:type ErrorCode: str
|
|
392
|
+
:param _ErrorMessage: 错误信息
|
|
393
|
+
:type ErrorMessage: str
|
|
394
|
+
:param _ResultFile3Ds: 生成的3D文件数组。
|
|
395
|
+
:type ResultFile3Ds: list of File3D
|
|
396
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
397
|
+
:type RequestId: str
|
|
398
|
+
"""
|
|
399
|
+
self._Status = None
|
|
400
|
+
self._ErrorCode = None
|
|
401
|
+
self._ErrorMessage = None
|
|
402
|
+
self._ResultFile3Ds = None
|
|
403
|
+
self._RequestId = None
|
|
404
|
+
|
|
405
|
+
@property
|
|
406
|
+
def Status(self):
|
|
407
|
+
r"""任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
|
|
408
|
+
:rtype: str
|
|
409
|
+
"""
|
|
410
|
+
return self._Status
|
|
411
|
+
|
|
412
|
+
@Status.setter
|
|
413
|
+
def Status(self, Status):
|
|
414
|
+
self._Status = Status
|
|
415
|
+
|
|
416
|
+
@property
|
|
417
|
+
def ErrorCode(self):
|
|
418
|
+
r"""错误码
|
|
419
|
+
:rtype: str
|
|
420
|
+
"""
|
|
421
|
+
return self._ErrorCode
|
|
422
|
+
|
|
423
|
+
@ErrorCode.setter
|
|
424
|
+
def ErrorCode(self, ErrorCode):
|
|
425
|
+
self._ErrorCode = ErrorCode
|
|
426
|
+
|
|
427
|
+
@property
|
|
428
|
+
def ErrorMessage(self):
|
|
429
|
+
r"""错误信息
|
|
430
|
+
:rtype: str
|
|
431
|
+
"""
|
|
432
|
+
return self._ErrorMessage
|
|
433
|
+
|
|
434
|
+
@ErrorMessage.setter
|
|
435
|
+
def ErrorMessage(self, ErrorMessage):
|
|
436
|
+
self._ErrorMessage = ErrorMessage
|
|
437
|
+
|
|
438
|
+
@property
|
|
439
|
+
def ResultFile3Ds(self):
|
|
440
|
+
r"""生成的3D文件数组。
|
|
441
|
+
:rtype: list of File3D
|
|
442
|
+
"""
|
|
443
|
+
return self._ResultFile3Ds
|
|
444
|
+
|
|
445
|
+
@ResultFile3Ds.setter
|
|
446
|
+
def ResultFile3Ds(self, ResultFile3Ds):
|
|
447
|
+
self._ResultFile3Ds = ResultFile3Ds
|
|
448
|
+
|
|
449
|
+
@property
|
|
450
|
+
def RequestId(self):
|
|
451
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
452
|
+
:rtype: str
|
|
453
|
+
"""
|
|
454
|
+
return self._RequestId
|
|
455
|
+
|
|
456
|
+
@RequestId.setter
|
|
457
|
+
def RequestId(self, RequestId):
|
|
458
|
+
self._RequestId = RequestId
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
def _deserialize(self, params):
|
|
462
|
+
self._Status = params.get("Status")
|
|
463
|
+
self._ErrorCode = params.get("ErrorCode")
|
|
464
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
|
465
|
+
if params.get("ResultFile3Ds") is not None:
|
|
466
|
+
self._ResultFile3Ds = []
|
|
467
|
+
for item in params.get("ResultFile3Ds"):
|
|
468
|
+
obj = File3D()
|
|
469
|
+
obj._deserialize(item)
|
|
470
|
+
self._ResultFile3Ds.append(obj)
|
|
471
|
+
self._RequestId = params.get("RequestId")
|
|
472
|
+
|
|
473
|
+
|
|
345
474
|
class SubmitHunyuanTo3DJobRequest(AbstractModel):
|
|
346
475
|
r"""SubmitHunyuanTo3DJob请求参数结构体
|
|
347
476
|
|
|
@@ -753,6 +882,165 @@ class SubmitHunyuanTo3DProJobResponse(AbstractModel):
|
|
|
753
882
|
self._RequestId = params.get("RequestId")
|
|
754
883
|
|
|
755
884
|
|
|
885
|
+
class SubmitHunyuanTo3DRapidJobRequest(AbstractModel):
|
|
886
|
+
r"""SubmitHunyuanTo3DRapidJob请求参数结构体
|
|
887
|
+
|
|
888
|
+
"""
|
|
889
|
+
|
|
890
|
+
def __init__(self):
|
|
891
|
+
r"""
|
|
892
|
+
:param _Prompt: 文生3D,3D内容的描述,中文正向提示词。
|
|
893
|
+
最多支持200个 utf-8 字符。
|
|
894
|
+
文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
|
|
895
|
+
:type Prompt: str
|
|
896
|
+
:param _ImageBase64: 输入图 Base64 数据。
|
|
897
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
|
898
|
+
格式:jpg,png,jpeg,webp。
|
|
899
|
+
ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
900
|
+
:type ImageBase64: str
|
|
901
|
+
:param _ImageUrl: 输入图Url。
|
|
902
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
|
903
|
+
格式:jpg,png,jpeg,webp。
|
|
904
|
+
ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
905
|
+
:type ImageUrl: str
|
|
906
|
+
:param _ResultFormat: 生成模型的格式,仅限制生成一种格式。
|
|
907
|
+
生成模型文件组默认返回obj格式。
|
|
908
|
+
可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
|
|
909
|
+
:type ResultFormat: str
|
|
910
|
+
:param _EnablePBR: 是否开启 PBR材质生成,默认 false。
|
|
911
|
+
:type EnablePBR: bool
|
|
912
|
+
"""
|
|
913
|
+
self._Prompt = None
|
|
914
|
+
self._ImageBase64 = None
|
|
915
|
+
self._ImageUrl = None
|
|
916
|
+
self._ResultFormat = None
|
|
917
|
+
self._EnablePBR = None
|
|
918
|
+
|
|
919
|
+
@property
|
|
920
|
+
def Prompt(self):
|
|
921
|
+
r"""文生3D,3D内容的描述,中文正向提示词。
|
|
922
|
+
最多支持200个 utf-8 字符。
|
|
923
|
+
文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
|
|
924
|
+
:rtype: str
|
|
925
|
+
"""
|
|
926
|
+
return self._Prompt
|
|
927
|
+
|
|
928
|
+
@Prompt.setter
|
|
929
|
+
def Prompt(self, Prompt):
|
|
930
|
+
self._Prompt = Prompt
|
|
931
|
+
|
|
932
|
+
@property
|
|
933
|
+
def ImageBase64(self):
|
|
934
|
+
r"""输入图 Base64 数据。
|
|
935
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
|
936
|
+
格式:jpg,png,jpeg,webp。
|
|
937
|
+
ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
938
|
+
:rtype: str
|
|
939
|
+
"""
|
|
940
|
+
return self._ImageBase64
|
|
941
|
+
|
|
942
|
+
@ImageBase64.setter
|
|
943
|
+
def ImageBase64(self, ImageBase64):
|
|
944
|
+
self._ImageBase64 = ImageBase64
|
|
945
|
+
|
|
946
|
+
@property
|
|
947
|
+
def ImageUrl(self):
|
|
948
|
+
r"""输入图Url。
|
|
949
|
+
大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
|
|
950
|
+
格式:jpg,png,jpeg,webp。
|
|
951
|
+
ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
952
|
+
:rtype: str
|
|
953
|
+
"""
|
|
954
|
+
return self._ImageUrl
|
|
955
|
+
|
|
956
|
+
@ImageUrl.setter
|
|
957
|
+
def ImageUrl(self, ImageUrl):
|
|
958
|
+
self._ImageUrl = ImageUrl
|
|
959
|
+
|
|
960
|
+
@property
|
|
961
|
+
def ResultFormat(self):
|
|
962
|
+
r"""生成模型的格式,仅限制生成一种格式。
|
|
963
|
+
生成模型文件组默认返回obj格式。
|
|
964
|
+
可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
|
|
965
|
+
:rtype: str
|
|
966
|
+
"""
|
|
967
|
+
return self._ResultFormat
|
|
968
|
+
|
|
969
|
+
@ResultFormat.setter
|
|
970
|
+
def ResultFormat(self, ResultFormat):
|
|
971
|
+
self._ResultFormat = ResultFormat
|
|
972
|
+
|
|
973
|
+
@property
|
|
974
|
+
def EnablePBR(self):
|
|
975
|
+
r"""是否开启 PBR材质生成,默认 false。
|
|
976
|
+
:rtype: bool
|
|
977
|
+
"""
|
|
978
|
+
return self._EnablePBR
|
|
979
|
+
|
|
980
|
+
@EnablePBR.setter
|
|
981
|
+
def EnablePBR(self, EnablePBR):
|
|
982
|
+
self._EnablePBR = EnablePBR
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
def _deserialize(self, params):
|
|
986
|
+
self._Prompt = params.get("Prompt")
|
|
987
|
+
self._ImageBase64 = params.get("ImageBase64")
|
|
988
|
+
self._ImageUrl = params.get("ImageUrl")
|
|
989
|
+
self._ResultFormat = params.get("ResultFormat")
|
|
990
|
+
self._EnablePBR = params.get("EnablePBR")
|
|
991
|
+
memeber_set = set(params.keys())
|
|
992
|
+
for name, value in vars(self).items():
|
|
993
|
+
property_name = name[1:]
|
|
994
|
+
if property_name in memeber_set:
|
|
995
|
+
memeber_set.remove(property_name)
|
|
996
|
+
if len(memeber_set) > 0:
|
|
997
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
class SubmitHunyuanTo3DRapidJobResponse(AbstractModel):
|
|
1002
|
+
r"""SubmitHunyuanTo3DRapidJob返回参数结构体
|
|
1003
|
+
|
|
1004
|
+
"""
|
|
1005
|
+
|
|
1006
|
+
def __init__(self):
|
|
1007
|
+
r"""
|
|
1008
|
+
:param _JobId: 任务ID(有效期24小时)
|
|
1009
|
+
:type JobId: str
|
|
1010
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1011
|
+
:type RequestId: str
|
|
1012
|
+
"""
|
|
1013
|
+
self._JobId = None
|
|
1014
|
+
self._RequestId = None
|
|
1015
|
+
|
|
1016
|
+
@property
|
|
1017
|
+
def JobId(self):
|
|
1018
|
+
r"""任务ID(有效期24小时)
|
|
1019
|
+
:rtype: str
|
|
1020
|
+
"""
|
|
1021
|
+
return self._JobId
|
|
1022
|
+
|
|
1023
|
+
@JobId.setter
|
|
1024
|
+
def JobId(self, JobId):
|
|
1025
|
+
self._JobId = JobId
|
|
1026
|
+
|
|
1027
|
+
@property
|
|
1028
|
+
def RequestId(self):
|
|
1029
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1030
|
+
:rtype: str
|
|
1031
|
+
"""
|
|
1032
|
+
return self._RequestId
|
|
1033
|
+
|
|
1034
|
+
@RequestId.setter
|
|
1035
|
+
def RequestId(self, RequestId):
|
|
1036
|
+
self._RequestId = RequestId
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
def _deserialize(self, params):
|
|
1040
|
+
self._JobId = params.get("JobId")
|
|
1041
|
+
self._RequestId = params.get("RequestId")
|
|
1042
|
+
|
|
1043
|
+
|
|
756
1044
|
class ViewImage(AbstractModel):
|
|
757
1045
|
r"""多视角图片
|
|
758
1046
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1462
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1460
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|