django-rest-framework/docs/index.md

242 lines
10 KiB
Markdown
Raw Normal View History

<p class="badges">
<iframe src="http://ghbtns.com/github-btn.html?user=tomchristie&amp;repo=django-rest-framework&amp;type=watch&amp;count=true" class="github-star-button" allowtransparency="true" frameborder="0" scrolling="0" width="110px" height="20px"></iframe>
2013-02-14 17:09:42 +04:00
<a href="https://twitter.com/share" class="twitter-share-button" data-url="django-rest-framework.org" data-text="Checking out the totally awesome Django REST framework! http://django-rest-framework.org" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="http://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<img alt="Travis build image" src="https://secure.travis-ci.org/tomchristie/django-rest-framework.png?branch=master" class="travis-build-image">
</p>
2012-09-01 23:26:27 +04:00
# Django REST framework
2013-03-14 00:53:39 +04:00
**Web APIs for Django, made easy.**
2012-09-01 23:26:27 +04:00
2013-03-14 00:53:39 +04:00
Django REST framework is a flexible, powerful library that makes it incredibly easy to build Web APIs. It is designed as a modular and easy to customize architecture, based on Django's class based views.
2012-09-01 23:26:27 +04:00
Web APIs built using REST framework are fully self-describing and web browseable - a huge useability win for your developers. It also supports a wide range of media types, authentication and permission policies out of the box.
If you are considering using REST framework for your API, we recommend reading the [REST framework 2 announcement][rest-framework-2-announcement] which gives a good overview of the framework and it's capabilities.
2012-10-30 16:23:17 +04:00
There is also a sandbox API you can use for testing purposes, [available here][sandbox].
**Below**: *Screenshot from the browseable API*
![Screenshot][image]
2012-09-01 23:26:27 +04:00
## Requirements
REST framework requires the following:
2013-02-15 13:05:55 +04:00
* Python (2.6.5+, 2.7, 3.2, 3.3)
2012-09-01 23:26:27 +04:00
* Django (1.3, 1.4, 1.5)
The following packages are optional:
2012-11-09 20:44:39 +04:00
* [Markdown][markdown] (2.1.0+) - Markdown support for the browseable API.
* [PyYAML][yaml] (3.10+) - YAML content-type support.
* [defusedxml][defusedxml] (0.3+) - XML content-type support.
* [django-filter][django-filter] (0.5.4+) - Filtering support.
2013-03-07 13:01:53 +04:00
* [django-oauth-plus][django-oauth-plus] (2.0+) and [oauth2][oauth2] (1.5.211+) - OAuth 1.0a support.
2013-03-07 21:50:48 +04:00
* [django-oauth2-provider][django-oauth2-provider] (0.2.3+) - OAuth 2.0 support.
2013-03-07 13:01:53 +04:00
2013-03-07 21:50:48 +04:00
**Note**: The `oauth2` python package is badly misnamed, and actually provides OAuth 1.0a support. Also note that packages required for both OAuth 1.0a, and OAuth 2.0 are not yet Python 3 compatible.
2012-09-01 23:26:27 +04:00
## Installation
Install using `pip`, including any optional packages you want...
2012-09-01 23:26:27 +04:00
pip install djangorestframework
2012-11-09 20:44:39 +04:00
pip install markdown # Markdown support for the browseable API.
pip install pyyaml # YAML content-type support.
pip install django-filter # Filtering support
2012-09-01 23:26:27 +04:00
...or clone the project from github.
git clone git@github.com:tomchristie/django-rest-framework.git
cd django-rest-framework
2012-09-01 23:26:27 +04:00
pip install -r requirements.txt
pip install -r optionals.txt
2012-09-01 23:26:27 +04:00
Add `'rest_framework'` to your `INSTALLED_APPS` setting.
2012-09-01 23:26:27 +04:00
INSTALLED_APPS = (
...
'rest_framework',
2012-09-01 23:26:27 +04:00
)
If you're intending to use the browseable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file.
2012-09-01 23:26:27 +04:00
urlpatterns = patterns('',
...
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
2012-09-01 23:26:27 +04:00
)
Note that the URL path can be whatever you want, but you must include `'rest_framework.urls'` with the `'rest_framework'` namespace.
2012-09-01 23:26:27 +04:00
## Quickstart
2012-08-29 23:57:37 +04:00
2013-03-14 00:53:39 +04:00
Can't wait to get started? The [quickstart guide][quickstart] is the fastest way to get up and running, and building APIs with REST framework.
2012-09-01 23:26:27 +04:00
## Tutorial
The tutorial will walk you through the building blocks that make up REST framework. It'll take a little while to get through, but it'll give you a comprehensive understanding of how everything fits together, and is highly recommended reading.
2012-08-29 23:57:37 +04:00
* [1 - Serialization][tut-1]
* [2 - Requests & Responses][tut-2]
* [3 - Class based views][tut-3]
2012-10-28 23:37:27 +04:00
* [4 - Authentication & permissions][tut-4]
2012-08-29 23:57:37 +04:00
* [5 - Relationships & hyperlinked APIs][tut-5]
2012-09-01 23:26:27 +04:00
## API Guide
The API guide is your complete reference manual to all the functionality provided by REST framework.
2012-08-29 23:57:37 +04:00
* [Requests][request]
* [Responses][response]
* [Views][views]
2012-09-12 13:12:13 +04:00
* [Generic views][generic-views]
2012-08-29 23:57:37 +04:00
* [Parsers][parsers]
* [Renderers][renderers]
* [Serializers][serializers]
2012-10-05 20:10:07 +04:00
* [Serializer fields][fields]
2012-12-31 12:53:40 +04:00
* [Serializer relations][relations]
2012-08-29 23:57:37 +04:00
* [Authentication][authentication]
* [Permissions][permissions]
2012-09-05 13:01:43 +04:00
* [Throttling][throttling]
2012-11-08 01:28:10 +04:00
* [Filtering][filtering]
2012-10-01 19:17:01 +04:00
* [Pagination][pagination]
2012-09-12 13:12:13 +04:00
* [Content negotiation][contentnegotiation]
* [Format suffixes][formatsuffixes]
* [Returning URLs][reverse]
2012-09-01 23:26:27 +04:00
* [Exceptions][exceptions]
2012-08-29 23:57:37 +04:00
* [Status codes][status]
2012-09-05 13:01:43 +04:00
* [Settings][settings]
2012-08-29 23:57:37 +04:00
2012-09-01 23:26:27 +04:00
## Topics
General guides to using REST framework.
2012-08-29 23:57:37 +04:00
2013-01-27 21:23:56 +04:00
* [AJAX, CSRF & CORS][ajax-csrf-cors]
2012-10-13 18:07:43 +04:00
* [Browser enhancements][browser-enhancements]
2012-10-13 18:34:38 +04:00
* [The Browsable API][browsableapi]
2012-10-08 15:17:43 +04:00
* [REST, Hypermedia & HATEOAS][rest-hypermedia-hateoas]
2012-10-27 21:39:17 +04:00
* [2.0 Announcement][rest-framework-2-announcement]
2013-02-13 18:08:56 +04:00
* [2.2 Announcement][2.2-announcement]
2012-10-17 16:51:15 +04:00
* [Release Notes][release-notes]
2012-09-02 00:23:50 +04:00
* [Credits][credits]
2012-08-29 23:57:37 +04:00
2012-09-02 00:35:30 +04:00
## Development
If you want to work on REST framework itself, clone the repository, then...
Build the docs:
./mkdocs.py
Run the tests:
./rest_framework/runtests/runtests.py
2012-09-02 00:35:30 +04:00
2013-03-06 16:19:49 +04:00
To run the tests against all supported configurations, first install [the tox testing tool][tox] globally, using `pip install tox`, then simply run `tox`:
tox
2012-10-09 15:01:17 +04:00
## Support
For support please see the [REST framework discussion group][group], try the `#restframework` channel on `irc.freenode.net`, or raise a question on [Stack Overflow][stack-overflow], making sure to include the ['django-rest-framework'][django-rest-framework-tag] tag.
2012-10-09 15:01:17 +04:00
[Paid support is available][paid-support] from [DabApps][dabapps], and can include work on REST framework core, or support with building your REST framework API. Please [contact DabApps][contact-dabapps] if you'd like to discuss commercial support options.
2012-10-09 15:01:17 +04:00
2013-01-24 17:01:42 +04:00
For updates on REST framework development, you may also want to follow [the author][twitter] on Twitter.
<a style="padding-top: 10px" href="https://twitter.com/_tomchristie" class="twitter-follow-button" data-show-count="false">Follow @_tomchristie</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
2012-09-01 23:26:27 +04:00
## License
2013-01-04 01:43:54 +04:00
Copyright (c) 2011-2013, Tom Christie
2012-09-01 23:26:27 +04:00
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
2012-08-29 23:57:37 +04:00
2012-09-01 23:26:27 +04:00
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2012-10-30 18:48:21 +04:00
[travis]: http://travis-ci.org/tomchristie/django-rest-framework?branch=master
2013-01-04 01:43:54 +04:00
[travis-build-image]: https://secure.travis-ci.org/tomchristie/django-rest-framework.png?branch=master
2012-09-01 23:26:27 +04:00
[urlobject]: https://github.com/zacharyvoase/urlobject
[markdown]: http://pypi.python.org/pypi/Markdown/
[yaml]: http://pypi.python.org/pypi/PyYAML
[defusedxml]: https://pypi.python.org/pypi/defusedxml
2013-01-12 17:31:40 +04:00
[django-filter]: http://pypi.python.org/pypi/django-filter
2013-03-07 13:01:53 +04:00
[oauth2]: https://github.com/simplegeo/python-oauth2
[django-oauth-plus]: https://bitbucket.org/david/django-oauth-plus/wiki/Home
2013-03-07 21:50:48 +04:00
[django-oauth2-provider]: https://github.com/caffeinehit/django-oauth2-provider
2012-10-30 16:23:17 +04:00
[0.4]: https://github.com/tomchristie/django-rest-framework/tree/0.4.X
[image]: img/quickstart.png
[sandbox]: http://restframework.herokuapp.com/
2012-08-29 23:57:37 +04:00
2012-10-09 15:01:17 +04:00
[quickstart]: tutorial/quickstart.md
2012-08-29 23:57:37 +04:00
[tut-1]: tutorial/1-serialization.md
[tut-2]: tutorial/2-requests-and-responses.md
[tut-3]: tutorial/3-class-based-views.md
2012-10-28 23:37:27 +04:00
[tut-4]: tutorial/4-authentication-and-permissions.md
2012-08-29 23:57:37 +04:00
[tut-5]: tutorial/5-relationships-and-hyperlinked-apis.md
2012-09-01 23:26:27 +04:00
[request]: api-guide/requests.md
[response]: api-guide/responses.md
[views]: api-guide/views.md
2012-09-12 13:12:13 +04:00
[generic-views]: api-guide/generic-views.md
2012-09-01 23:26:27 +04:00
[parsers]: api-guide/parsers.md
[renderers]: api-guide/renderers.md
[serializers]: api-guide/serializers.md
2012-10-05 20:10:07 +04:00
[fields]: api-guide/fields.md
2012-12-31 12:53:40 +04:00
[relations]: api-guide/relations.md
2012-09-01 23:26:27 +04:00
[authentication]: api-guide/authentication.md
[permissions]: api-guide/permissions.md
2012-09-05 13:01:43 +04:00
[throttling]: api-guide/throttling.md
2012-11-08 01:28:10 +04:00
[filtering]: api-guide/filtering.md
2012-10-01 19:17:01 +04:00
[pagination]: api-guide/pagination.md
2012-09-12 13:12:13 +04:00
[contentnegotiation]: api-guide/content-negotiation.md
[formatsuffixes]: api-guide/format-suffixes.md
[reverse]: api-guide/reverse.md
2012-09-01 23:26:27 +04:00
[exceptions]: api-guide/exceptions.md
2012-09-05 16:03:55 +04:00
[status]: api-guide/status-codes.md
2012-09-05 13:01:43 +04:00
[settings]: api-guide/settings.md
2012-09-01 23:26:27 +04:00
2013-01-27 21:23:56 +04:00
[ajax-csrf-cors]: topics/ajax-csrf-cors.md
2012-10-13 18:07:43 +04:00
[browser-enhancements]: topics/browser-enhancements.md
2012-09-10 00:46:05 +04:00
[browsableapi]: topics/browsable-api.md
2012-10-08 15:17:43 +04:00
[rest-hypermedia-hateoas]: topics/rest-hypermedia-hateoas.md
2012-09-05 16:03:55 +04:00
[contributing]: topics/contributing.md
2012-10-27 21:39:17 +04:00
[rest-framework-2-announcement]: topics/rest-framework-2-announcement.md
2013-02-13 18:08:56 +04:00
[2.2-announcement]: topics/2.2-announcement.md
2012-10-17 16:51:15 +04:00
[release-notes]: topics/release-notes.md
2012-09-02 00:23:50 +04:00
[credits]: topics/credits.md
2012-10-09 15:01:17 +04:00
2013-03-06 16:19:49 +04:00
[tox]: http://testrun.org/tox/latest/
2012-10-09 15:01:17 +04:00
[group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework
[stack-overflow]: http://stackoverflow.com/
[django-rest-framework-tag]: http://stackoverflow.com/questions/tagged/django-rest-framework
[django-tag]: http://stackoverflow.com/questions/tagged/django
[paid-support]: http://dabapps.com/services/build/api-development/
[dabapps]: http://dabapps.com
[contact-dabapps]: http://dabapps.com/contact/
2013-01-24 17:01:42 +04:00
[twitter]: https://twitter.com/_tomchristie