Metadata-Version: 1.1
Name: jsonrpcclient
Version: 2.2.1
Summary: Send JSON-RPC requests
Home-page: https://jsonrpcclient.readthedocs.io/
Author: Beau Barker
Author-email: beauinmelbourne@gmail.com
License: MIT
Description: jsonrpcclient
        *************
        
        Send `JSON-RPC <http://www.jsonrpc.org/>`__ requests in Python 2.7 and 3.3+.
        
        .. sourcecode:: python
        
            >>> from jsonrpcclient.http_server import HTTPServer
            >>> HTTPServer('http://cats.com/').request('speak')
            --> {"jsonrpc": "2.0", "method": "speak", "id": 1}
            <-- {"jsonrpc": "2.0", "result": "meow", "id": 1}
            'meow'
        
        Full documentation is at `jsonrpcclient.readthedocs.io
        <https://jsonrpcclient.readthedocs.io/>`__.
        
        
        2.2.1 (Sep 12, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Bugfix logging configuration
        
        2.2.0 (Sep 12, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Support Tornado adapter
        - Improve logging configuration
        
        2.1.3 (Aug 10, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Simpler configuration of the id part of requests
        
        2.1.2 (Aug 8, 2016)
        ~~~~~~~~~~~~~~~~~~~
        
        - Fixed a bug when logging http requests.
        - Create default log handlers if user hasn't configured any.
        
        2.1.1 (Jul 22, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - More flexible configuration of requests in `HTTPServer
          <https://jsonrpcclient.readthedocs.io/en/latest/http.html#configuration>`_.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
