我发现这个项目:http://code.google.com/p/standalonewebsocketserver/用于websocket服务器,但我需要在python中实现一个websocket客户端,更确切地说,我需要从我的websocket服务器中的xmpp接收一些命令。
答案 0 :(得分:143)
http://pypi.python.org/pypi/websocket-client/
非常容易使用。
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()
示例服务器代码:
#!/usr/bin/python
import websocket
import 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):
def run(*args):
for i in range(30000):
time.sleep(1)
ws.send("Hello %d" % i)
time.sleep(1)
ws.close()
print "thread terminating..."
thread.start_new_thread(run, ())
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("ws://echo.websocket.org/",
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.on_open = on_open
ws.run_forever()
答案 1 :(得分:18)
Autobahn为Python提供了很好的websocket客户端实现以及一些很好的例子。我使用Tornado WebSocket服务器测试了以下内容,但它确实有用。
from twisted.internet import reactor
from autobahn.websocket import WebSocketClientFactory, WebSocketClientProtocol, connectWS
class EchoClientProtocol(WebSocketClientProtocol):
def sendHello(self):
self.sendMessage("Hello, world!")
def onOpen(self):
self.sendHello()
def onMessage(self, msg, binary):
print "Got echo: " + msg
reactor.callLater(1, self.sendHello)
if __name__ == '__main__':
factory = WebSocketClientFactory("ws://localhost:9000")
factory.protocol = EchoClientProtocol
connectWS(factory)
reactor.run()
答案 2 :(得分:10)
由于我最近在该领域进行了一些研究(1月,12年),最有希望的客户实际上是:WebSocket for Python。它支持一个普通的套接字,你可以这样调用:
ws = EchoClient('http://localhost:9000/ws')
client
可以是Threaded
,也可以基于Tornado项目的IOLoop
。这将允许您创建多并发连接客户端。如果你想进行压力测试,这很有用。
客户端还公开了onmessage
,opened
和closed
方法。 (WebSocket风格)。
答案 3 :(得分:0)
答案 4 :(得分:0)
web2py有comet_messaging.py,它使用Tornado for websockets查看示例:http://vimeo.com/18399381和vimeo。 com / 18232653