Я запускаю очень простой c скрипт, как описано в документации по websockets (https://websockets.readthedocs.io/en/stable/intro.html), но я получаю сообщение об ошибке This event loop is aleady running
. Любые предложения, что я могу сделать?
#!/usr/bin/env python
# WS client example
import asyncio
import websockets
async def hello():
uri = "ws://localhost:8765"
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}")
asyncio.get_event_loop().run_until_complete(hello())