2011-02-01 22:55:57 +03:00
.. meta ::
:description: A lightweight REST framework for Django.
2011-02-19 18:50:40 +03:00
:keywords: django, python, REST, RESTful, API, interface, framework
2011-02-01 22:55:57 +03:00
2011-01-30 14:00:20 +03:00
Django REST framework
=====================
2011-01-17 20:34:58 +03:00
2011-02-02 02:08:18 +03:00
Introduction
------------
2011-02-19 18:50:40 +03:00
Django REST framework aims to make it easy to build well-connected, self-describing Web APIs.
2011-01-17 20:34:58 +03:00
2011-01-30 14:00:20 +03:00
Features:
2011-01-24 21:59:23 +03:00
2011-02-19 21:41:23 +03:00
* Automatically provides a Django admin style `browse-able self-documenting API <http://api.django-rest-framework.org> `_ .
2011-02-19 16:12:35 +03:00
* Clean, simple, views for Resources, using Django's new `class based views <http://docs.djangoproject.com/en/dev/topics/class-based-views/> `_ .
* Support for ModelResources with out-of-the-box default implementations and input validation.
* Pluggable :mod: `.emitters` , :mod: `parsers` , :mod: `validators` and :mod: `authenticators` - Easy to customise.
* Content type negotiation using HTTP Accept headers.
2011-01-24 21:59:23 +03:00
* Optional support for forms as input validation.
2011-02-19 18:50:40 +03:00
* Modular architecture - MixIn classes can be used without requiring the :class: `.Resource` or :class: `.ModelResource` classes.
2011-02-19 16:12:35 +03:00
2011-02-22 01:21:49 +03:00
The django-rest-framework project is hosted as a `mercurial repository on bitbucket <https://bitbucket.org/tomchristie/django-rest-framework> `_ .
2011-02-19 16:12:35 +03:00
Bug reports and feature suggestions are greatful received on the `issue tracker <https://bitbucket.org/tomchristie/django-rest-framework/issues?sort=version> `_ .
2011-01-24 02:08:16 +03:00
2011-02-22 01:21:49 +03:00
For more information please head on over to the `discussion group <http://groups.google.com/group/django-rest-framework> `_ .
2011-01-30 19:51:06 +03:00
Requirements
------------
2011-02-19 16:12:35 +03:00
* Python (2.5, 2.6, 2.7 supported)
* Django (1.2, 1.3 supported)
2011-01-30 19:51:06 +03:00
2011-01-28 20:42:57 +03:00
Installation & Setup
--------------------
2011-02-19 22:15:16 +03:00
2011-02-22 01:21:49 +03:00
You can install Django REST framework using `` pip `` or `` easy_install `` ::
pip install djangorestframework
Or download the current release from BitBucket:
2011-02-19 22:15:16 +03:00
`django-rest-framework-0.1.tar.gz <https://bitbucket.org/tomchristie/django-rest-framework/downloads/django-rest-framework-0.1.tar.gz> `_
2011-02-22 01:21:49 +03:00
Or get the latest development version using mercurial::
2011-01-30 14:00:20 +03:00
2011-02-01 22:55:57 +03:00
hg clone https://bitbucket.org/tomchristie/django-rest-framework
2011-01-30 14:00:20 +03:00
2011-02-22 01:21:49 +03:00
To install Django REST framework to your `` site-packages `` directory, run the `` setup.py `` script::
2011-02-19 22:15:16 +03:00
python setup.py install
2011-01-30 14:00:20 +03:00
2011-02-22 01:21:49 +03:00
To add django-rest-framework to a Django project:
2011-01-30 14:00:20 +03:00
2011-02-19 22:15:16 +03:00
* Ensure that the `` djangorestframework `` directory is on your `` PYTHONPATH `` .
* Add `` djangorestframework `` to your `` INSTALLED_APPS `` .
2011-01-30 14:00:20 +03:00
2011-02-19 16:12:35 +03:00
For more information take a look at the :ref: `setup` section.
2011-02-02 02:08:18 +03:00
2011-02-19 16:12:35 +03:00
Getting Started
---------------
2011-02-02 11:43:27 +03:00
2011-02-19 18:50:40 +03:00
Using Django REST framework can be as simple as adding a few lines to your urlconf and adding a `permalink <http://docs.djangoproject.com/en/dev/ref/models/instances/#get-absolute-url> `_ to your model.
`urls.py` ::
2011-02-02 02:08:18 +03:00
2011-02-19 16:12:35 +03:00
from django.conf.urls.defaults import patterns, url
from djangorestframework import ModelResource, RootModelResource
from models import MyModel
2011-01-30 14:00:20 +03:00
2011-02-19 16:12:35 +03:00
urlpatterns = patterns('',
url(r'^$', RootModelResource.as_view(model=MyModel)),
2011-02-19 18:50:40 +03:00
url(r'^(?P<pk>[^/]+)/$', ModelResource.as_view(model=MyModel), name='my-model'),
2011-02-19 16:12:35 +03:00
)
2011-02-02 11:43:27 +03:00
2011-02-19 18:50:40 +03:00
`models.py` ::
class MyModel(models.Model):
# (Rest of model definition...)
@models.permalink
def get_absolute_url(self):
return ('my-model', (self.pk,))
2011-02-19 16:12:35 +03:00
Django REST framework comes with two "getting started" examples.
2011-01-28 20:42:57 +03:00
2011-02-19 16:12:35 +03:00
#. :ref: `resources`
#. :ref: `modelresources`
2011-01-28 20:42:57 +03:00
Examples
--------
2011-02-19 16:12:35 +03:00
There are a few real world web API examples included with Django REST framework.
2011-01-30 14:00:20 +03:00
2011-02-19 16:12:35 +03:00
#. :ref: `objectstore` - Using :class: `.Resource` for resources that do not map to models.
#. :ref: `codehighlighting` - Using :class: `.Resource` with forms for input validation.
#. :ref: `blogposts` - Using :class: `.ModelResource` for resources that map directly to models.
2011-01-30 14:00:20 +03:00
2011-02-19 16:12:35 +03:00
All the examples are freely available for testing in the sandbox:
* http://api.django-rest-framework.org
(The :ref: `sandbox` resource is also documented.)
2011-01-30 14:00:20 +03:00
2011-02-02 11:43:27 +03:00
How Tos, FAQs & Notes
---------------------
2011-01-30 14:00:20 +03:00
.. toctree ::
2011-02-19 16:12:35 +03:00
:maxdepth: 1
2011-01-30 14:00:20 +03:00
2011-02-19 16:12:35 +03:00
howto/setup
2011-01-30 14:00:20 +03:00
howto/usingcurl
2011-02-02 11:43:27 +03:00
howto/alternativeframeworks
2011-02-19 16:12:35 +03:00
howto/mixin
2011-01-28 20:42:57 +03:00
Library Reference
-----------------
2011-01-24 02:08:16 +03:00
.. toctree ::
2011-02-19 16:12:35 +03:00
:maxdepth: 1
2011-01-24 02:08:16 +03:00
2011-01-30 14:00:20 +03:00
library/resource
library/modelresource
library/emitters
library/parsers
library/authenticators
2011-02-19 16:12:35 +03:00
library/validators
2011-01-30 14:00:20 +03:00
library/response
2011-02-19 16:12:35 +03:00
library/status
Examples Reference
------------------
2011-01-24 02:08:16 +03:00
2011-02-19 16:12:35 +03:00
.. toctree ::
:maxdepth: 1
examples/resources
examples/modelresources
examples/objectstore
examples/pygments
examples/blogpost
examples/sandbox
howto/mixin
2011-01-24 02:08:16 +03:00
2011-01-17 20:34:58 +03:00
Indices and tables
------------------
* :ref: `genindex`
* :ref: `modindex`
* :ref: `search`