August 16, 2021: Version 5 has been released. Read about the changes in version 5, or read the full documentation. Version 5 is for Python 3.8+ only. For earlier versions jump to the 4.x branch or read the documentation for version 4.
Process incoming JSON-RPC requests in Python.
from jsonrpcserver import Success, method, serve
@method
def ping():
return Success("pong")
if __name__ == "__main__":
serve()
Full documentation is at jsonrpcserver.com.
See also: jsonrpcclient