Skip to content

Commit e0ffba8

Browse files
committed
Generated python 2021-12-01 for adb-inc.
1 parent 744d16b commit e0ffba8

File tree

11 files changed

+17858
-0
lines changed

11 files changed

+17858
-0
lines changed

adb-inc-20211201/.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# OS
2+
.DS_Store
3+
4+
# IDE
5+
.idea
6+
.settings
7+
.cache/
8+
.tmp
9+
.vscode/
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# C extensions
17+
*.so
18+
19+
# Distribution / packaging
20+
.Python
21+
build/
22+
develop-eggs/
23+
dist/
24+
downloads/
25+
eggs/
26+
.eggs/
27+
lib/
28+
lib64/
29+
parts/
30+
sdist/
31+
var/
32+
wheels/
33+
pip-wheel-metadata/
34+
share/python-wheels/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
MANIFEST
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.coverage
55+
.hypothesis/
56+
.pytest_cache/
57+
pytestdebug.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
63+
target/
64+
65+
# pyenv
66+
.python-version
67+
68+
# Environments
69+
.env
70+
.venv
71+
env/
72+
venv/
73+
ENV/
74+
env.bak/
75+
venv.bak/
76+
77+
# Pyre type checker
78+
.pyre/
79+
80+
# pytype static type analyzer
81+
.pytype/

adb-inc-20211201/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2025-02-28 Version: 1.0.0
2+
- Generated python 2021-12-01 for adb-inc.
3+

adb-inc-20211201/LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

adb-inc-20211201/MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include *.md

adb-inc-20211201/README-CN.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[English](README.md) | 简体中文
2+
3+
![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
4+
5+
## Alibaba Cloud adb-inc SDK for Python
6+
7+
## 要求
8+
9+
- Python >= 3.7
10+
11+
## 安装
12+
13+
- **使用 pip 安装(推荐)**
14+
15+
如未安装 `pip`, 请先至pip官网 [pip user guide](https://pip.pypa.io/en/stable/installing/ "pip User Guide") 安装pip .
16+
17+
```bash
18+
# 安装 alibabacloud_adb_inc20211201
19+
pip install alibabacloud_adb_inc20211201
20+
```
21+
22+
## 问题
23+
24+
[提交 Issue](https://github.com/aliyun/alibabacloud-python-sdk/issues/new),不符合指南的问题可能会立即关闭。
25+
26+
## 使用说明
27+
28+
[快速使用](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/docs/0-Usage-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8)
29+
30+
## 发行说明
31+
32+
每个版本的详细更改记录在[发行说明](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/adb-inc-20211201/ChangeLog.md)中。
33+
34+
## 相关
35+
36+
- [最新源码](https://github.com/aliyun/alibabacloud-python-sdk/)
37+
38+
## 许可证
39+
40+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
41+
42+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.

adb-inc-20211201/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
English | [简体中文](README-CN.md)
2+
![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
3+
4+
## Alibaba Cloud adb-inc SDK for Python
5+
6+
## Requirements
7+
8+
- Python >= 3.7
9+
10+
## Installation
11+
12+
- **Install with pip**
13+
14+
Python SDK uses a common package management tool named `pip`. If pip is not installed, see the [pip user guide](https://pip.pypa.io/en/stable/installing/ "pip User Guide") to install pip.
15+
16+
```bash
17+
# Install the alibabacloud_adb_inc20211201
18+
pip install alibabacloud_adb_inc20211201
19+
```
20+
21+
## Issues
22+
23+
[Opening an Issue](https://github.com/aliyun/alibabacloud-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
24+
25+
## Usage
26+
27+
[Quick Examples](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/docs/0-Usage-EN.md#quick-examples)
28+
29+
## Changelog
30+
31+
Detailed changes for each release are documented in the [release notes](https://github.com/aliyun/alibabacloud-python-sdk/blob/master/adb-inc-20211201/ChangeLog.md).
32+
33+
## References
34+
35+
- [Latest Release](https://github.com/aliyun/alibabacloud-sdk/tree/master/python)
36+
37+
## License
38+
39+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
40+
41+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '1.0.0'

0 commit comments

Comments
 (0)