wip websocket refactoring
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""Client using the asyncio API."""
|
||||
|
||||
import asyncio
|
||||
from websockets.asyncio.client import connect
|
||||
|
||||
|
||||
async def hello():
|
||||
async with connect("ws://localhost:8452/ws") as websocket:
|
||||
await websocket.send("Hello world!")
|
||||
while True:
|
||||
message = await websocket.recv()
|
||||
print(message)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(hello())
|
||||
Reference in New Issue
Block a user