File tree Expand file tree Collapse file tree 2 files changed +3
-65
lines changed
Expand file tree Collapse file tree 2 files changed +3
-65
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ pip install __PYTHON_PACKAGE_NAME__
1919### Sync
2020
2121``` Python
22- from __PYTHON_PACKAGE_KEY__ import __ExchangeName__Sync
22+ from __exchangeName__ import __ExchangeName__Sync
2323
2424def main ():
2525 instance = __ExchangeName__Sync({})
@@ -34,7 +34,7 @@ def main():
3434
3535``` Python
3636import asyncio
37- from __PYTHON_PACKAGE_KEY__ import __ExchangeName__Async
37+ from __exchangeName__ import __ExchangeName__Async
3838
3939async def main ():
4040 instance = __ExchangeName__Async({})
@@ -50,7 +50,7 @@ asyncio.run(main())
5050### Websockets
5151
5252``` Python
53- from __PYTHON_PACKAGE_KEY__ import __ExchangeName__Ws
53+ from __exchangeName__ import __ExchangeName__Ws
5454
5555async def main ():
5656 instance = __ExchangeName__Ws({})
You can’t perform that action at this time.
0 commit comments