Search code examples
pythonrpc

What RPC module works over SSH, telnet and HTTP?


Possible Duplicate:
What RPC module should I use to implement RCP in Python and be able to change connection method later?

I am looking for RPC solution that can be used over different protocols like SSH, telnet and HTTP.

It has to be Python 2.5 compatible.


Solution

  • You're likely going to have to roll your own, but much of the heavy lifting in transport code could be done in other modules:

    You'll still have to address the issue of data format, but that is independent of transport protocol (feel free to deliver XML-RPC or JSON or any other format over these transports).