Which RPC module works through SSH, telnet and HTTP?

Possible duplicate:
Which RPC module should I use to implement RCP in Python and can I change the connection method later?

I am looking for an RPC solution that can be used for different protocols such as SSH, telnet and HTTP.

It must be compatible with Python 2.5.

+4
source share
1 answer

You will probably have to minimize yourself, but most of the heavy lifting of the transport code can be done in other modules:

You still have to solve the problem of the data format, but it does not depend on the transport protocol (feel free to deliver XML-RPC or JSON or any other format for these transports).

+3
source

Source: https://habr.com/ru/post/1385331/


All Articles