jsonrpcclient

jsonrpcclient Examples

Showing how to send JSON-RPC requests using various frameworks and transport protocols.

Synchronous

Requests

$ pip install "jsonrpcclient[requests]"

ZeroMQ

$ pip install 'jsonrpcclient[pyzmq]'

See blog post.

Asynchronous

These require Python 3.5+.

aiohttp

$ pip install 'jsonrpcclient[aiohttp]'

See blog post.

Tornado

$ pip install 'jsonrpcclient[tornado]'

Websockets

$ pip install 'jsonrpcclient[websockets]'

See blog post.