django-rest-framework/docs/api-guide/settings.md

164 lines
4.4 KiB
Markdown
Raw Normal View History

2012-09-09 01:06:13 +04:00
<a class="github" href="settings.py"></a>
2012-09-05 13:01:43 +04:00
# Settings
2012-09-12 13:12:13 +04:00
> Namespaces are one honking great idea - let's do more of those!
>
> &mdash; [The Zen of Python][cite]
2012-09-06 00:14:00 +04:00
Configuration for REST framework is all namespaced inside a single Django setting, named `REST_FRAMEWORK`.
2012-09-12 13:12:13 +04:00
For example your project's `settings.py` file might include something like this:
2012-09-05 13:01:43 +04:00
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'rest_framework.renderers.YAMLRenderer',
2012-10-31 13:41:56 +04:00
),
'DEFAULT_PARSER_CLASSES': (
'rest_framework.parsers.YAMLParser',
2012-09-05 13:01:43 +04:00
)
}
2012-09-06 19:46:56 +04:00
## Accessing settings
If you need to access the values of REST framework's API settings in your project,
you should use the `api_settings` object. For example.
from rest_framework.settings import api_settings
2012-09-06 19:46:56 +04:00
print api_settings.DEFAULT_AUTHENTICATION_CLASSES
2012-09-06 19:46:56 +04:00
The `api_settings` object will check for any user-defined settings, and otherwise fallback to the default values. Any setting that uses string import paths to refer to a class will automatically import and return the referenced class, instead of the string literal.
2012-10-17 18:41:57 +04:00
---
# API Reference
## DEFAULT_RENDERER_CLASSES
2012-09-05 13:01:43 +04:00
2012-09-05 16:03:55 +04:00
A list or tuple of renderer classes, that determines the default set of renderers that may be used when returning a `Response` object.
2012-09-05 13:01:43 +04:00
Default:
(
'rest_framework.renderers.JSONRenderer',
2012-10-29 12:13:56 +04:00
'rest_framework.renderers.BrowsableAPIRenderer',
'rest_framework.renderers.TemplateHTMLRenderer'
2012-09-05 16:03:55 +04:00
)
2012-09-05 13:01:43 +04:00
## DEFAULT_PARSER_CLASSES
2012-09-05 13:01:43 +04:00
2012-09-05 16:03:55 +04:00
A list or tuple of parser classes, that determines the default set of parsers used when accessing the `request.DATA` property.
Default:
(
'rest_framework.parsers.JSONParser',
'rest_framework.parsers.FormParser'
2012-09-05 16:03:55 +04:00
)
## DEFAULT_AUTHENTICATION_CLASSES
2012-09-05 16:03:55 +04:00
A list or tuple of authentication classes, that determines the default set of authenticators used when accessing the `request.user` or `request.auth` properties.
2012-09-06 18:57:16 +04:00
Default:
2012-09-05 16:03:55 +04:00
(
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.UserBasicAuthentication'
2012-09-05 16:03:55 +04:00
)
## DEFAULT_PERMISSION_CLASSES
2012-09-05 16:03:55 +04:00
2012-09-06 00:14:00 +04:00
A list or tuple of permission classes, that determines the default set of permissions checked at the start of a view.
2012-10-27 23:04:33 +04:00
Default:
(
'rest_framework.permissions.AllowAny',
)
2012-09-05 16:03:55 +04:00
## DEFAULT_THROTTLE_CLASSES
2012-09-05 13:01:43 +04:00
2012-09-06 00:14:00 +04:00
A list or tuple of throttle classes, that determines the default set of throttles checked at the start of a view.
2012-09-05 13:01:43 +04:00
Default: `()`
2012-09-05 16:03:55 +04:00
## DEFAULT_MODEL_SERIALIZER_CLASS
2012-09-05 16:03:55 +04:00
2012-09-06 19:46:56 +04:00
**TODO**
Default: `rest_framework.serializers.ModelSerializer`
2012-09-05 16:03:55 +04:00
## DEFAULT_PAGINATION_SERIALIZER_CLASS
2012-09-05 16:03:55 +04:00
2012-09-06 19:46:56 +04:00
**TODO**
Default: `rest_framework.pagination.PaginationSerializer`
2012-09-05 16:03:55 +04:00
## FORMAT_SUFFIX_KWARG
2012-09-06 19:46:56 +04:00
**TODO**
2012-09-05 23:10:06 +04:00
Default: `'format'`
2012-09-05 16:03:55 +04:00
2012-09-05 23:10:06 +04:00
## UNAUTHENTICATED_USER
The class that should be used to initialize `request.user` for unauthenticated requests.
2012-09-05 16:03:55 +04:00
Default: `django.contrib.auth.models.AnonymousUser`
2012-09-06 00:14:00 +04:00
## UNAUTHENTICATED_TOKEN
2012-09-05 23:10:06 +04:00
The class that should be used to initialize `request.auth` for unauthenticated requests.
Default: `None`
2012-09-05 16:03:55 +04:00
## FORM_METHOD_OVERRIDE
2012-09-05 23:10:06 +04:00
The name of a form field that may be used to override the HTTP method of the form.
2012-09-06 00:14:00 +04:00
If the value of this setting is `None` then form method overloading will be disabled.
2012-09-05 23:10:06 +04:00
Default: `'_method'`
2012-09-05 16:03:55 +04:00
## FORM_CONTENT_OVERRIDE
2012-09-06 00:14:00 +04:00
The name of a form field that may be used to override the content of the form payload. Must be used together with `FORM_CONTENTTYPE_OVERRIDE`.
If either setting is `None` then form content overloading will be disabled.
2012-09-05 23:10:06 +04:00
Default: `'_content'`
2012-09-05 16:03:55 +04:00
## FORM_CONTENTTYPE_OVERRIDE
2012-09-06 00:14:00 +04:00
The name of a form field that may be used to override the content type of the form payload. Must be used together with `FORM_CONTENT_OVERRIDE`.
If either setting is `None` then form content overloading will be disabled.
2012-09-05 23:10:06 +04:00
Default: `'_content_type'`
2012-09-05 16:03:55 +04:00
## URL_ACCEPT_OVERRIDE
2012-09-05 23:10:06 +04:00
The name of a URL parameter that may be used to override the HTTP `Accept` header.
2012-09-06 00:14:00 +04:00
If the value of this setting is `None` then URL accept overloading will be disabled.
Default: `'accept'`
## URL_FORMAT_OVERRIDE
Default: `'format'`
2012-09-12 13:12:13 +04:00
## PAGE_SIZE_KWARG
Allows you to globally pass a page size parameter for an individual request.
The name of the GET parameter of views which inherit ListModelMixin for requesting data with an individual page size.
If the value if this setting is `None` the passing a page size is turned off by default.
Default: `'page_size'`
2012-09-12 13:12:13 +04:00
[cite]: http://www.python.org/dev/peps/pep-0020/