Metadata-Version: 1.1
Name: jsonrpc-base
Version: 1.1.0
Summary: A JSON-RPC client library base interface
Home-page: http://github.com/emlove/jsonrpc-base
Author: Emily Mills
Author-email: emily@emlove.me
License: BSD
Description: jsonrpc-base: a compact JSON-RPC client library interface supporting multiple backends
        =======================================================================================================
        
        .. image:: https://travis-ci.org/emlove/jsonrpc-base.svg
            :target: https://travis-ci.org/emlove/jsonrpc-base
        .. image:: https://coveralls.io/repos/emlove/jsonrpc-base/badge.svg
            :target: https://coveralls.io/r/emlove/jsonrpc-base
        
        This is a compact and simple JSON-RPC client implementation interface python code. This code is forked from https://github.com/gciotta/jsonrpc-requests
        
        Main Features
        -------------
        
        * Python 3.5, 3.6, 3.7 & 3.8 compatible
        * Supports nested namespaces (eg. `app.users.getUsers()`)
        * 100% test coverage
        
        Usage
        -----
        
        See `jsonrpc-async <https://github.com/emlove/jsonrpc-async>`_ and `jsonrpc-websocket <https://github.com/emlove/jsonrpc-websocket>`_ for example implementations.
        
        Tests
        -----
        Install the Python tox package and run ``tox``, it'll test this package with various versions of Python.
        
        Changelog
        ---------
        1.1.0 (August 24, 2020)
        ~~~~~~~~~~~~~~~~~~~~~~~
        - Support for async server request handlers
        
        1.0.3 (November 12, 2019)
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        - Forwards compatibility for Python 3.9. `(#4) <https://github.com/emlove/jsonrpc-base/pull/4>`_ `@ a1fred <https://github.com/a1fred>`_
        
        1.0.2 (August 23, 2018)
        ~~~~~~~~~~~~~~~~~~~~~~~
        - Improved support for JSON-RPC v1 servers. `(#2) <https://github.com/emlove/jsonrpc-base/pull/2>`_ `@tdivis <https://github.com/tdivis>`_
        
        1.0.1 (July 6, 2018)
        ~~~~~~~~~~~~~~~~~~~~
        - Falsey values are no longer treated as None for message IDs, or request parameters.
        
        Credits
        -------
        `@gciotta <https://github.com/gciotta>`_ for creating the base project `jsonrpc-requests <https://github.com/gciotta/jsonrpc-requests>`_.
        
        `@mbroadst <https://github.com/mbroadst>`_ for providing full support for nested method calls, JSON-RPC RFC
        compliance and other improvements.
        
        `@vaab <https://github.com/vaab>`_ for providing api and tests improvements, better RFC compliance.
        
Keywords: json-rpc base
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
