Metadata-Version: 1.1
Name: jsonrpclient
Version: 0.1
Summary: A JSON-RPC client in Python
Home-page: https://github.com/jacexh/jsonrpclient
Author: Jace Xu
Author-email: jace@xuh.me
License: MIT
Description: jsonrpclient
        ============
        
        Example
        -------
        
        ::
        
            >>> from jsonrpclient import JsonRPCClient
            >>> client = JsonRPCClient("http://localhost:4000")
            >>> client.echo("hello world")
            {u'jsonrpc': u'2.0', u'result': u'hello world', u'id': 1}
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
