tencentcloud-sdk-python-mps 3.0.1406__tar.gz → 3.0.1411__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/setup.py +1 -1
  3. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/mps/v20190612/models.py +217 -18
  5. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-mps-3.0.1411/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-mps-3.0.1406/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/README.rst +0 -0
  9. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/mps/__init__.py +0 -0
  11. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/mps/v20190612/__init__.py +0 -0
  12. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud/mps/v20190612/mps_client.py +0 -0
  14. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-mps-3.0.1406 → tencentcloud-sdk-python-mps-3.0.1411}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1406
3
+ Version: 3.0.1411
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
@@ -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.0.1406"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1411"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Mps SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1406'
17
+ __version__ = '3.0.1411'
@@ -40971,12 +40971,16 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
40971
40971
  :param _Paragraphs: 分段结果。
40972
40972
  注意:此字段可能返回 null,表示取不到有效值。
40973
40973
  :type Paragraphs: list of AiParagraphInfo
40974
+ :param _MindMapUrl: 摘要思维导图地址
40975
+ 注意:此字段可能返回 null,表示取不到有效值。
40976
+ :type MindMapUrl: str
40974
40977
  """
40975
40978
  self._Description = None
40976
40979
  self._Confidence = None
40977
40980
  self._Title = None
40978
40981
  self._Keywords = None
40979
40982
  self._Paragraphs = None
40983
+ self._MindMapUrl = None
40980
40984
 
40981
40985
  @property
40982
40986
  def Description(self):
@@ -41034,6 +41038,18 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
41034
41038
  def Paragraphs(self, Paragraphs):
41035
41039
  self._Paragraphs = Paragraphs
41036
41040
 
41041
+ @property
41042
+ def MindMapUrl(self):
41043
+ """摘要思维导图地址
41044
+ 注意:此字段可能返回 null,表示取不到有效值。
41045
+ :rtype: str
41046
+ """
41047
+ return self._MindMapUrl
41048
+
41049
+ @MindMapUrl.setter
41050
+ def MindMapUrl(self, MindMapUrl):
41051
+ self._MindMapUrl = MindMapUrl
41052
+
41037
41053
 
41038
41054
  def _deserialize(self, params):
41039
41055
  self._Description = params.get("Description")
@@ -41046,6 +41062,7 @@ class MediaAiAnalysisDescriptionItem(AbstractModel):
41046
41062
  obj = AiParagraphInfo()
41047
41063
  obj._deserialize(item)
41048
41064
  self._Paragraphs.append(obj)
41065
+ self._MindMapUrl = params.get("MindMapUrl")
41049
41066
  memeber_set = set(params.keys())
41050
41067
  for name, value in vars(self).items():
41051
41068
  property_name = name[1:]
@@ -59354,21 +59371,38 @@ class SubtitleTemplate(AbstractModel):
59354
59371
  :param _Path: 要压制到视频中的字幕文件地址。
59355
59372
  注意:此字段可能返回 null,表示取不到有效值。
59356
59373
  :type Path: str
59357
- :param _StreamIndex: 指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
59374
+ :param _StreamIndex: 指定要压制到视频中的字幕轨道,Path 和 StreamIndex 至少指定一个;如果指定了Path,则优先使用Path。
59375
+ Streamindex的取值须与源文件中的字幕轨索引一致。例如,源文件中的字幕轨为stream#0:3,则StreamIndex应为3,否则可能导致任务处理失败。
59376
+
59377
+
59358
59378
  注意:此字段可能返回 null,表示取不到有效值。
59359
59379
  :type StreamIndex: int
59360
- :param _FontType: 字体类型,
59380
+ :param _FontType: 字体类型,支持:
59361
59381
  <li>hei.ttf:黑体</li>
59362
59382
  <li>song.ttf:宋体</li>
59363
- <li>simkai.ttf:楷体</li>
59383
+ <li>kai.ttf(推荐)或 simkai.ttf:楷体</li>
59384
+ <li>msyh.ttf:微软雅黑</li>
59385
+ <li>msyhbd.ttf:微软雅黑加粗</li>
59386
+ <li>hkjgt.ttf:华康金刚体</li>
59387
+ <li>dhttx.ttf:典黑体特细</li>
59388
+ <li>xqgdzt.ttf:喜鹊古字典体</li>
59389
+ <li>qpcyt.ttf:巧拼超圆体</li>
59364
59390
  <li>arial.ttf:仅支持英文</li>
59365
- 默认hei.ttf
59391
+ <li>dinalternate.ttf:DIN Alternate Bold</li>
59392
+ <li>helveticalt.ttf:Helvetica</li>
59393
+ <li>helveticains.ttf:Helvetica Inserat</li>
59394
+ <li>trajanpro.ttf:TrajanPro-Bold</li>
59395
+ <li>korean.ttf:韩语</li>
59396
+ <li>japanese.ttf:日语</li>
59397
+ <li>thai.ttf:泰语</li>
59398
+ 默认:hei.ttf 黑体。
59366
59399
  注意:此字段可能返回 null,表示取不到有效值。
59367
59400
  :type FontType: str
59368
59401
  :param _FontSize: 字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
59402
+ 默认源视频高度的5%。
59369
59403
  注意:此字段可能返回 null,表示取不到有效值。
59370
59404
  :type FontSize: str
59371
- :param _FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
59405
+ :param _FontColor: 字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
59372
59406
  注意:此字段可能返回 null,表示取不到有效值。
59373
59407
  :type FontColor: str
59374
59408
  :param _FontAlpha: 文字透明度,取值范围:(0, 1]
@@ -59377,6 +59411,47 @@ class SubtitleTemplate(AbstractModel):
59377
59411
  默认值:1。
59378
59412
  注意:此字段可能返回 null,表示取不到有效值。
59379
59413
  :type FontAlpha: float
59414
+ :param _YPos: 字幕y轴坐标位置,指定此参数会忽略字幕文件自带坐标;支持像素和百分比格式:
59415
+
59416
+ - 像素:Npx,N范围:[0,4096]。
59417
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕y坐标=10%*源视频高度。
59418
+
59419
+ 默认值:源视频高度*4%。
59420
+ 注意:坐标轴原点在源视频中轴线底部,字幕基准点在字幕中轴线底部,参考下图:
59421
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59422
+
59423
+ 注意:此字段可能返回 null,表示取不到有效值。
59424
+ :type YPos: str
59425
+ :param _BoardY: 字幕背景底板的y轴坐标位置;支持像素和百分比格式:
59426
+
59427
+ - 像素:Npx,N范围:[0,4096]。
59428
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕背景底板y坐标=10%*源视频高度。
59429
+
59430
+ 不传表示不开启字幕背景底板。
59431
+ 注意:坐标轴原点位于源视频的中轴线底部,字幕背景底板的基准点在其中轴线底部,参考下图:
59432
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59433
+
59434
+ 注意:此字段可能返回 null,表示取不到有效值。
59435
+ :type BoardY: str
59436
+ :param _BoardWidth: 底板的宽度,单位为像素,取值范围:[0,4096]。
59437
+ 默认源视频宽像素的90%。
59438
+
59439
+ 注意:此字段可能返回 null,表示取不到有效值。
59440
+ :type BoardWidth: int
59441
+ :param _BoardHeight: 底板的高度。单位为像素,取值范围:[0,4096]。
59442
+ 默认为源视频高像素的15%。
59443
+ 注意:此字段可能返回 null,表示取不到有效值。
59444
+ :type BoardHeight: int
59445
+ :param _BoardColor: 底板颜色。格式:0xRRGGBB,
59446
+ 默认值:0x000000(黑色)。
59447
+ 注意:此字段可能返回 null,表示取不到有效值。
59448
+ :type BoardColor: str
59449
+ :param _BoardAlpha: 字幕背景板透明度,取值范围:[0, 1]
59450
+ <li>0:完全透明</li>
59451
+ <li>1:完全不透明</li>
59452
+ 默认值:0.8。
59453
+ 注意:此字段可能返回 null,表示取不到有效值。
59454
+ :type BoardAlpha: float
59380
59455
  """
