3

I'm using gevent-websocket to write an WAMP server, which supports rpc and pubsub nicely.

But is there any help in gevent-websocket to write a WAMP client?

I know there is autobahn, but its API and size is the reason that I use gevent-websocket instead.

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

Thanks!

Emile Cormier
  • 28,391
  • 15
  • 94
  • 122
Ralph Zhang
  • 5,015
  • 5
  • 30
  • 40

1 Answers1

0

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

from geventwebsocket.protocols.wamp import WampProtocol, export_rpc

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

eatmeimadanish
  • 3,809
  • 1
  • 14
  • 20