是否为python实现了WebSocket客户端?

时间:2010-06-29 16:28:55

标签: python client-server xmpp websocket

我发现这个项目:http://code.google.com/p/standalonewebsocketserver/用于websocket服务器,但我需要在python中实现一个websocket客户端,更确切地说,我需要从我的websocket服务器中的xmpp接收一些命令。

5 个答案:

答案 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。这将允许您创建多并发连接客户端。如果你想进行压力测试,这很有用。

客户端还公开了onmessageopenedclosed方法。 (WebSocket风格)。

答案 3 :(得分:0)

  1. 查看http://code.google.com/p/pywebsocket/这是一个Google项目下的echo客户端。
  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套接字。他的博客文章:Web Sockets in Tornado和客户端实施API显示在客户端支持部分的tornado.websocket

答案 4 :(得分:0)

web2py有comet_messaging.py,它使用Tornado for websockets查看示例:http://vimeo.com/18399381和vimeo。 com / 18232653