Skip to main content

A collection of objects for use in JSON-RPC 2.0 implementations.

Project description

JSON-RPC 2.0 Objects

Code style: black License: MIT

A collection of objects for use in JSON-RPC 2.0 implementations.

Installation

pip install jsonrpc2-objects
poetry add jsonrpc2-objects

Objects

Available in objects are the following:

Object Description
RequestObjectParams Request with params
RequestObject Request without params
NotificationObjectParams Notification with params
NotificationObject Notification without params
ErrorResponseObject Response with result
ResultResponseObject Response with error

Errors

Python exceptions are available for each JSON-RPC 2.0 error. Each error extends JSONRPCError.

Example use with a client implementing these errors:

from jsonrpcobjects.errors import JSONRPCError, MethodNotFound

try:
    client.example_method(params)
except MethodNotFound:
    print("Handle method not found")
except JSONRPCError:
    print("Handle any JSON RPC error.")

Project details


Download files

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

Source Distribution

jsonrpc2_objects-2.0.12.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

jsonrpc2_objects-2.0.12-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

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