web-dev-qa-db-ja.com

Python用に実装されたWebSocketクライアントはありますか?

私はこのプロジェクトを見つけました: http://code.google.com/p/standalonewebsocketserver/ WebSocketサーバー用ですが、PythonでWebSocketクライアントを実装する必要があり、より正確にはいくつかのコマンドを受け取る必要がありますWebSocketサーバーのXMPPから。

90
diegueus9

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()
149
Bryan Hunt

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()
19
chrisallick

私は最近その分野で少し研究をしているので(12年1月)、最も有望なクライアントは実際には: WebSocket for Python です。このように呼び出すことができる通常のソケットをサポートします:

ws = EchoClient('http://localhost:9000/ws')

clientThreadedにすることも、 Tornado プロジェクトのIOLoopに基づいて指定することもできます。これにより、複数の同時接続クライアントを作成できます。ストレステストを実行する場合に便利です。

クライアントは、onmessageopened、およびclosedメソッドも公開します。 (WebSocketスタイル)。

10
kiddouk
  1. http://code.google.com/p/pywebsocket/ のエコークライアントを見てください。これはGoogleプロジェクトです。
  2. Githubでの適切な検索は次のとおりです。 https://github.com/search?type=Everything&language=python&q=websocket&repo=&langOverride=&x=14&y=29&start_value=1 クライアントとサーバーを返します。
  3. Bret Taylorは、Tornado(Python)上にWebソケットも実装しました。彼のブログ投稿: TornadoのWebソケット およびクライアント実装APIは、クライアント側サポートセクションの tornado.websocket に示されています。
0
sw.

web2pyにはcomet_messaging.pyがあり、websocketにTornadoを使用しています。ここで例を見てください: http://vimeo.com/18399381 そしてここでvimeo。 com/18232653