jsonrpc-ns

Lightweight JSON-RPC 2.0 library for building TCP (Netstring) clients


License
Other
Install
pip install jsonrpc-ns==0.5

Documentation

jsonrpc-ns

Description

jsonrpc-ns is a Lightweight JSON-RPC 2.0 library for building TCP (Netstring) clients.

Installation

Prerequisites:

  • Python (Tested on 2.7)

Usage

from jsonrpc_ns import JSONRPCProxy
jsonrpc = JSONRPCProxy('some.jsonrpc.server.internal', 7080)
jsonrpc.request('request_method', {'some': 'data'})
jsonrpc.notify('notify_method', {'more': 'data'})

Tests

pip install nose
nosetests tests.py

See Also

txjason for building high concurrency servers and clients on top of Twisted Python.