Source code

Revision control

Copy as Markdown

Other Tools

#!/usr/bin/env python
import asyncio
import websockets
async def hello():
async with websockets.connect(uri) as websocket:
name = input("What's your name? ")
await websocket.send(name)
print(f">>> {name}")
greeting = await websocket.recv()
print(f"<<< {greeting}")
if __name__ == "__main__":
asyncio.run(hello())