Metadata-Version: 1.1
Name: jsonrpcclient
Version: 2.4.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_client import HTTPClient
            >>> HTTPClient('http://cats.com/').request('speak')
        
        .. sourcecode:: sh
        
            --> {"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/>`__.
        
        See also: `jsonrpcserver <https://github.com/bcb/jsonrpcserver>`__
        
        
        2.4.1 (Oct 6, 2016)
        ~~~~~~~~~~~~~~~~~~~
        
        - Fix response log prefix
        
        2.4.0 (Oct 5, 2016)
        ~~~~~~~~~~~~~~~~~~~
        
        - Add asychronous Zeromq client, see `blog post
          <https://bcb.github.io/jsonrpc/zeromq-async>`__
        
        2.3.0 (Sep 28, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Support websockets and aiohttp
        
        2.2.4 (Sep 19, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Internal refactoring, to make it easier to add clients.
        
        2.2.3 (Sep 13, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Rename "server" modules and classes to "client". The old names are
          deprecated.
        
        2.2.2 (Sep 12, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Don't disable log propagate
        
        2.2.1 (Sep 12, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Bugfix logging configuration
        
        2.2.0 (Sep 12, 2016)
        ~~~~~~~~~~~~~~~~~~~~
        
        - Support Tornado adapter
        - Improve logging 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
Classifier: Programming Language :: Python :: 3.6
