tencentcloud-sdk-python-live 3.1.80__tar.gz → 3.1.92__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 (17) hide show
  1. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/setup.py +1 -1
  3. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/v20180801/live_client.py +2 -2
  5. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/v20180801/live_client_async.py +2 -2
  6. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/v20180801/models.py +1772 -426
  7. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
  8. tencentcloud_sdk_python_live-3.1.92/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  9. tencentcloud_sdk_python_live-3.1.80/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  10. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/README.rst +0 -0
  11. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/setup.cfg +0 -0
  12. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/__init__.py +0 -0
  13. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/v20180801/__init__.py +0 -0
  14. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_live-3.1.80 → tencentcloud_sdk_python_live-3.1.92}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.1.80
3
+ Version: 3.1.92
4
4
  Summary: Tencent Cloud Live 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.80
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.92
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-live',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.80,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.92,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Live SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.80'
17
+ __version__ = '3.1.92'
@@ -3716,7 +3716,7 @@ class LiveClient(AbstractClient):
3716
3716
 
3717
3717
 
3718
3718
  def DescribeOriginStreamInfo(self, request):
3719
- r"""获取直播源站配置信息,支持直播原站格式。
3719
+ r"""获取直播源站配置信息,支持直播源站格式。
3720
3720
 
3721
3721
  :param request: Request instance for DescribeOriginStreamInfo.
3722
3722
  :type request: :class:`tencentcloud.live.v20180801.models.DescribeOriginStreamInfoRequest`
@@ -4873,7 +4873,7 @@ class LiveClient(AbstractClient):
4873
4873
 
4874
4874
 
4875
4875
  def ModifyOriginStreamInfo(self, request):
4876
- r"""变更直播源站配置,支持直播原站格式。
4876
+ r"""变更直播源站配置,支持直播源站格式。
4877
4877
 
4878
4878
  :param request: Request instance for ModifyOriginStreamInfo.
4879
4879
  :type request: :class:`tencentcloud.live.v20180801.models.ModifyOriginStreamInfoRequest`
@@ -2940,7 +2940,7 @@ class LiveClient(AbstractClient):
2940
2940
  opts: Dict = None,
2941
2941
  ) -> models.DescribeOriginStreamInfoResponse:
2942
2942
  """
2943
- 获取直播源站配置信息,支持直播原站格式。
2943
+ 获取直播源站配置信息,支持直播源站格式。
2944
2944
  """
2945
2945
 
2946
2946
  kwargs = {}
@@ -3852,7 +3852,7 @@ class LiveClient(AbstractClient):
3852
3852
  opts: Dict = None,
3853
3853
  ) -> models.ModifyOriginStreamInfoResponse:
3854
3854
  """
3855
- 变更直播源站配置,支持直播原站格式。
3855
+ 变更直播源站配置,支持直播源站格式。
3856
3856
  """
3857
3857
 
3858
3858
  kwargs = {}