wip websocket refactoring

This commit is contained in:
2025-06-17 08:22:34 +02:00
parent 714a038cd9
commit f0af312fc9
3 changed files with 97 additions and 65 deletions
+18
View File
@@ -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())