What is the current choice for doing RPC in Python? [closed] What is the current choice for doing RPC in Python? [closed] python python

What is the current choice for doing RPC in Python? [closed]


XML-RPC is part of the Python standard library:


Apache Thrift is a cross-language RPC option developed at Facebook. Works over sockets, function signatures are defined in text files in a language-independent way.


Since I've asked this question, I've started using python-symmetric-jsonrpc. It is quite good, can be used between python and non-python software and follow the JSON-RPC standard. But it lacks some examples.