[Tutor] run local script on a remote machine

Steven D'Aprano steve at pearwood.info
Fri Oct 28 22:10:44 EDT 2016


If you're trying to do remote command execution, you should forget about 
rolling your own, and use a well-established RPC solution.

I can recommend either of pyro or rpyc:

https://pypi.python.org/pypi/Pyro4
https://pypi.python.org/pypi/rpyc


If you need a standard library solution, you can try:

https://docs.python.org/3/library/xmlrpc.html




-- 
Steve


More information about the Tutor mailing list