59381
59456
  self._Path = None
59382
59457
  self._StreamIndex = None
@@ -59384,6 +59459,12 @@ class SubtitleTemplate(AbstractModel):
59384
59459
  self._FontSize = None
59385
59460
  self._FontColor = None
59386
59461
  self._FontAlpha = None
59462
+ self._YPos = None
59463
+ self._BoardY = None
59464
+ self._BoardWidth = None
59465
+ self._BoardHeight = None
59466
+ self._BoardColor = None
59467
+ self._BoardAlpha = None
59387
59468
 
59388
59469
  @property
59389
59470
  def Path(self):
@@ -59399,7 +59480,10 @@ class SubtitleTemplate(AbstractModel):
59399
59480
 
59400
59481
  @property
59401
59482
  def StreamIndex(self):
59402
- """指定要压制到视频中的字幕轨道,如果有指定Path,则Path 优先级更高。Path 和 StreamIndex 至少指定一个。
59483
+ """指定要压制到视频中的字幕轨道,Path 和 StreamIndex 至少指定一个;如果指定了Path,则优先使用Path。
59484
+ Streamindex的取值须与源文件中的字幕轨索引一致。例如,源文件中的字幕轨为stream#0:3,则StreamIndex应为3,否则可能导致任务处理失败。
59485
+
59486
+
59403
59487
  注意:此字段可能返回 null,表示取不到有效值。
