Skip to main content

Simple and powerful RPC server for your Django project

Project description

django-modern-rpc

Tests Documentation Status Downloads Link to demo

Embed an XML-RPC / JSON-RPC server in your Django project!

Main features

  • XML-RPC and JSON-RPC 2.0 support (JSON-RPC 1.0 is NOT supported)
  • Custom authentication process
  • Custom error handling
  • Sync and async procedures
  • Multiple servers
  • Customizable XML / JSON backends with builtin support for orjson, ujson, rapidjson, lxml, etree, etc.

Requirements

The following Django / Python versions are supported, according to Django Installation FAQ

Python ➞ 3.10 3.11 3.12 3.13 3.14
Django 4.2 🟢 🟢 🟢 🔴 🔴
Django 5.0 🟢 🟢 🟢 🔴 🔴
Django 5.1 🟢 🟢 🟢 🟢 🔴
Django 5.2 🟢 🟢 🟢 🟢 🟢
Django 6.0 🔴 🔴 🟢 🟢 🟢

To enforce security, defusedxml will be installed as a dependency.

Quickstart

Install django-modern-rpc in your environment

pip install django-modern-rpc

Create an RpcServer instance and register your first procedure, in myapp/rpc.py

from modernrpc.server import RpcServer

server = RpcServer()

@server.register_procedure
def add(a: int, b: int) -> int:
    """Add two numbers and return the result.

    :param a: First number
    :param b: Second number
    :return: Sum of a and b
    """
    return a + b

Configure a path to allow RPC clients calling your procedures, in urls.py

from django.urls import path
from myapp.rpc import server

urlpatterns = [
    # ... other url patterns
    path('rpc/', server.view),  # Synchronous view
    # Alternatively, you can use the asynchronous view:
    # path('rpc/', server.async_view),
]

The server's view is already configured with CSRF exemption and POST-only restrictions.

Code quality

The project uses nox as a task runner to launch tests suite against all supported Python / Django combinations and generate a coverage report file. Ruff is used to lint and format the codebase, and mypy is used to perform type checking.

All these tools are automatically run in various GitHub Actions workflows, and external tools are used to perform static code analysis and collect coverage results.

SonarQube

Sonar Coverage Sonar Quality Gate Sonar Tech Debt Sonar Violations

Codacy

Codacy Coverage Codacy Grade

Coveralls

Coveralls

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

django_modern_rpc-2.1.0.tar.gz (30.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_modern_rpc-2.1.0-py3-none-any.whl (43.4 kB view details)

Uploaded Python 3

File details

Details for the file django_modern_rpc-2.1.0.tar.gz.

File metadata

  • Download URL: django_modern_rpc-2.1.0.tar.gz
  • Upload date:
  • Size: 30.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for django_modern_rpc-2.1.0.tar.gz
Algorithm Hash digest
SHA256 9809fc634d7489fc9a4fbb4bb7ac3d3c2616ed6741437a2040053c6c95718536
MD5 c6f136a063fd1625f8dce578f287b8a6
BLAKE2b-256 b6c757a3950a031bab10e82319fde3e153090427d2870f419828da877ff6e7bc

See more details on using hashes here.

File details

Details for the file django_modern_rpc-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: django_modern_rpc-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 43.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for django_modern_rpc-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f2ae474712d54317240450031d8d639402f1acf57796d721c032b76cbbd388d7
MD5 bfdab7120437482404ece1ba998d6d7a
BLAKE2b-256 7b21cb8c1367b381f99b08537057723e1cb951bbf9845d0ddf4112d88d9a9c0e

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