Better ping/pong support

This commit is contained in:
Benjamin Sergeant
2018-10-25 12:01:47 -07:00
parent 45f92115f9
commit eae2f7d113
10 changed files with 276 additions and 10 deletions

View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
import asyncio
import websockets
async def echo(websocket, path):
async for message in websocket:
print(message)
await websocket.send(message)
asyncio.get_event_loop().run_until_complete(
websockets.serve(echo, 'localhost', 5678))
asyncio.get_event_loop().run_forever()