59404
59488
  :rtype: int
59405
59489
  """
@@ -59411,12 +59495,25 @@ class SubtitleTemplate(AbstractModel):
59411
59495
 
59412
59496
  @property
59413
59497
  def FontType(self):
59414
- """字体类型,
59498
+ """字体类型,支持:
59415
59499
  <li>hei.ttf:黑体</li>
59416
59500
  <li>song.ttf:宋体</li>
59417
- <li>simkai.ttf:楷体</li>
59501
+ <li>kai.ttf(推荐)或 simkai.ttf:楷体</li>
59502
+ <li>msyh.ttf:微软雅黑</li>
59503
+ <li>msyhbd.ttf:微软雅黑加粗</li>
59504
+ <li>hkjgt.ttf:华康金刚体</li>
59505
+ <li>dhttx.ttf:典黑体特细</li>
59506
+ <li>xqgdzt.ttf:喜鹊古字典体</li>
59507
+ <li>qpcyt.ttf:巧拼超圆体</li>
59418
59508
  <li>arial.ttf:仅支持英文</li>
59419
- 默认hei.ttf
59509
+ <li>dinalternate.ttf:DIN Alternate Bold</li>
59510
+ <li>helveticalt.ttf:Helvetica</li>
59511
+ <li>helveticains.ttf:Helvetica Inserat</li>
59512
+ <li>trajanpro.ttf:TrajanPro-Bold</li>
59513
+ <li>korean.ttf:韩语</li>
59514
+ <li>japanese.ttf:日语</li>
59515
+ <li>thai.ttf:泰语</li>
59516
+ 默认:hei.ttf 黑体。
59420
59517
  注意:此字段可能返回 null,表示取不到有效值。
59421
59518
  :rtype: str
59422
59519
  """
@@ -59429,6 +59526,7 @@ class SubtitleTemplate(AbstractModel):
59429
59526
  @property
59430
59527
  def FontSize(self):
59431
59528
  """字体大小,格式:Npx,N 为数值,不指定则以字幕文件中为准。
59529
+ 默认源视频高度的5%。
59432
59530
  注意:此字段可能返回 null,表示取不到有效值。
59433
59531
  :rtype: str
59434
59532
  """
@@ -59440,7 +59538,7 @@ class SubtitleTemplate(AbstractModel):
59440
59538
 
59441
59539
  @property
59442
59540
  def FontColor(self):
59443
- """字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)
59541
+ """字体颜色,格式:0xRRGGBB,默认值:0xFFFFFF(白色)。
59444
59542
  注意:此字段可能返回 null,表示取不到有效值。
59445
59543
  :rtype: str
