Home

Awesome

jsonrpc-ns

Description

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

Installation

Prerequisites:

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.