Metadata-Version: 2.1
Name: jsonrpcserver
Version: 4.0.0rc2
Summary: Process JSON-RPC requests
Home-page: https://github.com/bcb/jsonrpcserver
Author: Beau Barker
Author-email: beauinmelbourne@gmail.com
License: MIT
Description: ![PyPI](https://img.shields.io/pypi/v/jsonrpcserver.svg)
        ![Coverage Status](https://coveralls.io/repos/github/bcb/jsonrpcserver/badge.svg?branch=master)
        
        # jsonrpcserver
        
        Process [JSON-RPC](http://www.jsonrpc.org/) requests in Python.
        
        ```python
        from jsonrpcserver import method, serve
        
        @method
        def ping():
            return "pong"
        
        if __name__ == "__main__":
            serve()
        ```
        
        Full documentation is at [jsonrpcserver.readthedocs.io](https://jsonrpcserver.readthedocs.io/).
        
        ## Testing
        
        ```sh
        pip install pytest
        pytest
        ```
        
        See also: [jsonrpcclient](https://github.com/bcb/jsonrpcclient)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: examples
Provides-Extra: tox
