with websockets.connect(
'wss://stream.binance.com:9443/ws/btcusdt@trade/btcusdt@depth20/btcusdt@kline_1m') as websocket:
#name = input("What's your name? ")
#await websocket.send(name)
#print(f"> {name}")
greeting = await websocket.recv()
print(f"< {greeting}")
while True:
start_time = time.time()
asyncio.get_event_loop().run_until_complete(hello())
print("--- %s seconds ---" % (time.time() - start_time))
ЧЗХ?
ты прмиер вообще открывал?
async def hello(uri): async with websockets.connect(uri) as websocket: await websocket.send("Hello world!") await websocket.recv() asyncio.get_event_loop().run_until_complete( hello('ws://localhost:8765')) найди 10 отличий
стоп. У тебя клиент или сервер с вебсокетами?
Обсуждают сегодня