Lomond Websockets的威胁版本

时间:2018-09-01 01:10:03

标签: python websocket python-multithreading

我喜欢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))

0 个答案:

没有答案