Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 672 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 672 Bytes

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.