tencentcloud-sdk-python-trtc 3.0.1263__py2.py3-none-any.whl → 3.0.1273__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/trtc/v20190722/models.py +175 -8
- {tencentcloud_sdk_python_trtc-3.0.1263.dist-info → tencentcloud_sdk_python_trtc-3.0.1273.dist-info}/METADATA +3 -3
- tencentcloud_sdk_python_trtc-3.0.1273.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_trtc-3.0.1263.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_trtc-3.0.1263.dist-info → tencentcloud_sdk_python_trtc-3.0.1273.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_trtc-3.0.1263.dist-info → tencentcloud_sdk_python_trtc-3.0.1273.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -2120,7 +2120,6 @@ InProgress:表示当前录制任务正在进行中。
|
|
|
2120
2120
|
Exited:表示当前录制任务正在退出的过程中。
|
|
2121
2121
|
:type Status: str
|
|
2122
2122
|
:param _StorageFileList: 录制文件信息。
|
|
2123
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2124
2123
|
:type StorageFileList: list of StorageFile
|
|
2125
2124
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2126
2125
|
:type RequestId: str
|
|
@@ -2158,7 +2157,6 @@ Exited:表示当前录制任务正在退出的过程中。
|
|
|
2158
2157
|
@property
|
|
2159
2158
|
def StorageFileList(self):
|
|
2160
2159
|
"""录制文件信息。
|
|
2161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2162
2160
|
:rtype: list of StorageFile
|
|
2163
2161
|
"""
|
|
2164
2162
|
return self._StorageFileList
|
|
@@ -5483,6 +5481,69 @@ class DismissRoomResponse(AbstractModel):
|
|
|
5483
5481
|
self._RequestId = params.get("RequestId")
|
|
5484
5482
|
|
|
5485
5483
|
|
|
5484
|
+
class EmulateMobileParams(AbstractModel):
|
|
5485
|
+
"""渲染移动模式参数,不渲染移动模式时,请勿设置此参数。
|
|
5486
|
+
|
|
5487
|
+
"""
|
|
5488
|
+
|
|
5489
|
+
def __init__(self):
|
|
5490
|
+
r"""
|
|
5491
|
+
:param _MobileDeviceType: 移动设备类型,
|
|
5492
|
+
0: 手机
|
|
5493
|
+
1: 平板
|
|
5494
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5495
|
+
:type MobileDeviceType: int
|
|
5496
|
+
:param _ScreenOrientation: 屏幕方向,
|
|
5497
|
+
0: 竖屏,
|
|
5498
|
+
1: 横屏
|
|
5499
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5500
|
+
:type ScreenOrientation: int
|
|
5501
|
+
"""
|
|
5502
|
+
self._MobileDeviceType = None
|
|
5503
|
+
self._ScreenOrientation = None
|
|
5504
|
+
|
|
5505
|
+
@property
|
|
5506
|
+
def MobileDeviceType(self):
|
|
5507
|
+
"""移动设备类型,
|
|
5508
|
+
0: 手机
|
|
5509
|
+
1: 平板
|
|
5510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5511
|
+
:rtype: int
|
|
5512
|
+
"""
|
|
5513
|
+
return self._MobileDeviceType
|
|
5514
|
+
|
|
5515
|
+
@MobileDeviceType.setter
|
|
5516
|
+
def MobileDeviceType(self, MobileDeviceType):
|
|
5517
|
+
self._MobileDeviceType = MobileDeviceType
|
|
5518
|
+
|
|
5519
|
+
@property
|
|
5520
|
+
def ScreenOrientation(self):
|
|
5521
|
+
"""屏幕方向,
|
|
5522
|
+
0: 竖屏,
|
|
5523
|
+
1: 横屏
|
|
5524
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5525
|
+
:rtype: int
|
|
5526
|
+
"""
|
|
5527
|
+
return self._ScreenOrientation
|
|
5528
|
+
|
|
5529
|
+
@ScreenOrientation.setter
|
|
5530
|
+
def ScreenOrientation(self, ScreenOrientation):
|
|
5531
|
+
self._ScreenOrientation = ScreenOrientation
|
|
5532
|
+
|
|
5533
|
+
|
|
5534
|
+
def _deserialize(self, params):
|
|
5535
|
+
self._MobileDeviceType = params.get("MobileDeviceType")
|
|
5536
|
+
self._ScreenOrientation = params.get("ScreenOrientation")
|
|
5537
|
+
memeber_set = set(params.keys())
|
|
5538
|
+
for name, value in vars(self).items():
|
|
5539
|
+
property_name = name[1:]
|
|
5540
|
+
if property_name in memeber_set:
|
|
5541
|
+
memeber_set.remove(property_name)
|
|
5542
|
+
if len(memeber_set) > 0:
|
|
5543
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5544
|
+
|
|
5545
|
+
|
|
5546
|
+
|
|
5486
5547
|
class EncodeParams(AbstractModel):
|
|
5487
5548
|
"""MCU混流输出流编码参数
|
|
5488
5549
|
|
|
@@ -9458,7 +9519,28 @@ class RecognizeConfig(AbstractModel):
|
|
|
9458
9519
|
:type AlternativeLanguage: list of str
|
|
9459
9520
|
:param _Model: 目前已不支持
|
|
9460
9521
|
:type Model: str
|
|
9461
|
-
:param _TranslationLanguage:
|
|
9522
|
+
:param _TranslationLanguage: 填写则翻译,目前支持的语言:
|
|
9523
|
+
中文: zh
|
|
9524
|
+
英语: en
|
|
9525
|
+
越南语: vi
|
|
9526
|
+
日语: ja
|
|
9527
|
+
韩语: ko
|
|
9528
|
+
印度尼西亚语: id
|
|
9529
|
+
泰语: th
|
|
9530
|
+
葡萄牙语: pt
|
|
9531
|
+
土耳其语: tr
|
|
9532
|
+
阿拉伯语: ar
|
|
9533
|
+
西班牙语: es
|
|
9534
|
+
印地语: hi
|
|
9535
|
+
法语: fr
|
|
9536
|
+
马来语: ms
|
|
9537
|
+
菲律宾语: fil
|
|
9538
|
+
德语: de
|
|
9539
|
+
意大利语: it
|
|
9540
|
+
俄语: ru
|
|
9541
|
+
瑞典语: sv
|
|
9542
|
+
挪威语: no
|
|
9543
|
+
丹麦语: da
|
|
9462
9544
|
:type TranslationLanguage: str
|
|
9463
9545
|
"""
|
|
9464
9546
|
self._Language = None
|
|
@@ -9537,7 +9619,28 @@ class RecognizeConfig(AbstractModel):
|
|
|
9537
9619
|
def TranslationLanguage(self):
|
|
9538
9620
|
warnings.warn("parameter `TranslationLanguage` is deprecated", DeprecationWarning)
|
|
9539
9621
|
|
|
9540
|
-
"""
|
|
9622
|
+
"""填写则翻译,目前支持的语言:
|
|
9623
|
+
中文: zh
|
|
9624
|
+
英语: en
|
|
9625
|
+
越南语: vi
|
|
9626
|
+
日语: ja
|
|
9627
|
+
韩语: ko
|
|
9628
|
+
印度尼西亚语: id
|
|
9629
|
+
泰语: th
|
|
9630
|
+
葡萄牙语: pt
|
|
9631
|
+
土耳其语: tr
|
|
9632
|
+
阿拉伯语: ar
|
|
9633
|
+
西班牙语: es
|
|
9634
|
+
印地语: hi
|
|
9635
|
+
法语: fr
|
|
9636
|
+
马来语: ms
|
|
9637
|
+
菲律宾语: fil
|
|
9638
|
+
德语: de
|
|
9639
|
+
意大利语: it
|
|
9640
|
+
俄语: ru
|
|
9641
|
+
瑞典语: sv
|
|
9642
|
+
挪威语: no
|
|
9643
|
+
丹麦语: da
|
|
9541
9644
|
:rtype: str
|
|
9542
9645
|
"""
|
|
9543
9646
|
return self._TranslationLanguage
|
|
@@ -9575,7 +9678,7 @@ class RecordParams(AbstractModel):
|
|
|
9575
9678
|
1:单流录制,分别录制房间的订阅UserId的音频和视频,将录制文件上传至云存储;
|
|
9576
9679
|
2:合流录制,将房间内订阅UserId的音视频混录成一个音视频文件,将录制文件上传至云存储;
|
|
9577
9680
|
:type RecordMode: int
|
|
9578
|
-
:param _MaxIdleTime:
|
|
9681
|
+
:param _MaxIdleTime: 房间内持续没有主播的状态超过MaxIdleTime的时长,自动停止录制,单位:秒。默认值为 30 秒,该值需大于等于 5秒,且小于等于 86400秒(24小时)。
|
|
9579
9682
|
:type MaxIdleTime: int
|
|
9580
9683
|
:param _StreamType: 录制的媒体流类型:
|
|
9581
9684
|
0:录制音频+视频流(默认);
|
|
@@ -9623,7 +9726,7 @@ Hls 格式录制此参数不生效。
|
|
|
9623
9726
|
|
|
9624
9727
|
@property
|
|
9625
9728
|
def MaxIdleTime(self):
|
|
9626
|
-
"""
|
|
9729
|
+
"""房间内持续没有主播的状态超过MaxIdleTime的时长,自动停止录制,单位:秒。默认值为 30 秒,该值需大于等于 5秒,且小于等于 86400秒(24小时)。
|
|
9627
9730
|
:rtype: int
|
|
9628
9731
|
"""
|
|
9629
9732
|
return self._MaxIdleTime
|
|
@@ -10211,11 +10314,15 @@ class STTConfig(AbstractModel):
|
|
|
10211
10314
|
注:Language指定为"zh-dialect" # 中国方言 时,不支持模糊识别,该字段无效
|
|
10212
10315
|
|
|
10213
10316
|
:type AlternativeLanguage: list of str
|
|
10317
|
+
:param _CustomParam: 自定义参数,联系后台使用
|
|
10318
|
+
|
|
10319
|
+
:type CustomParam: str
|
|
10214
10320
|
:param _VadSilenceTime: 语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。
|
|
10215
10321
|
:type VadSilenceTime: int
|
|
10216
10322
|
"""
|
|
10217
10323
|
self._Language = None
|
|
10218
10324
|
self._AlternativeLanguage = None
|
|
10325
|
+
self._CustomParam = None
|
|
10219
10326
|
self._VadSilenceTime = None
|
|
10220
10327
|
|
|
10221
10328
|
@property
|
|
@@ -10269,6 +10376,18 @@ class STTConfig(AbstractModel):
|
|
|
10269
10376
|
def AlternativeLanguage(self, AlternativeLanguage):
|
|
10270
10377
|
self._AlternativeLanguage = AlternativeLanguage
|
|
10271
10378
|
|
|
10379
|
+
@property
|
|
10380
|
+
def CustomParam(self):
|
|
10381
|
+
"""自定义参数,联系后台使用
|
|
10382
|
+
|
|
10383
|
+
:rtype: str
|
|
10384
|
+
"""
|
|
10385
|
+
return self._CustomParam
|
|
10386
|
+
|
|
10387
|
+
@CustomParam.setter
|
|
10388
|
+
def CustomParam(self, CustomParam):
|
|
10389
|
+
self._CustomParam = CustomParam
|
|
10390
|
+
|
|
10272
10391
|
@property
|
|
10273
10392
|
def VadSilenceTime(self):
|
|
10274
10393
|
"""语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。
|
|
@@ -10284,6 +10403,7 @@ class STTConfig(AbstractModel):
|
|
|
10284
10403
|
def _deserialize(self, params):
|
|
10285
10404
|
self._Language = params.get("Language")
|
|
10286
10405
|
self._AlternativeLanguage = params.get("AlternativeLanguage")
|
|
10406
|
+
self._CustomParam = params.get("CustomParam")
|
|
10287
10407
|
self._VadSilenceTime = params.get("VadSilenceTime")
|
|
10288
10408
|
memeber_set = set(params.keys())
|
|
10289
10409
|
for name, value in vars(self).items():
|
|
@@ -11843,6 +11963,8 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
11843
11963
|
:type RepeatNum: int
|
|
11844
11964
|
:param _MaxDuration: 循环播放最大时长,仅支持RepeatNum设置-1时生效,取值范围[1, 10080],单位分钟。
|
|
11845
11965
|
:type MaxDuration: int
|
|
11966
|
+
:param _Volume: 音量,取值范围[0, 100],默认100,表示原音量。
|
|
11967
|
+
:type Volume: int
|
|
11846
11968
|
"""
|
|
11847
11969
|
self._SdkAppId = None
|
|
11848
11970
|
self._RoomId = None
|
|
@@ -11858,6 +11980,7 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
11858
11980
|
self._AutoPush = None
|
|
11859
11981
|
self._RepeatNum = None
|
|
11860
11982
|
self._MaxDuration = None
|
|
11983
|
+
self._Volume = None
|
|
11861
11984
|
|
|
11862
11985
|
@property
|
|
11863
11986
|
def SdkAppId(self):
|
|
@@ -12031,6 +12154,17 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
12031
12154
|
def MaxDuration(self, MaxDuration):
|
|
12032
12155
|
self._MaxDuration = MaxDuration
|
|
12033
12156
|
|
|
12157
|
+
@property
|
|
12158
|
+
def Volume(self):
|
|
12159
|
+
"""音量,取值范围[0, 100],默认100,表示原音量。
|
|
12160
|
+
:rtype: int
|
|
12161
|
+
"""
|
|
12162
|
+
return self._Volume
|
|
12163
|
+
|
|
12164
|
+
@Volume.setter
|
|
12165
|
+
def Volume(self, Volume):
|
|
12166
|
+
self._Volume = Volume
|
|
12167
|
+
|
|
12034
12168
|
|
|
12035
12169
|
def _deserialize(self, params):
|
|
12036
12170
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -12051,6 +12185,7 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
12051
12185
|
self._AutoPush = params.get("AutoPush")
|
|
12052
12186
|
self._RepeatNum = params.get("RepeatNum")
|
|
12053
12187
|
self._MaxDuration = params.get("MaxDuration")
|
|
12188
|
+
self._Volume = params.get("Volume")
|
|
12054
12189
|
memeber_set = set(params.keys())
|
|
12055
12190
|
for name, value in vars(self).items():
|
|
12056
12191
|
property_name = name[1:]
|
|
@@ -12130,6 +12265,8 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
12130
12265
|
:type PublishCdnParams: list of McuPublishCdnParam
|
|
12131
12266
|
:param _ReadyTimeout: 录制页面资源加载的超时时间,单位:秒。默认值为 0 秒,该值需大于等于 0秒,且小于等于 60秒。录制页面未启用页面加载超时检测时,请勿设置此参数。
|
|
12132
12267
|
:type ReadyTimeout: int
|
|
12268
|
+
:param _EmulateMobileParams: 渲染移动模式参数;不准备渲染移动模式页面时,请勿设置此参数。
|
|
12269
|
+
:type EmulateMobileParams: :class:`tencentcloud.trtc.v20190722.models.EmulateMobileParams`
|
|
12133
12270
|
"""
|
|
12134
12271
|
self._RecordUrl = None
|
|
12135
12272
|
self._MaxDurationLimit = None
|
|
@@ -12139,6 +12276,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
12139
12276
|
self._RecordId = None
|
|
12140
12277
|
self._PublishCdnParams = None
|
|
12141
12278
|
self._ReadyTimeout = None
|
|
12279
|
+
self._EmulateMobileParams = None
|
|
12142
12280
|
|
|
12143
12281
|
@property
|
|
12144
12282
|
def RecordUrl(self):
|
|
@@ -12231,6 +12369,17 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
12231
12369
|
def ReadyTimeout(self, ReadyTimeout):
|
|
12232
12370
|
self._ReadyTimeout = ReadyTimeout
|
|
12233
12371
|
|
|
12372
|
+
@property
|
|
12373
|
+
def EmulateMobileParams(self):
|
|
12374
|
+
"""渲染移动模式参数;不准备渲染移动模式页面时,请勿设置此参数。
|
|
12375
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.EmulateMobileParams`
|
|
12376
|
+
"""
|
|
12377
|
+
return self._EmulateMobileParams
|
|
12378
|
+
|
|
12379
|
+
@EmulateMobileParams.setter
|
|
12380
|
+
def EmulateMobileParams(self, EmulateMobileParams):
|
|
12381
|
+
self._EmulateMobileParams = EmulateMobileParams
|
|
12382
|
+
|
|
12234
12383
|
|
|
12235
12384
|
def _deserialize(self, params):
|
|
12236
12385
|
self._RecordUrl = params.get("RecordUrl")
|
|
@@ -12250,6 +12399,9 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
12250
12399
|
obj._deserialize(item)
|
|
12251
12400
|
self._PublishCdnParams.append(obj)
|
|
12252
12401
|
self._ReadyTimeout = params.get("ReadyTimeout")
|
|
12402
|
+
if params.get("EmulateMobileParams") is not None:
|
|
12403
|
+
self._EmulateMobileParams = EmulateMobileParams()
|
|
12404
|
+
self._EmulateMobileParams._deserialize(params.get("EmulateMobileParams"))
|
|
12253
12405
|
memeber_set = set(params.keys())
|
|
12254
12406
|
for name, value in vars(self).items():
|
|
12255
12407
|
property_name = name[1:]
|
|
@@ -14036,12 +14188,15 @@ class UpdateStreamIngestRequest(AbstractModel):
|
|
|
14036
14188
|
:type SdkAppId: int
|
|
14037
14189
|
:param _TaskId: 任务的唯一Id,在启动任务成功后会返回。
|
|
14038
14190
|
:type TaskId: str
|
|
14039
|
-
:param _StreamUrl: 源流URL
|
|
14191
|
+
:param _StreamUrl: 源流URL。
|
|
14040
14192
|
:type StreamUrl: str
|
|
14193
|
+
:param _Volume: 音量,取值范围[0, 100],默认100,表示原音量。
|
|
14194
|
+
:type Volume: int
|
|
14041
14195
|
"""
|
|
14042
14196
|
self._SdkAppId = None
|
|
14043
14197
|
self._TaskId = None
|
|
14044
14198
|
self._StreamUrl = None
|
|
14199
|
+
self._Volume = None
|
|
14045
14200
|
|
|
14046
14201
|
@property
|
|
14047
14202
|
def SdkAppId(self):
|
|
@@ -14067,7 +14222,7 @@ class UpdateStreamIngestRequest(AbstractModel):
|
|
|
14067
14222
|
|
|
14068
14223
|
@property
|
|
14069
14224
|
def StreamUrl(self):
|
|
14070
|
-
"""源流URL
|
|
14225
|
+
"""源流URL。
|
|
14071
14226
|
:rtype: str
|
|
14072
14227
|
"""
|
|
14073
14228
|
return self._StreamUrl
|
|
@@ -14076,11 +14231,23 @@ class UpdateStreamIngestRequest(AbstractModel):
|
|
|
14076
14231
|
def StreamUrl(self, StreamUrl):
|
|
14077
14232
|
self._StreamUrl = StreamUrl
|
|
14078
14233
|
|
|
14234
|
+
@property
|
|
14235
|
+
def Volume(self):
|
|
14236
|
+
"""音量,取值范围[0, 100],默认100,表示原音量。
|
|
14237
|
+
:rtype: int
|
|
14238
|
+
"""
|
|
14239
|
+
return self._Volume
|
|
14240
|
+
|
|
14241
|
+
@Volume.setter
|
|
14242
|
+
def Volume(self, Volume):
|
|
14243
|
+
self._Volume = Volume
|
|
14244
|
+
|
|
14079
14245
|
|
|
14080
14246
|
def _deserialize(self, params):
|
|
14081
14247
|
self._SdkAppId = params.get("SdkAppId")
|
|
14082
14248
|
self._TaskId = params.get("TaskId")
|
|
14083
14249
|
self._StreamUrl = params.get("StreamUrl")
|
|
14250
|
+
self._Volume = params.get("Volume")
|
|
14084
14251
|
memeber_set = set(params.keys())
|
|
14085
14252
|
for name, value in vars(self).items():
|
|
14086
14253
|
property_name = name[1:]
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-trtc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1273
|
|
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
|
|
7
|
-
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
8
|
License: Apache License 2.0
|
|
9
9
|
Platform: any
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -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 (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1273)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=xa39ZlVEdwzBi6UK57huGoc9g_cyyH1-eE8h6OJtCTM,631
|
|
2
|
+
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/trtc/v20190722/errorcodes.py,sha256=WNu9Hx8kn4lpbc342xXM1lw4uTQIx2JCvZchRlUXBL8,10987
|
|
5
|
+
tencentcloud/trtc/v20190722/models.py,sha256=GnEUvwl8lh4sZzrhwPH1gr0PtKTHp0Cq7CJZOtMmMiI,542043
|
|
6
|
+
tencentcloud/trtc/v20190722/trtc_client.py,sha256=6FKGmUMKPx22b8mWYHPX0Xwt63y8xNyqJJ1cCzGZP9c,77188
|
|
7
|
+
tencentcloud_sdk_python_trtc-3.0.1273.dist-info/METADATA,sha256=NlZ9rr7lCPw1C9ZPviIC_TgbzqxtmJPueicKkVFdh-s,1501
|
|
8
|
+
tencentcloud_sdk_python_trtc-3.0.1273.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_trtc-3.0.1273.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_trtc-3.0.1273.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=I-SN6tI8nIMh1Df4pK83RcurEm0Ig6fzDp-S-llY_NU,631
|
|
2
|
-
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/trtc/v20190722/errorcodes.py,sha256=WNu9Hx8kn4lpbc342xXM1lw4uTQIx2JCvZchRlUXBL8,10987
|
|
5
|
-
tencentcloud/trtc/v20190722/models.py,sha256=A2unaGBUG5eaGy6x4FeHZDwiMiM57WTBta0QRvZDhXg,537518
|
|
6
|
-
tencentcloud/trtc/v20190722/trtc_client.py,sha256=6FKGmUMKPx22b8mWYHPX0Xwt63y8xNyqJJ1cCzGZP9c,77188
|
|
7
|
-
tencentcloud_sdk_python_trtc-3.0.1263.dist-info/METADATA,sha256=xc7kCi3WNVOhHn5fKzalUe3nr36SQC67_hVglYsOpSQ,1497
|
|
8
|
-
tencentcloud_sdk_python_trtc-3.0.1263.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_trtc-3.0.1263.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_trtc-3.0.1263.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|