jsonrpcclient ************* Send `JSON-RPC `__ requests in Python 2.7 and 3.3+. .. sourcecode:: sh $ pip install jsonrpcclient requests .. sourcecode:: python >>> from jsonrpcclient.http_client import HTTPClient >>> HTTPClient('http://cats.com/').request('speak') --> {"jsonrpc": "2.0", "method": "speak", "id": 1} <-- {"jsonrpc": "2.0", "result": "meow", "id": 1} 'meow' For advanced usage and configuration, see the :doc:`api`. Contribute on `Github `_. See also: `jsonrpcserver.readthedocs.io `_