Metadata-Version: 2.0
Name: json-rpc-3
Version: 1.8.4
Summary: Pure Python 3 JSON-RPC 2.0 transport realisation
Home-page: https://github.com/Orhideous/json-rpc
Author: Orhideous
Author-email: orhideous@gmail.com
License: MIT
Keywords: json,rpc,json-rpc,transport
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules

json-rpc-3
==========

.. image:: https://travis-ci.org/Orhideous/json-rpc-3.png
    :target: https://travis-ci.org/Orhideous/json-rpc-3
    :alt: Build Status

.. image:: https://coveralls.io/repos/Orhideous/json-rpc-3/badge.png?branch=master
    :target: https://coveralls.io/r/Orhideous/json-rpc-3?branch=master
    :alt: Coverage Status

.. image:: https://pypip.in/v/json-rpc-3/badge.png
    :target: https://crate.io/packages/json-rpc-3
    :alt: Version

.. image:: https://pypip.in/d/json-rpc-3/badge.png
    :target: https://crate.io/packages/json-rpc-3
    :alt: Downloads

.. image:: https://pypip.in/format/json-rpc-3/badge.png
    :target: https://pypi.python.org/pypi/json-rpc-3/
    :alt: Download format

.. image:: https://pypip.in/license/json-rpc-3/badge.png
    :target: https://pypi.python.org/pypi/json-rpc-3/
    :alt: License


Pure Python 3 `JSON-RPC 2.0 <http://www.jsonrpc.org/specification>`_ transport specification implementation. Supports python3.2+.
Fork of `json-rpc <https://github.com/pavlov99/json-rpc>`_.

Documentation: http://json-rpc-3.readthedocs.org

This implementation does not have any transport functionality realization, only protocol.
Any client or server realization is easy based on current code, but requires transport libraries.

Install
-------

.. code-block:: python

    pip install json-rpc-3

Tests
-----

.. code-block:: python

    nosetests

Quickstart
----------

See `examples <https://github.com/Orhideous/json-rpc/tree/master/examples>`_.

