forked from bmoscon/cryptofeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsockets_test.py
37 lines (27 loc) · 1 KB
/
websockets_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import argparse
import asyncio
import zlib
import websockets
parser = argparse.ArgumentParser()
parser.add_argument('--uri', default='wss://api.huobi.pro/ws', help='URI to connect to')
parser.add_argument('--sub', default='{"sub": "market.btcusdt.trade.detail", "id": 4}', help='Subscription string')
parser.add_argument('--count', default=3, type=int, help='Number of messages to receive before exiting')
parser.add_argument('-z', action='store_true', help='Use gzip on messages')
args = parser.parse_args()
uri = args.uri
sub = args.sub
is_gzip = args.z
count = args.count
print(uri)
print(sub)
async def main():
async with websockets.connect(uri) as websocket:
await websocket.send(sub)
print(f"> {sub}")
for i in range(count):
response = await websocket.recv()
if not is_gzip:
print(f"< {response}")
else:
print(f"< {zlib.decompress(response, 16 + zlib.MAX_WBITS)}")
asyncio.get_event_loop().run_until_complete(main())