rpc4django 0.6.3
pip install rpc4django
Released:
Handles JSONRPC and XMLRPC requests easily with Django
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: David Fischer
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
Prerequisites
RPC4Django has been tested on Mac OS, Linux and Windows.
Installation
pip install rpc4django[reST]
Configuration
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), )
Second, add RPC4Django to the list of installed applications in your settings.py.
# settings.py INSTALLED_APPS = ( 'rpc4django', )
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
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: David Fischer
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rpc4django-0.6.3.tar.gz
.
File metadata
- Download URL: rpc4django-0.6.3.tar.gz
- Upload date:
- Size: 25.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 194a368d9d889dc357ef345b87eced95c5a43b2e528b23fc339f12318962b4d2 |
|
MD5 | 1547a0fe6649bb39a033a9934b54369e |
|
BLAKE2b-256 | 97a95d280daac42d119ccbc8f3f963d0d8b9ab1bd5eef6d068c403fccf932c73 |
File details
Details for the file rpc4django-0.6.3-py2.py3-none-any.whl
.
File metadata
- Download URL: rpc4django-0.6.3-py2.py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 905b0719b6a80b1fedee867588a893746d1da52bc1199dd4df7f7ed1bd886098 |
|
MD5 | 574d359ad2ae9d92b2591ca41badcc24 |
|
BLAKE2b-256 | e3dbb9fd8da7f63bc42d6e5e1f734825d606936766e3df16420577b67a1b8ddc |