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

flowroute

 

 

Usage example:

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

Leave a Reply