Skip to main content
https://travis-ci.org/alorence/django-modern-rpc.svg?branch=master https://coveralls.io/repos/github/alorence/django-modern-rpc/badge.svg?branch=master https://readthedocs.org/projects/django-modern-rpc/badge/?version=latest

Information

django-modern-rpc is a free, lightweight RPC server for Django projects. It supports JSON-RPC and XML-RPC requests under python 2.7, 3.3, 3.4, 3.5 and Django 1.8, 1.9 and 1.10.

Features

The project is under active development, so all the features are not yet implemented. The list of available features is:

  • XML-RPC & JSON-RPC support

  • Usual errors are correctly reported to user according to the standard

  • Multi-entry point, with specific methods and protocol attached

  • Supported system methods:

    • system.listMethods()

    • system.methodSignature()

Features planned to implement

  • System introspection methods (methodHelp(), etc.)

  • Multi-call

Installation

To install django-modern-rpc, simply use pip:

pip install django-modern-rpc

Quick start

Decorate the methods you want to make reachable from RPC call:

# In myproject/rpc_app/rpc_methods.py
from modernrpc.core import rpc_method

@rpc_method()
def add(a, b):
    return a + b

and make sure these functions are imported at Django startup. A simple way to do that is to import them in your app’s module:

# In myproject/rpc_app/__init__.py
from rpc_app.rpc_methods import add

Now, you have to declare an entry point. This is a standard Django view which will automatically route the request to the right handler (for JSON-RPC or XML-RPC call) and call the method on the server.

# In myproject/rpc_app/urls.py
from django.conf.urls import url

from modernrpc.views import RPCEntryPoint

urlpatterns = [
    url(r'^rpc/', RPCEntryPoint.as_view(), name="rpc_entry_point"),
]

Now, you can call the function add from a client:

try:
    # Python 3
    import xmlrpc.client as xmlrpc_module
except ImportError:
    # Python 2
    import xmlrpclib as xmlrpc_module

client = xmlrpc_module.ServerProxy('http://127.0.0.1:8000/all-rpc/')
print(client.add(2, 3))

# Returns: 5

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-0.2.1.tar.gz (11.9 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-0.2.1-py2.py3-none-any.whl (16.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file django-modern-rpc-0.2.1.tar.gz.

File metadata

File hashes

Hashes for django-modern-rpc-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0b188ca93fde6ae6299974f9793b7c7a0b58c4ed48dd9567adb6c5b526a6cacf
MD5 56233617afed8cd057ae45f2cc297b81
BLAKE2b-256 f9858052afa841a6492efa8c8c0ef36f7b936b9f5efeb06d55980e46e371a786

See more details on using hashes here.

File details

Details for the file django_modern_rpc-0.2.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_modern_rpc-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8ef0058ce27f9b2159b38327d8f7f1e52cd917ecab9a9912282b0e8a55fe5459
MD5 a0c9676fe30426b02df28249964d5664
BLAKE2b-256 b7cca33f1ff48aeb7ad4fe79962623b37d5ae3d8d8567c5fe01a7d6ecd6ca509

See more details on using hashes here.

Release history Release notifications | RSS feed

2.1.0

2 files

2.0.0

2 files

1.1.0

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

1.0.0a4

2 files

1.0.0a3

2 files

1.0.0a2

2 files

1.0.0a1

2 files

0.12.1

2 files

0.12.0

2 files

0.11.1

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

0.8.1

2 files

0.8.0

2 files

0.7.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.3

2 files

0.2.2

2 files

This release

0.2.1 This release

2 files

0.2.0

3 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page