I need to implement some RPC from Python to Python, but the connection methods are pretty limited for security reasons.
Currently it seems that I can connect using SSH
and run a single python script on the remote system.
This may change in the future, when we may have to connect using something else, perhaps telnet
, so I would like the solution to work using different protocols.
Another potential limitation concerns the version of Python, it should work with Python 2.5-2.7, even if the client and server work with different versions.
What should I use, please offer only if you had a successful experience, otherwise I can google too;)
sorin source share