Gentent-websocket python WAMP client?

I am using gevent-websocket to record a WAMP server that supports rpc and pubsub well.

But is there any gevent-websocket help for writing a WAMP client?

I know there is an autobahn, but its API and size is the reason I am using gevent-websocket instead.

So, in general, the question is, is there an easy way to write a python WAMP client without using autobahn?

Thank!

+3


source to share


1 answer


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

from geventwebsocket.protocols.wamp import WampProtocol, export_rpc

      



There is a whole WAMP example at the github gevent-websocket.

0


source







All Articles