我喜欢lomond库,但是文档中的示例正在阻塞,并且使线程混乱。 我需要的是websocket表现为非阻塞,因此我可以在后台运行一个或多个lomond websocket的同时运行程序。 谁能帮助我提出想法,或者希望我提供一个小示例代码?
基本上,我的网络套接字是这样的:
from lomond.websocket import WebSocket
ws = WebSocket('wss://echo.websocket.org')
for event in ws:
if event.name == "ready":
print("connected")
if event.name == "text":
print(str(text))