Files
superxas_bec/time_pix_fly/websocket-client.py
2025-09-11 17:11:55 +02:00

19 lines
396 B
Python

#!/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())