What is the current choice for doing RPC in Python?
- by edomaur
Actually, I've done some work with Pyro and RPyC, but there is more RPC implementation than these two. Can we make a list of them?
Native Python-based protocols:
PyRo (Python Remote Objects)
RPyC (Remote Python Call)
Circuits
JSON-RPC based frameworks:
python-symmetric-jsonrpc
rpcbd
XML-RPC based frameworks:
XMLRPC, using the xmlrpclib and SimpleXMLRPCServer modules in the standard library.
Others?
Twisted Spread