Skip to main content

JSON-RPC 2.0 client library for Python 3

Project description

JSON-RPC 2.0 client library for Python 3.

To make a remote procedure call:

  1. Set the server address

  2. Use request() to call the remote method

>>> import jsonrpcclient
>>> server = jsonrpcclient.Server('http://endpoint/')
>>> server.request('add', 2, 3)
--> {"jsonrpc": "2.0", "method": "add", "params": [2, 3], "id": 1}
<-- {"jsonrpc": "2.0", "result": 5, "id": 1}
5

The first argument to request() is the method name; everything else is passed as parameters. You can pass any number of positional or keyword arguments, and they will be translated into JSON-RPC.

>>> server.request('find', 42, name='Foo')
--> {"jsonrpc": "2.0", "method": "find", "params": [42, {"name": "Foo"}], "id": 1}
<-- {"jsonrpc": "2.0", "result": "Bar", "id": 1}
Bar

If you don’t need any data returned, use notify() instead:

>>> server.notify('go')
--> {"jsonrpc": "2.0", "method": "go"}
<-- 200 OK

Shorthand

There’s another way to send messages:

>>> server.add(2, 3, response=True)
--> {"jsonrpc": "2.0", "method": "add", "params": [2, 3], "id": 1}
<-- {"jsonrpc": "2.0", "result": 5, "id": 1}
5

The library catches the undefined add() call, and sends it as a JSON-RPC message.

response=True tells the server you’re expecting a response; without that it’s a notification.

Exceptions

You should catch RPCClientException. This will be raised in the event of connection problems, or if the server responded with a JSON-RPC error response.

try:
    server.go()
except jsonrpcclient.exceptions.RPCClientException as e:
    print(str(e))

Logging

If you don’t want to see the underlying JSON messages, increase the logging level above DEBUG:

logging.getLogger('jsonrpcclient').setLevel(logging.INFO)

If you need a server, try my jsonrpcserver library.

Changelog

1.0.6 - 2014-11-11
  • Fixed installer

1.0.5 - 2014-11-10
  • Better logging.

1.0.4 - 2014-11-10
  • “Proxy” class renamed to “Server”.

  • Logging improved.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsonrpcclient-1.0.6.tar.gz (6.2 kB view details)

Uploaded Source

File details

Details for the file jsonrpcclient-1.0.6.tar.gz.

File metadata

  • Download URL: jsonrpcclient-1.0.6.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jsonrpcclient-1.0.6.tar.gz
Algorithm Hash digest
SHA256 52c5ddbaffa7219ebbff456654b36048b7b4cef019549d807c7633ec0facd7f0
MD5 5b2e78b52c7a6ed7407c34fe538ca7b6
BLAKE2b-256 8fda522be9c893fd91f5ee395d2f1775887ab2d873d5fba43a908e7b23f80100

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page