Metadata-Version: 1.1
Name: jsonrpcclient
Version: 1.1.7
Summary: JSON-RPC client library.
Home-page: https://jsonrpcclient.readthedocs.org/
Author: Beau Barker
Author-email: beauinmelbourne@gmail.com
License: UNKNOWN
Description: jsonrpcclient
        =============
        
        .. image:: https://pypip.in/v/jsonrpcclient/badge.png
        .. image:: https://pypip.in/d/jsonrpcclient/badge.png
        
        Make `remote procedure calls
        <http://en.wikipedia.org/wiki/Remote_procedure_call>`_ with `JSON-RPC
        <http://www.jsonrpc.org/>`_.
        
        Simply set the server details, then make a request:
        
        .. sourcecode:: python
        
            >>> s = Server('http://example.com/api')
            >>> s.request('add', 2, 3)
            5
        
        Full documentation is available at https://jsonrpcclient.readthedocs.org/.
        
        
        Release History
        ---------------
        
        1.1.7 (2015-05-20)
        ^^^^^^^^^^^^^^^^^^
        
        - Include the server endpoint in log entries.
        
        1.1.6 (2015-05-09)
        ^^^^^^^^^^^^^^^^^^
        
        - Documentation changes.
        
        1.1.5 (2015-05-09)
        ^^^^^^^^^^^^^^^^^^
        
        - Removed Non2xxResponse error which served no real purpose.
        
        1.1.4 (2015-05-09)
        ^^^^^^^^^^^^^^^^^^
        
        - Non200Response error replaced with Non2xxResponse.
        - Logging fixed - see the documentation for changes.
        
        1.1.3 (2015-03-30)
        ^^^^^^^^^^^^^^^^^^
        
        - Minor adjustments for compatibility with older Python versions.
        
        1.1.2 (2015-02-06)
        ^^^^^^^^^^^^^^^^^^
        
        - Bugfix - HTTP headers were often incorrect due to quirks in the requests
          module. Now using a different method to set the headers.
        
        1.1.1 (2015-01-16)
        ^^^^^^^^^^^^^^^^^^
        
        - More features available when communicating with the server, such as setting a
          timeout on requests, ssl verification, cookies etc.
        
        - Now compatible with older Python versions.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
