Skip to main content

A Python server implementaion of JSON-RPC 2.0 over HTTP

Project description

Rufmich

A Python server implementaion of JSON-RPC 2.0 over HTTP.

Introduction

rufmich implements the JSON-RPC 2.0 specification with a few minor changes:

  1. The transport protocol is HTTP.
  2. A notification request will get an immediate response. Usually the server will start the procedure and return the response immediately (without having to wait for the procedure to finish). And there is no callback for the procedure, which means the client would not be aware of any errors.
  3. Method namespacing is supported (and recommended).

Notification

Notification is implemented using threading. A method without id will be invoked in a new thread.

Batch

If multiple requests are sent in a batch, they will be processed concurrently by a thread pool.

User Guide

Installation

pip install rufmich

Define methods

Create a folder with following structure:

- <your_methods_workspace>
    - root
        root.py
        - <A>
            <A.py>
            - <B>
                <B.py>
        - <C>
            <C.py>

An example is:

- my_methods
    - root
        root.py
        - registration
            registration.py
            - by_email
                by_email.py

Note that there MUST BE a directory named root under your workspace folder.

Each namespace folder MUST HAVE a .py file with the same name as the folder. The methods defined in those .py files will be indexed according to the folder hierarchy.

Examples:

  1. A method foobar defined in root.py is indexed to "foobar" and "::foobar"
  2. A method send_code_to_email defined in by_email.py in the above example is indexed to "registration::by_email::send_code_to_email" (and "::registration::by_email::send_code_to_email")

Run

from rufmich.server import RMServer

server = RMServer(load_path=<your_methods_workspace>)
server.run(port=<port>)

Client examples

Check on the website of JSON-RPC 2.0 Specification.

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

rufmich-1.0.0.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

rufmich-1.0.0-py3-none-any.whl (17.0 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