Archived
16 lines
289 B
Python
16 lines
289 B
Python
import asyncio
|
|
from websockets.server import serve
|
|
|
|
|
|
async def echo(websocket):
|
|
async for message in websocket:
|
|
await websocket.send(message)
|
|
|
|
|
|
async def main():
|
|
async with serve(echo, "localhost", 8765):
|
|
await asyncio.Future() # run forever
|
|
|
|
|
|
asyncio.run(main())
|