tencentcloud-sdk-python-live 3.0.1099__tar.gz → 3.0.1127__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-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/live/v20180801/live_client.py +23 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/live/v20180801/models.py +433 -154
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1127/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1099/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1099 → tencentcloud-sdk-python-live-3.0.1127}/tencentcloud_sdk_python_live.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-live',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1127"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2635,6 +2635,29 @@ class LiveClient(AbstractClient):
|
|
|
2635
2635
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2636
2636
|
|
|
2637
2637
|
|
|
2638
|
+
def DescribePullTransformPushInfo(self, request):
|
|
2639
|
+
"""查询拉流转推任务的时长信息。
|
|
2640
|
+
|
|
2641
|
+
:param request: Request instance for DescribePullTransformPushInfo.
|
|
2642
|
+
:type request: :class:`tencentcloud.live.v20180801.models.DescribePullTransformPushInfoRequest`
|
|
2643
|
+
:rtype: :class:`tencentcloud.live.v20180801.models.DescribePullTransformPushInfoResponse`
|
|
2644
|
+
|
|
2645
|
+
"""
|
|
2646
|
+
try:
|
|
2647
|
+
params = request._serialize()
|
|
2648
|
+
headers = request.headers
|
|
2649
|
+
body = self.call("DescribePullTransformPushInfo", params, headers=headers)
|
|
2650
|
+
response = json.loads(body)
|
|
2651
|
+
model = models.DescribePullTransformPushInfoResponse()
|
|
2652
|
+
model._deserialize(response["Response"])
|
|
2653
|
+
return model
|
|
2654
|
+
except Exception as e:
|
|
2655
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2656
|
+
raise
|
|
2657
|
+
else:
|
|
2658
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2659
|
+
|
|
2660
|
+
|
|
2638
2661
|
def DescribePushBandwidthAndFluxList(self, request):
|
|
2639
2662
|
"""直播推流带宽和流量数据查询。
|
|
2640
2663
|
推流计费会先取全球推流用量和全球播放用量进行比较,满足计费条件后再按各地区用量出账。详情参见[计费文档](https://cloud.tencent.com/document/product/267/34175)。
|