Skip to main content

Handles JSONRPC and XMLRPC requests easily with Django

Project description

Prerequisites

RPC4Django has been tested on Mac OS, Linux and Windows.

Installation

pip install rpc4django[reST]

Configuration

  1. First, you need to add new url pattern to your root urls.py file. You can replace r'^RPC2$' with anything you like.

    # urls.py
    
    from rpc4django.views import serve_rpc_request
    
    urlpatterns = (
        # rpc4django will need to be in your Python path
        url(r'^RPC2$', serve_rpc_request),
    )
  2. Second, add RPC4Django to the list of installed applications in your settings.py.

    # settings.py
    
    INSTALLED_APPS = (
        'rpc4django',
    )
  3. Lastly, you need to let RPC4Django know which methods to make available. RPC4Django recursively imports all the apps in INSTALLED_APPS and makes any methods importable via __init__.py with the @rpcmethod decorator available as RPC methods. You can always write your RPC methods in another module and simply import it in __init__.py.

    # testapp/__init__.py
    
    from rpc4django import rpcmethod
    
    # The doc string supports reST if docutils is installed
    @rpcmethod(name='mynamespace.add', signature=['int', 'int', 'int'])
    def add(a, b):
        '''Adds two numbers together
        >>> add(1, 2)
        3
        '''
    
        return a+b

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

rpc4django-0.4.0.tar.gz (25.1 kB view details)

Uploaded Source

Built Distribution

rpc4django-0.4.0-py2-none-any.whl (18.1 kB view details)

Uploaded Python 2

File details

Details for the file rpc4django-0.4.0.tar.gz.

File metadata

  • Download URL: rpc4django-0.4.0.tar.gz
  • Upload date:
  • Size: 25.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rpc4django-0.4.0.tar.gz
Algorithm Hash digest
SHA256 9981bbce1aeba2dd35980c6e0f56f43d2fcad0f9a0a6b96f78b1bee3139a9d1c
MD5 a929e046f29a1d1f095312dafb76bb63
BLAKE2b-256 a22b220ab104e4236a42a2fe7f8cca5d15089ae0587b9cdb929f1841d34224e8

See more details on using hashes here.

File details

Details for the file rpc4django-0.4.0-py2-none-any.whl.

File metadata

File hashes

Hashes for rpc4django-0.4.0-py2-none-any.whl
Algorithm Hash digest
SHA256 076090834194963d5b49131fb43f9e8488c172eff61681d7915661fa55e43f99
MD5 4253d8037ec3381505a546edecba6029
BLAKE2b-256 1ab3c9fc25c65294bdd88d12f1ccfa0097527a713fa7c84cc00f9259a3c7052a

See more details on using hashes here.

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