We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d3d1b commit a773370Copy full SHA for a773370
main.py
@@ -10,7 +10,8 @@
10
11
12
async def main_stream():
13
- client = APIClient() # Initialize the API client
+ initials="AB"
14
+ client = APIClient(initials=initials) # Initialize the API client
15
stream_client = StreamClient(client)
16
await stream_client.start() # Start and connect
17
@@ -36,7 +37,8 @@ async def main_stream():
36
37
38
39
def main():
40
41
42
accounts_api = Accounts(client)
43
orders_api = Orders(client)
44
0 commit comments