Skip to content

Commit 46809db

Browse files
committed
feat(python): update sdk
1 parent c9188d6 commit 46809db

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The **KuCoin Universal SDK** is the official SDK provided by KuCoin, offering a
3838
### Python Installation
3939

4040
```bash
41-
pip install kucoin-universal-sdk==0.1.1a
41+
pip install kucoin-universal-sdk==0.1.1a1
4242
```
4343

4444
### Golang Installation
@@ -119,7 +119,7 @@ For other languages, refer to the [Examples](#-examples) section.
119119

120120
## 📚 Documentation
121121

122-
- Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs-new/doc-338144)
122+
- Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs-new)
123123
- **[Python Documentation](sdk/python/README.md)**
124124
- **[Go Documentation](sdk/golang/README.md)**
125125

sdk/golang/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Go SDK Documentation
2+
![License Badge](https://img.shields.io/badge/license-MIT-green)
3+
![Language](https://img.shields.io/badge/Go-blue)
4+
25
Welcome to the **Go** implementation of the KuCoin Universal SDK. This SDK is built based on KuCoin API specifications to provide a comprehensive and optimized interface for interacting with the KuCoin platform.
36

47
For an overview of the project and SDKs in other languages, refer to the [Main README](https://github.com/kucoin/kucoin-universal-sdk).
@@ -79,7 +82,7 @@ func example() {
7982
}
8083
```
8184
## 📚 Documentation
82-
Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs)
85+
Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs-new)
8386

8487
## 📂 Examples
8588

sdk/python/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Python SDK Documentation
2+
![License Badge](https://img.shields.io/badge/license-MIT-green)
3+
![Language](https://img.shields.io/badge/Python-blue)
4+
25
Welcome to the **Python** implementation of the KuCoin Universal SDK. This SDK is built based on KuCoin API specifications to provide a comprehensive and optimized interface for interacting with the KuCoin platform.
36

47
For an overview of the project and SDKs in other languages, refer to the [Main README](https://github.com/kucoin/kucoin-universal-sdk).
@@ -9,7 +12,7 @@ For an overview of the project and SDKs in other languages, refer to the [Main R
912
Install the Python SDK using `pip`:
1013

1114
```bash
12-
pip install kucoin-universal-sdk==0.1.1a
15+
pip install kucoin-universal-sdk==0.1.1a1
1316
```
1417

1518
## 📖 Getting Started
@@ -80,7 +83,7 @@ if __name__ == "__main__":
8083

8184
```
8285
## 📚 Documentation
83-
Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs)
86+
Official Documentation: [KuCoin API Docs](https://www.kucoin.com/docs-new)
8487

8588
## 📂 Examples
8689

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="kucoin-universal-sdk",
5-
version="0.1.1a",
5+
version="0.1.1a1",
66
description="Official KuCoin Universal SDK",
77
author="KuCoin",
88
author_email="api@kucoin.com",

0 commit comments

Comments
 (0)