1 Star 0 Fork 0

Jabenwang/websocket-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nexgocli.py 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
wangjiabin 提交于 2018-07-06 15:09 . first commit
#!/usr/bin/env python3
# coding=utf-8
import websocket
#try:
# import thread
#except ImportError:
# import _thread as thread
#import time
def on_message(ws, message):
print(message)
def on_error(ws, error):
print(error)
def on_close(ws):
print("### closed ###")
def on_open(ws):
#print("open succese!" )
ws.send("hello bingo")
#def run(*args):
# for i in range(3):
# time.sleep(1)
# ws.send("Hello %d" % i)
# time.sleep(1)
# ws.close()
# print("thread terminating...")
# thread.start_new_thread(run, ())
def web_test_thread(url):
#websocket.enableTrace(True)
ws = websocket.WebSocketApp(url,
#"ws://echo.websocket.org/",
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.on_open = on_open
ws.run_forever()
return 0
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("wss://www.nexbang.cn/smarthome/websocket",
#"ws://echo.websocket.org/",
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.on_open = on_open
ws.run_forever()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/catlove/websocket-test.git
git@gitee.com:catlove/websocket-test.git
catlove
websocket-test
websocket-test
master

搜索帮助