Metadata-Version: 2.0
Name: py-jsonrpc-lite
Version: 0.1
Summary: Parse and Serialize JSON-RPC 2.0 messages in Python
Home-page: https://github.com/r3code/py-jsonrpc-lite
Author: Dmitriy S. Sinyavskiy
Author-email: contact@r3code.ru
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules

﻿py-jsonrpc-lite
===============

.. image:: https://travis-ci.org/r3code/py-jsonrpc-lite.svg?branch=master
    :target: https://travis-ci.org/r3code/py-jsonrpc-lite
    :alt: Build Status

.. image:: https://codecov.io/gh/r3code/py-jsonrpc-lite/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/r3code/py-jsonrpc-lite
    :alt: Coverage Status 

.. image:: https://api.codacy.com/project/badge/Grade/acf5dba2b46242a1a85d171f884f3993
    :target: https://www.codacy.com/app/r3code/py-jsonrpc-lite  
    :alt: Code Quality Status

Inspired by https://www.npmjs.com/package/jsonrpc-lite

A implementation of py-jsonrpc-lite 2.0 specifications <http://www.jsonrpc.org/specification>

This implementation does not have any transport functionality realization, only protocol.

#todo: Documentation: http://py-jsonrpc-lite.readthedocs.org

Install
-------

pip install py-jsonrpc-lite

Tests
-----

python -m unittest discover -s "tests" -p "test*.py"

Features
--------

- Vanilla python, no dependencies
- JSON-RPC 2.0 support

Testing
-------
py-jsonrpc-lite is a python library, it supports pythons:  2.7. 

