You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The **KuCoin Universal SDK** is the official SDK provided by KuCoin, offering a unified and seamless interface for accessing KuCoin's trading platform. Built using code generation technology, it ensures consistency and rapid updates across multiple programming languages, simplifying integration with consistent APIs.
7
7
@@ -32,9 +32,9 @@ The **KuCoin Universal SDK** is the official SDK provided by KuCoin, offering a
32
32
33
33
## 🛠️ Installation
34
34
35
-
### Latest Version: `1.1.0`(Global API version)
35
+
### Latest Version: `1.2.0`(Global API version)
36
36
37
-
### Python Installation(`1.1.1`)
37
+
### Python Installation
38
38
39
39
```bash
40
40
pip install kucoin-universal-sdk
@@ -47,8 +47,7 @@ go get github.com/Kucoin/kucoin-universal-sdk/sdk/golang
47
47
go mod tidy
48
48
```
49
49
50
-
### Node.js Installation (`0.1.1-alpha`)
51
-
Note: This SDK is currently in the Alpha phase. We are actively iterating and improving its features, stability, and documentation. Feedback and contributions are highly encouraged to help us refine the SDK.
50
+
### Node.js Installation
52
51
```bash
53
52
npm install kucoin-universal-sdk
54
53
```
@@ -64,12 +63,12 @@ Here's a quick example to get you started with the SDK in **Python**.
64
63
import logging
65
64
import os
66
65
67
-
from kucoin_universal_sdk.api.clientimport DefaultClient
68
-
from kucoin_universal_sdk.generate.spot.market.model_get_part_order_book_reqimport GetPartOrderBookReqBuilder
69
-
from kucoin_universal_sdk.model.client_optionimport ClientOptionBuilder
70
-
from kucoin_universal_sdk.model.constantsimportGLOBAL_API_ENDPOINT, GLOBAL_FUTURES_API_ENDPOINT, \
66
+
from kucoin_universal_sdk.api import DefaultClient
67
+
from kucoin_universal_sdk.generate.spot.market import GetPartOrderBookReqBuilder
68
+
from kucoin_universal_sdk.model import ClientOptionBuilder
69
+
from kucoin_universal_sdk.model importGLOBAL_API_ENDPOINT, GLOBAL_FUTURES_API_ENDPOINT, \
71
70
GLOBAL_BROKER_API_ENDPOINT
72
-
from kucoin_universal_sdk.model.transport_optionimport TransportOptionBuilder
71
+
from kucoin_universal_sdk.model import TransportOptionBuilder
0 commit comments