#https://techhelpnotes.com/what-is-the-current-choice-for-doing-rpc-in-python/
Explore tagged Tumblr posts
Text
What is the current choice for doing RPC in Python
XML-RPC is part of the Python standard library:
Python 2: xmlrpclib and SimpleXMLRPCServer
Python 3: xmlrpc (both client and server)
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.
0 notes