antchain-ak-d3c4f09125a14cd587057c405561809a 1.0.0__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.
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/LICENSE +13 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/MANIFEST.in +2 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/PKG-INFO +63 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/README-CN.md +38 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/README.md +40 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/PKG-INFO +63 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/SOURCES.txt +14 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/dependency_links.txt +1 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/requires.txt +3 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/top_level.txt +1 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/__init__.py +1 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/client.py +668 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/models.py +1807 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/setup.cfg +7 -0
- antchain_ak_d3c4f09125a14cd587057c405561809a-1.0.0/setup.py +78 -0
@@ -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.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: antchain_ak_d3c4f09125a14cd587057c405561809a
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Ant Chain Ak_d3c4f09125a14cd587057c405561809a SDK Library for Python
|
5
|
+
Home-page: https://github.com/alipay/antchain-openapi-prod-sdk
|
6
|
+
Author: Ant Chain SDK
|
7
|
+
Author-email: sdk-team@alibabacloud.com
|
8
|
+
License: Apache License 2.0
|
9
|
+
Description: English | [简体中文](README-CN.md)
|
10
|
+
|
11
|
+
## Ant Chain ak_d3c4f09125a14cd587057c405561809a SDK for Python
|
12
|
+
|
13
|
+
## Requirements
|
14
|
+
|
15
|
+
- Python >= 3.6
|
16
|
+
|
17
|
+
## Installation
|
18
|
+
|
19
|
+
- **Install with pip**
|
20
|
+
|
21
|
+
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.
|
22
|
+
|
23
|
+
```bash
|
24
|
+
# Install the antchain-ak_d3c4f09125a14cd587057c405561809a
|
25
|
+
pip install antchain-ak_d3c4f09125a14cd587057c405561809a
|
26
|
+
```
|
27
|
+
|
28
|
+
## Issues
|
29
|
+
|
30
|
+
[Opening an Issue](https://github.com/alipay/antchain-openapi-prod-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
31
|
+
|
32
|
+
## Usage
|
33
|
+
|
34
|
+
[Quick Examples](https://github.com/alipay/antchain-openapi-prod-sdk)
|
35
|
+
|
36
|
+
## Changelog
|
37
|
+
|
38
|
+
Detailed changes for each release are documented in the [release notes](./ChangeLog.md).
|
39
|
+
|
40
|
+
## References
|
41
|
+
|
42
|
+
- [Latest Release](https://github.com/alipay/antchain-openapi-prod-sdk/tree/master/python)
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
47
|
+
|
48
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
49
|
+
|
50
|
+
Keywords: antchain,ak,d3c4f09125a14cd587057c405561809a
|
51
|
+
Platform: any
|
52
|
+
Classifier: Development Status :: 4 - Beta
|
53
|
+
Classifier: Intended Audience :: Developers
|
54
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
55
|
+
Classifier: Programming Language :: Python
|
56
|
+
Classifier: Programming Language :: Python :: 3
|
57
|
+
Classifier: Programming Language :: Python :: 3.6
|
58
|
+
Classifier: Programming Language :: Python :: 3.7
|
59
|
+
Classifier: Programming Language :: Python :: 3.8
|
60
|
+
Classifier: Programming Language :: Python :: 3.9
|
61
|
+
Classifier: Topic :: Software Development
|
62
|
+
Requires-Python: >=3.6
|
63
|
+
Description-Content-Type: text/markdown
|
@@ -0,0 +1,38 @@
|
|
1
|
+
[English](README.md) | 简体中文
|
2
|
+
|
3
|
+
## Ant Chain ak_d3c4f09125a14cd587057c405561809a SDK for Python
|
4
|
+
|
5
|
+
## 要求
|
6
|
+
|
7
|
+
- Python >= 3.6
|
8
|
+
|
9
|
+
## 安装
|
10
|
+
|
11
|
+
- **使用 pip 安装(推荐)**
|
12
|
+
|
13
|
+
如未安装 `pip`, 请先至pip官网 [pip user guide](https://pip.pypa.io/en/stable/installing/ "pip User Guide") 安装pip .
|
14
|
+
|
15
|
+
```bash
|
16
|
+
# 安装 antchain-ak_d3c4f09125a14cd587057c405561809a
|
17
|
+
pip install antchain-ak_d3c4f09125a14cd587057c405561809a
|
18
|
+
```
|
19
|
+
|
20
|
+
## 问题
|
21
|
+
|
22
|
+
[提交 Issue](https://github.com/alipay/antchain-openapi-prod-sdk/issues/new),不符合指南的问题可能会立即关闭。
|
23
|
+
|
24
|
+
## 使用说明
|
25
|
+
|
26
|
+
[快速使用](https://github.com/alipay/antchain-openapi-prod-sdk)
|
27
|
+
|
28
|
+
## 发行说明
|
29
|
+
|
30
|
+
每个版本的详细更改记录在[发行说明](./ChangeLog.md)中。
|
31
|
+
|
32
|
+
## 相关
|
33
|
+
|
34
|
+
- [最新源码](https://github.com/alipay/antchain-openapi-prod-sdk/)
|
35
|
+
|
36
|
+
## 许可证
|
37
|
+
|
38
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
@@ -0,0 +1,40 @@
|
|
1
|
+
English | [简体中文](README-CN.md)
|
2
|
+
|
3
|
+
## Ant Chain ak_d3c4f09125a14cd587057c405561809a SDK for Python
|
4
|
+
|
5
|
+
## Requirements
|
6
|
+
|
7
|
+
- Python >= 3.6
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
- **Install with pip**
|
12
|
+
|
13
|
+
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.
|
14
|
+
|
15
|
+
```bash
|
16
|
+
# Install the antchain-ak_d3c4f09125a14cd587057c405561809a
|
17
|
+
pip install antchain-ak_d3c4f09125a14cd587057c405561809a
|
18
|
+
```
|
19
|
+
|
20
|
+
## Issues
|
21
|
+
|
22
|
+
[Opening an Issue](https://github.com/alipay/antchain-openapi-prod-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
[Quick Examples](https://github.com/alipay/antchain-openapi-prod-sdk)
|
27
|
+
|
28
|
+
## Changelog
|
29
|
+
|
30
|
+
Detailed changes for each release are documented in the [release notes](./ChangeLog.md).
|
31
|
+
|
32
|
+
## References
|
33
|
+
|
34
|
+
- [Latest Release](https://github.com/alipay/antchain-openapi-prod-sdk/tree/master/python)
|
35
|
+
|
36
|
+
## License
|
37
|
+
|
38
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
39
|
+
|
40
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: antchain-ak-d3c4f09125a14cd587057c405561809a
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Ant Chain Ak_d3c4f09125a14cd587057c405561809a SDK Library for Python
|
5
|
+
Home-page: https://github.com/alipay/antchain-openapi-prod-sdk
|
6
|
+
Author: Ant Chain SDK
|
7
|
+
Author-email: sdk-team@alibabacloud.com
|
8
|
+
License: Apache License 2.0
|
9
|
+
Description: English | [简体中文](README-CN.md)
|
10
|
+
|
11
|
+
## Ant Chain ak_d3c4f09125a14cd587057c405561809a SDK for Python
|
12
|
+
|
13
|
+
## Requirements
|
14
|
+
|
15
|
+
- Python >= 3.6
|
16
|
+
|
17
|
+
## Installation
|
18
|
+
|
19
|
+
- **Install with pip**
|
20
|
+
|
21
|
+
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.
|
22
|
+
|
23
|
+
```bash
|
24
|
+
# Install the antchain-ak_d3c4f09125a14cd587057c405561809a
|
25
|
+
pip install antchain-ak_d3c4f09125a14cd587057c405561809a
|
26
|
+
```
|
27
|
+
|
28
|
+
## Issues
|
29
|
+
|
30
|
+
[Opening an Issue](https://github.com/alipay/antchain-openapi-prod-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
31
|
+
|
32
|
+
## Usage
|
33
|
+
|
34
|
+
[Quick Examples](https://github.com/alipay/antchain-openapi-prod-sdk)
|
35
|
+
|
36
|
+
## Changelog
|
37
|
+
|
38
|
+
Detailed changes for each release are documented in the [release notes](./ChangeLog.md).
|
39
|
+
|
40
|
+
## References
|
41
|
+
|
42
|
+
- [Latest Release](https://github.com/alipay/antchain-openapi-prod-sdk/tree/master/python)
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
47
|
+
|
48
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
49
|
+
|
50
|
+
Keywords: antchain,ak,d3c4f09125a14cd587057c405561809a
|
51
|
+
Platform: any
|
52
|
+
Classifier: Development Status :: 4 - Beta
|
53
|
+
Classifier: Intended Audience :: Developers
|
54
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
55
|
+
Classifier: Programming Language :: Python
|
56
|
+
Classifier: Programming Language :: Python :: 3
|
57
|
+
Classifier: Programming Language :: Python :: 3.6
|
58
|
+
Classifier: Programming Language :: Python :: 3.7
|
59
|
+
Classifier: Programming Language :: Python :: 3.8
|
60
|
+
Classifier: Programming Language :: Python :: 3.9
|
61
|
+
Classifier: Topic :: Software Development
|
62
|
+
Requires-Python: >=3.6
|
63
|
+
Description-Content-Type: text/markdown
|
@@ -0,0 +1,14 @@
|
|
1
|
+
LICENSE
|
2
|
+
MANIFEST.in
|
3
|
+
README-CN.md
|
4
|
+
README.md
|
5
|
+
setup.cfg
|
6
|
+
setup.py
|
7
|
+
antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/PKG-INFO
|
8
|
+
antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/SOURCES.txt
|
9
|
+
antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/dependency_links.txt
|
10
|
+
antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/requires.txt
|
11
|
+
antchain_ak_d3c4f09125a14cd587057c405561809a.egg-info/top_level.txt
|
12
|
+
antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/__init__.py
|
13
|
+
antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/client.py
|
14
|
+
antchain_sdk_ak_d3c4f09125a14cd587057c405561809a/models.py
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
antchain_sdk_ak_d3c4f09125a14cd587057c405561809a
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '1.0.0'
|