59446
59544
  """
@@ -59465,6 +59563,101 @@ class SubtitleTemplate(AbstractModel):
59465
59563
  def FontAlpha(self, FontAlpha):
59466
59564
  self._FontAlpha = FontAlpha
59467
59565
 
59566
+ @property
59567
+ def YPos(self):
59568
+ """字幕y轴坐标位置,指定此参数会忽略字幕文件自带坐标;支持像素和百分比格式:
59569
+
59570
+ - 像素:Npx,N范围:[0,4096]。
59571
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕y坐标=10%*源视频高度。
59572
+
59573
+ 默认值:源视频高度*4%。
59574
+ 注意:坐标轴原点在源视频中轴线底部,字幕基准点在字幕中轴线底部,参考下图:
59575
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59576
+
59577
+ 注意:此字段可能返回 null,表示取不到有效值。
59578
+ :rtype: str
59579
+ """
59580
+ return self._YPos
59581
+
59582
+ @YPos.setter
59583
+ def YPos(self, YPos):
59584
+ self._YPos = YPos
59585
+
59586
+ @property
59587
+ def BoardY(self):
59588
+ """字幕背景底板的y轴坐标位置;支持像素和百分比格式:
59589
+
59590
+ - 像素:Npx,N范围:[0,4096]。
59591
+ - 百分百:N%,N范围:[0,100];例如10%表示字幕背景底板y坐标=10%*源视频高度。
59592
+
59593
+ 不传表示不开启字幕背景底板。
59594
+ 注意:坐标轴原点位于源视频的中轴线底部,字幕背景底板的基准点在其中轴线底部,参考下图:
59595
+ ![image](https://ie-mps-1258344699.cos.ap-nanjing.tencentcos.cn/common/cloud/mps-demo/102_ai_subtitle/subtitle_style.png)
59596
+
59597
+ 注意:此字段可能返回 null,表示取不到有效值。
59598
+ :rtype: str
59599
+ """
59600
+ return self._BoardY
59601
+
59602
+ @BoardY.setter
59603
+ def BoardY(self, BoardY):
59604
+ self._BoardY = BoardY
59605
+
59606
+ @property
59607
+ def BoardWidth(self):
59608
+ """底板的宽度,单位为像素,取值范围:[0,4096]。
59609
+ 默认源视频宽像素的90%。
59610
+
59611
+ 注意:此字段可能返回 null,表示取不到有效值。
59612
+ :rtype: int
59613
+ """
59614
+ return self._BoardWidth
59615
+
59616
+ @BoardWidth.setter
59617
+ def BoardWidth(self, BoardWidth):
59618
+ self._BoardWidth = BoardWidth
59619
+
59620
+ @property
59621
+ def BoardHeight(self):
59622
+ """底板的高度。单位为像素,取值范围:[0,4096]。
59623
+ 默认为源视频高像素的15%。
59624
+ 注意:此字段可能返回 null,表示取不到有效值。
59625
+ :rtype: int
59626
+ """
59627
+ return self._BoardHeight
59628
+
59629
+ @BoardHeight.setter
59630
+ def BoardHeight(self, BoardHeight):
59631
+ self._BoardHeight = BoardHeight
59632
+
59633
+ @property
59634
+ def BoardColor(self):
59635
+ """底板颜色。格式:0xRRGGBB,
59636
+ 默认值:0x000000(黑色)。
59637
+ 注意:此字段可能返回 null,表示取不到有效值。
59638
+ :rtype: str
59639
+ """
59640
+ return self._BoardColor
59641
+
59642
+ @BoardColor.setter
59643
+ def BoardColor(self, BoardColor):
59644
+ self._BoardColor = BoardColor
59645
+
59646
+ @property
59647
+ def BoardAlpha(self):
59648
+ """字幕背景板透明度,取值范围:[0, 1]
59649
+ <li>0:完全透明</li>
59650
+ <li>1:完全不透明</li>
59651
+ 默认值:0.8。
59652
+ 注意:此字段可能返回 null,表示取不到有效值。
59653
+ :rtype: float
59654
+ """
59655
+ return self._BoardAlpha
59656
+
59657
+ @BoardAlpha.setter
59658
+ def BoardAlpha(self, BoardAlpha):
59659
+ self._BoardAlpha = BoardAlpha
59660
+
59468
59661
 
59469
59662
  def _deserialize(self, params):
59470
59663
  self._Path = params.get("Path")
@@ -59473,6 +59666,12 @@ class SubtitleTemplate(AbstractModel):
59473
59666
  self._FontSize = params.get("FontSize")
59474
59667
  self._FontColor = params.get("FontColor")
59475
59668
  self._FontAlpha = params.get("FontAlpha")
59669
+ self._YPos = params.get("YPos")
59670
+ self._BoardY = params.get("BoardY")
59671
+ self._BoardWidth = params.get("BoardWidth")
59672
+ self._BoardHeight = params.get("BoardHeight")
59673
+ self._BoardColor = params.get("BoardColor")
59674
+ self._BoardAlpha = params.get("BoardAlpha")
59476
59675
  memeber_set = set(params.keys())
59477
59676
  for name, value in vars(self).items():
59478
59677
  property_name = name[1:]
@@ -64494,10 +64693,10 @@ class WatermarkTemplate(AbstractModel):
64494
64693
  :param _UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
64495
64694
  :type UpdateTime: str
64496
64695
  :param _CoordinateOrigin: 原点位置,可选值:
64497
- <li>topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64498
- <li>topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64499
- <li>bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64500
- <li>bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;</li>
64696
+ <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64697
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64698
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64699
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
64501
64700
  :type CoordinateOrigin: str
64502
64701
  """
64503
64702
  self._Definition = None
@@ -64646,10 +64845,10 @@ class WatermarkTemplate(AbstractModel):
64646
64845
  @property
64647
64846
  def CoordinateOrigin(self):
64648
64847
  """原点位置,可选值:
64649
- <li>topLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64650
- <li>topRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64651
- <li>bottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64652
- <li>bottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下。;</li>
64848
+ <li>TopLeft:表示坐标原点位于视频图像左上角,水印原点为图片或文字的左上角;</li>
64849
+ <li>TopRight:表示坐标原点位于视频图像的右上角,水印原点为图片或文字的右上角;</li>
64850
+ <li>BottomLeft:表示坐标原点位于视频图像的左下角,水印原点为图片或文字的左下角;</li>
64851
+ <li>BottomRight:表示坐标原点位于视频图像的右下角,水印原点为图片或文字的右下角。</li>
64653
64852
  :rtype: str
64654
64853
  """
64655
64854
  return self._CoordinateOrigin
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-mps
3
- Version: 3.0.1406
3
+ Version: 3.0.1411
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1411
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1406