tencentcloud-sdk-python-lkeap 3.0.1297__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-lkeap-3.0.1297/PKG-INFO +45 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/README.rst +27 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/setup.cfg +7 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/setup.py +32 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/__init__.py +17 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/lkeap/__init__.py +0 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/lkeap/v20240522/__init__.py +0 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/lkeap/v20240522/errorcodes.py +66 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/lkeap/v20240522/lkeap_client.py +573 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud/lkeap/v20240522/models.py +3622 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud_sdk_python_lkeap.egg-info/PKG-INFO +45 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud_sdk_python_lkeap.egg-info/SOURCES.txt +14 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud_sdk_python_lkeap.egg-info/dependency_links.txt +1 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud_sdk_python_lkeap.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-lkeap-3.0.1297/tencentcloud_sdk_python_lkeap.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
|
+
Name: tencentcloud-sdk-python-lkeap
|
|
3
|
+
Version: 3.0.1297
|
|
4
|
+
Summary: Tencent Cloud Lkeap SDK for Python
|
|
5
|
+
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
|
+
Author: Tencent Cloud
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Description: ============================
|
|
10
|
+
Tencent Cloud SDK for Python
|
|
11
|
+
============================
|
|
12
|
+
|
|
13
|
+
Tencent Cloud Python Lkeap SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
14
|
+
The SDK works on Python versions:
|
|
15
|
+
|
|
16
|
+
* 2.7 and greater, including 3.x
|
|
17
|
+
|
|
18
|
+
Quick Start
|
|
19
|
+
-----------
|
|
20
|
+
|
|
21
|
+
First, install the library:
|
|
22
|
+
|
|
23
|
+
.. code-block:: sh
|
|
24
|
+
|
|
25
|
+
$ pip install tencentcloud-sdk-python-common
|
|
26
|
+
$ pip install tencentcloud-sdk-python-lkeap
|
|
27
|
+
|
|
28
|
+
or download source code from github and install:
|
|
29
|
+
|
|
30
|
+
.. code-block:: sh
|
|
31
|
+
|
|
32
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
33
|
+
$ cd tencentcloud-sdk-python
|
|
34
|
+
$ python package.py --components common lkeap
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Platform: any
|
|
38
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
+
Classifier: Intended Audience :: Developers
|
|
40
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
41
|
+
Classifier: Programming Language :: Python
|
|
42
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
43
|
+
Classifier: Programming Language :: Python :: 3
|
|
44
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
45
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
============================
|
|
2
|
+
Tencent Cloud SDK for Python
|
|
3
|
+
============================
|
|
4
|
+
|
|
5
|
+
Tencent Cloud Python Lkeap SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
|
|
6
|
+
The SDK works on Python versions:
|
|
7
|
+
|
|
8
|
+
* 2.7 and greater, including 3.x
|
|
9
|
+
|
|
10
|
+
Quick Start
|
|
11
|
+
-----------
|
|
12
|
+
|
|
13
|
+
First, install the library:
|
|
14
|
+
|
|
15
|
+
.. code-block:: sh
|
|
16
|
+
|
|
17
|
+
$ pip install tencentcloud-sdk-python-common
|
|
18
|
+
$ pip install tencentcloud-sdk-python-lkeap
|
|
19
|
+
|
|
20
|
+
or download source code from github and install:
|
|
21
|
+
|
|
22
|
+
.. code-block:: sh
|
|
23
|
+
|
|
24
|
+
$ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
|
|
25
|
+
$ cd tencentcloud-sdk-python
|
|
26
|
+
$ python package.py --components common lkeap
|
|
27
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
import os
|
|
3
|
+
from setuptools import setup, find_packages
|
|
4
|
+
|
|
5
|
+
import tencentcloud
|
|
6
|
+
|
|
7
|
+
ROOT = os.path.dirname(__file__)
|
|
8
|
+
|
|
9
|
+
setup(
|
|
10
|
+
name='tencentcloud-sdk-python-lkeap',
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1297"],
|
|
12
|
+
version=tencentcloud.__version__,
|
|
13
|
+
description='Tencent Cloud Lkeap SDK for Python',
|
|
14
|
+
long_description=open('README.rst').read(),
|
|
15
|
+
author='Tencent Cloud',
|
|
16
|
+
url='https://github.com/TencentCloud/tencentcloud-sdk-python',
|
|
17
|
+
maintainer_email="tencentcloudapi@tencent.com",
|
|
18
|
+
scripts=[],
|
|
19
|
+
packages=find_packages(exclude=["tests*"]),
|
|
20
|
+
license="Apache License 2.0",
|
|
21
|
+
platforms='any',
|
|
22
|
+
classifiers=[
|
|
23
|
+
'Development Status :: 5 - Production/Stable',
|
|
24
|
+
'Intended Audience :: Developers',
|
|
25
|
+
'License :: OSI Approved :: Apache Software License',
|
|
26
|
+
'Programming Language :: Python',
|
|
27
|
+
'Programming Language :: Python :: 2.7',
|
|
28
|
+
'Programming Language :: Python :: 3',
|
|
29
|
+
'Programming Language :: Python :: 3.6',
|
|
30
|
+
'Programming Language :: Python :: 3.7',
|
|
31
|
+
],
|
|
32
|
+
)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 1999-2018 Tencent Ltd.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = '3.0.1297'
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# -*- coding: utf8 -*-
|
|
2
|
+
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 操作失败。
|
|
18
|
+
FAILEDOPERATION = 'FailedOperation'
|
|
19
|
+
|
|
20
|
+
# FailedOperation.DownLoadError
|
|
21
|
+
FAILEDOPERATION_DOWNLOADERROR = 'FailedOperation.DownLoadError'
|
|
22
|
+
|
|
23
|
+
# FailedOperation.FileDecodeFailed
|
|
24
|
+
FAILEDOPERATION_FILEDECODEFAILED = 'FailedOperation.FileDecodeFailed'
|
|
25
|
+
|
|
26
|
+
# FailedOperation.ImageDecodeFailed
|
|
27
|
+
FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
|
|
28
|
+
|
|
29
|
+
# 暂不支持解析该文件
|
|
30
|
+
FAILEDOPERATION_NONSUPPORTPARSE = 'FailedOperation.NonsupportParse'
|
|
31
|
+
|
|
32
|
+
# 内部未知错误。
|
|
33
|
+
FAILEDOPERATION_UNKNOWERROR = 'FailedOperation.UnKnowError'
|
|
34
|
+
|
|
35
|
+
# FailedOperation.UnKnowFileTypeError
|
|
36
|
+
FAILEDOPERATION_UNKNOWFILETYPEERROR = 'FailedOperation.UnKnowFileTypeError'
|
|
37
|
+
|
|
38
|
+
# 服务未开通。
|
|
39
|
+
FAILEDOPERATION_UNOPENERROR = 'FailedOperation.UnOpenError'
|
|
40
|
+
|
|
41
|
+
# 生成识别结果文件访问url失败,请稍后重试。
|
|
42
|
+
FAILEDOPERATION_UPLOADRESULTFILEFAILED = 'FailedOperation.UploadResultFileFailed'
|
|
43
|
+
|
|
44
|
+
# 内部错误。
|
|
45
|
+
INTERNALERROR = 'InternalError'
|
|
46
|
+
|
|
47
|
+
# 参数错误。
|
|
48
|
+
INVALIDPARAMETER = 'InvalidParameter'
|
|
49
|
+
|
|
50
|
+
# 参数值错误。
|
|
51
|
+
INVALIDPARAMETERVALUE_INVALIDPARAMETERVALUELIMIT = 'InvalidParameterValue.InvalidParameterValueLimit'
|
|
52
|
+
|
|
53
|
+
# 超过最大文件页数限制
|
|
54
|
+
LIMITEXCEEDED_EXCEEDEDMAXPAGESERROR = 'LimitExceeded.ExceededMaxPagesError'
|
|
55
|
+
|
|
56
|
+
# 文件太大
|
|
57
|
+
LIMITEXCEEDED_TOOLARGEFILEERROR = 'LimitExceeded.TooLargeFileError'
|
|
58
|
+
|
|
59
|
+
# 帐号已欠费。
|
|
60
|
+
RESOURCEUNAVAILABLE_INARREARS = 'ResourceUnavailable.InArrears'
|
|
61
|
+
|
|
62
|
+
# 账号资源包耗尽。
|
|
63
|
+
RESOURCEUNAVAILABLE_RESOURCEPACKAGERUNOUT = 'ResourceUnavailable.ResourcePackageRunOut'
|
|
64
|
+
|
|
65
|
+
# 计费状态异常。
|
|
66
|
+
RESOURCESSOLDOUT_CHARGESTATUSEXCEPTION = 'ResourcesSoldOut.ChargeStatusException'
|