Metadata-Version: 2.1
Name: jsonrpcclient
Version: 3.0.0rc2
Summary: Send JSON-RPC requests
Home-page: https://github.com/bcb/jsonrpcclient
Author: Beau Barker
Author-email: beauinmelbourne@gmail.com
License: MIT
Description: ![PyPI](https://img.shields.io/pypi/v/jsonrpcclient.svg)
        ![Coverage Status](https://coveralls.io/repos/github/bcb/jsonrpcclient/badge.svg?branch=master)
        
        # jsonrpcclient
        
        Send [JSON-RPC](http://www.jsonrpc.org/) requests in Python.
        
        ```sh
        pip install "jsonrpcclient[requests]"
        ```
        
        ```python
        from jsonrpcclient.clients import http_client
        http_client.request("http://cats.com", "speak")
        ```
        
        Full documentation is at [jsonrpcclient.readthedocs.io](https://jsonrpcclient.readthedocs.io/).
        
        ## Testing
        
        ```sh
        pip install "jsonrpcclient[unittest]"
        python -m unittest discover
        ```
        
        See also: [jsonrpcserver](https://github.com/bcb/jsonrpcserver)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: aiohttp
Provides-Extra: requests_security
Provides-Extra: websockets
Provides-Extra: requests
Provides-Extra: tornado
Provides-Extra: zmq
Provides-Extra: unittest
