私はこのプロジェクトを見つけました: http://code.google.com/p/standalonewebsocketserver/ WebSocketサーバー用ですが、PythonでWebSocketクライアントを実装する必要があり、より正確にはいくつかのコマンドを受け取る必要がありますWebSocketサーバーのXMPPから。
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 __== "__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()
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 __== '__main__':
factory = WebSocketClientFactory("ws://localhost:9000")
factory.protocol = EchoClientProtocol
connectWS(factory)
reactor.run()
私は最近その分野で少し研究をしているので(12年1月)、最も有望なクライアントは実際には: WebSocket for Python です。このように呼び出すことができる通常のソケットをサポートします:
ws = EchoClient('http://localhost:9000/ws')
client
はThreaded
にすることも、 Tornado プロジェクトのIOLoop
に基づいて指定することもできます。これにより、複数の同時接続クライアントを作成できます。ストレステストを実行する場合に便利です。
クライアントは、onmessage
、opened
、およびclosed
メソッドも公開します。 (WebSocketスタイル)。
web2pyにはcomet_messaging.pyがあり、websocketにTornadoを使用しています。ここで例を見てください: http://vimeo.com/18399381 そしてここでvimeo。 com/18232653