August 16, 2021: Version 5 has been released. Read about the changes in v5, or jump to the full documentation for version 5. Version 5 is for Python 3.8+ only. For earlier versions jump to the 4.x branch and read the full 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
