gevent-websocket python WAMP客户端?

时间:2014-08-21 13:12:37

标签: python websocket gevent wamp-protocol

我正在使用gevent-websocket编写一个WAMP服务器,它很好地支持rpc和pubsub。

但是gevent-websocket有没有帮助编写WAMP客户端?

我知道有高速公路,但它的API和尺寸是我使用gevent-websocket的原因。

所以一般来说,问题是:有没有简单的方法来编写python WAMP客户端而不使用高速公路?

谢谢!

1 个答案:

答案 0 :(得分:0)

https://github.com/jgelens/gevent-websocket/tree/master/examples/wamp

from geventwebsocket.protocols.wamp import WampProtocol, export_rpc

gevent-websocket github中有一个完整的WAMP示例。