19 lines
396 B
Python
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())
|