kucoin-api 0.0.12__py3-none-any.whl → 0.0.13__py3-none-any.whl
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.
Potentially problematic release.
This version of kucoin-api might be problematic. Click here for more details.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kucoin_api
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.13
|
|
4
4
|
Summary: kucoin crypto exchange api client
|
|
5
5
|
Project-URL: Homepage, https://github.com/ccxt/ccxt
|
|
6
6
|
Project-URL: Issues, https://github.com/ccxt/ccxt
|
|
@@ -38,7 +38,7 @@ pip install kucoin-api
|
|
|
38
38
|
### Sync
|
|
39
39
|
|
|
40
40
|
```Python
|
|
41
|
-
from
|
|
41
|
+
from kucoin import KucoinSync
|
|
42
42
|
|
|
43
43
|
def main():
|
|
44
44
|
instance = KucoinSync({})
|
|
@@ -53,7 +53,7 @@ def main():
|
|
|
53
53
|
|
|
54
54
|
```Python
|
|
55
55
|
import asyncio
|
|
56
|
-
from
|
|
56
|
+
from kucoin import KucoinAsync
|
|
57
57
|
|
|
58
58
|
async def main():
|
|
59
59
|
instance = KucoinAsync({})
|
|
@@ -69,7 +69,7 @@ asyncio.run(main())
|
|
|
69
69
|
### Websockets
|
|
70
70
|
|
|
71
71
|
```Python
|
|
72
|
-
from
|
|
72
|
+
from kucoin import KucoinWs
|
|
73
73
|
|
|
74
74
|
async def main():
|
|
75
75
|
instance = KucoinWs({})
|
|
File without changes
|