Handles JSONRPC and XMLRPC requests easily with Django
Project description
========================
RPC4Django Documentation
========================
Setup
=====
Prerequisites
-------------
RPC4Django has been tested on Mac OS, Linux and Windows.
- Python_ 2.4 - 2.7
- Django_ 1.0+
- Docutils_ (optional)
.. _Python: http://www.python.org
.. _Django: http://www.djangoproject.com
.. _Docutils: http://docutils.sourceforge.net
Installation
------------
RPC4Django can be installed with pip_, easy_install_ or from source:
::
tar xvfz rpc4django-x.y.z.tar.gz
cd rpc4django-x.y.z
python setup.py install
.. _pip: http://pip.openplans.org/
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
Alternatively, RPC4Django can be used from your Django project without installing it.
::
tar xvfz rpc4django-x.y.z.tar.gz
cd rpc4django-x.y.z
cp -r rpc4django YOUR_DJANGO_PROJECT_DIRECTORY
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
urlpatterns = patterns('',
# rpc4django will need to be in your Python path
(r'^RPC2$', 'rpc4django.views.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
RPC4Django Documentation
========================
Setup
=====
Prerequisites
-------------
RPC4Django has been tested on Mac OS, Linux and Windows.
- Python_ 2.4 - 2.7
- Django_ 1.0+
- Docutils_ (optional)
.. _Python: http://www.python.org
.. _Django: http://www.djangoproject.com
.. _Docutils: http://docutils.sourceforge.net
Installation
------------
RPC4Django can be installed with pip_, easy_install_ or from source:
::
tar xvfz rpc4django-x.y.z.tar.gz
cd rpc4django-x.y.z
python setup.py install
.. _pip: http://pip.openplans.org/
.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
Alternatively, RPC4Django can be used from your Django project without installing it.
::
tar xvfz rpc4django-x.y.z.tar.gz
cd rpc4django-x.y.z
cp -r rpc4django YOUR_DJANGO_PROJECT_DIRECTORY
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
urlpatterns = patterns('',
# rpc4django will need to be in your Python path
(r'^RPC2$', 'rpc4django.views.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
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
rpc4django-0.1.10.tar.gz
(24.9 kB
view details)
File details
Details for the file rpc4django-0.1.10.tar.gz
.
File metadata
- Download URL: rpc4django-0.1.10.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac8ccae329595e1874c0cb72ee7313db640c1cacdc91f469cad1b2d48a8108c4 |
|
MD5 | eec432cc0b603f5405d40d28b6c91c4f |
|
BLAKE2b-256 | 76cad9f69b85e6f208caa2c7b5dfea41368e4f2807f640795bc6f34b56b26b29 |