发布时间:2019-09-25 08:19:08编辑:auto阅读(2676)
安装
sudo pip install websocket-client
示例客户端代码:
#!/usr/bin/python
from websocket import create_connection
ws = create_connection("ws://localhost:8080/websocket")
print "Sending 'Hello, World'..."
ws.send("Hello, World")
print "Sent"
print "Reeiving..."
result = ws.recv()
print "Received '%s'" % result
ws.close()
上一篇: 初学python书籍推荐
下一篇: 在linux环境下退出python命令模
51693
51348
41786
38559
33031
30057
28719
23709
23633
21997
2196°
2889°
2406°
2352°
2920°
2356°
3153°
5189°
5008°
3580°