Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 454 Bytes

installation.md

File metadata and controls

29 lines (21 loc) · 454 Bytes

Quickstart

Create a server.py:

from jsonrpcserver import Success, method, serve

@method
def ping():
    return Success("pong")

if __name__ == "__main__":
    serve()

Start the server:

$ pip install jsonrpcserver
$ python server.py
 * Listening on port 5000

Test the server:

$ curl -X POST http://localhost:5000 -d '{"jsonrpc": "2.0", "method": "ping", "id": 1}'
{"jsonrpc": "2.0", "result": "pong", "id": 1}