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

508 lines
22 KiB
Markdown
Raw Normal View History

source: fields.py
# Serializer fields
> Each field in a Form class is responsible not only for validating data, but also for "cleaning" it — normalizing it to a consistent format.
>
2012-12-31 12:53:40 +04:00
> — [Django documentation][cite]
2012-12-31 12:53:40 +04:00
Serializer fields handle converting between primitive values and internal datatypes. They also deal with validating input values, as well as retrieving and setting the values from their parent objects.
2012-10-05 22:26:57 +04:00
---
2012-10-05 20:02:33 +04:00
**Note:** The serializer fields are declared in fields.py, but by convention you should import them using `from rest_framework import serializers` and refer to fields as `serializers.<FieldName>`.
2012-10-29 00:18:02 +04:00
---
## Core arguments
2013-05-28 19:13:12 +04:00
Each serializer field class constructor takes at least these arguments. Some Field classes take additional, field-specific arguments, but the following should always be accepted:
2012-10-29 00:18:02 +04:00
### `source`
The name of the attribute that will be used to populate the field. May be a method that only takes a `self` argument, such as `Field(source='get_absolute_url')`, or may use dotted notation to traverse attributes, such as `Field(source='user.email')`.
2014-11-25 18:52:13 +03:00
The value `source='*'` has a special meaning, and is used to indicate that the entire object should be passed through to the field. This can be useful for creating nested representations, or for fields which require access to the complete object in order to determine the output representation.
2012-10-29 00:18:02 +04:00
Defaults to the name of the field.
2012-10-29 00:21:45 +04:00
### `read_only`
2012-10-29 00:18:02 +04:00
Set this to `True` to ensure that the field is used when serializing a representation, but is not used when creating or updating an instance during deserialization.
Defaults to `False`
### `write_only`
Set this to `True` to ensure that the field may be used when updating or creating an instance, but is not included when serializing the representation.
2012-10-29 00:18:02 +04:00
Defaults to `False`
### `required`
Normally an error will be raised if a field is not supplied during deserialization.
Set to false if this field is not required to be present during deserialization.
Defaults to `True`.
2014-11-25 18:52:13 +03:00
### `allow_null`
2014-11-25 20:35:27 +03:00
Normally an error will be raised if `None` is passed to a serializer field. Set this keyword argument to `True` if `None` should be considered a valid value.
2014-11-25 18:52:13 +03:00
Defaults to `False`
2012-10-29 00:18:02 +04:00
### `default`
If set, this gives the default value that will be used for the field if no input value is supplied. If not set the default behavior is to not populate the attribute at all.
May be set to a function or other callable, in which case the value will be evaluated each time it is used.
2012-10-29 00:18:02 +04:00
2014-11-25 18:52:13 +03:00
Note that setting a `default` value implies that the field is not required. Including both the `default` and `required` keyword arguments is invalid and will raise an error.
2012-10-29 00:18:02 +04:00
### `validators`
2014-11-25 18:52:13 +03:00
A list of validator functions which should be applied to the incoming field input, and which either raise a validation error or simply return. Validator functions should typically raise `serializers.ValidationError`, but Django's built-in `ValidationError` is also supported for compatibility with validators defined in the Django codebase or third party Django packages.
2012-10-29 00:18:02 +04:00
### `error_messages`
A dictionary of error codes to error messages.
2013-05-25 00:08:27 +04:00
### `label`
A short text string that may be used as the name of the field in HTML form fields or other descriptive elements.
### `help_text`
A text string that may be used as a description of the field in HTML form fields or other descriptive elements.
2012-10-29 00:18:02 +04:00
2014-11-25 18:52:13 +03:00
### `initial`
A value that should be used for pre-populating the value of HTML form fields.
### `style`
A dictionary of key-value pairs that can be used to control how renderers should render the field. The API for this should still be considered experimental, and will be formalized with the 3.1 release.
Two options are currently used in HTML form generation, `'input_type'` and `'base_template'`.
# Use <input type="password"> for the input.
password = serializers.CharField(
style={'input_type': 'password'}
)
# Use a radio input instead of a select input.
color_channel = serializers.ChoiceField(
choices=['red', 'green', 'blue']
style = {'base_template': 'radio.html'}
}
**Note**: The `style` argument replaces the old-style version 2.x `widget` keyword argument. Because REST framework 3 now uses templated HTML form generation, the `widget` option that was used to support Django built-in widgets can no longer be supported. Version 3.1 is planned to include public API support for customizing HTML form generation.
2012-10-05 22:26:57 +04:00
---
2012-10-05 20:02:33 +04:00
## Field
A generic, **read-only** field. You can use this field for any attribute that does not need to support write operations.
For example, using the following model.
from django.db import models
from django.utils.timezone import now
class Account(models.Model):
owner = models.ForeignKey('auth.user')
name = models.CharField(max_length=100)
created = models.DateTimeField(auto_now_add=True)
payment_expiry = models.DateTimeField()
def has_expired(self):
return now() > self.payment_expiry
A serializer definition that looked like this:
from rest_framework import serializers
class AccountSerializer(serializers.HyperlinkedModelSerializer):
expired = serializers.Field(source='has_expired')
class Meta:
2014-02-01 10:02:11 +04:00
model = Account
fields = ('url', 'owner', 'name', 'expired')
2012-10-21 18:34:07 +04:00
Would produce output similar to:
{
'url': 'http://example.com/api/accounts/3/',
'owner': 'http://example.com/api/users/12/',
'name': 'FooCorp business account',
'expired': True
}
2012-12-31 12:53:40 +04:00
By default, the `Field` class will perform a basic translation of the source value into primitive datatypes, falling back to unicode representations of complex datatypes when necessary.
2012-12-31 12:53:40 +04:00
You can customize this behavior by overriding the `.to_native(self, value)` method.
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
**TODO**: Note removal of `WritableField`
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
---
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
# Boolean fields
2014-11-25 20:35:27 +03:00
## BooleanField
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
A boolean representation.
2013-06-04 23:23:16 +04:00
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.BooleanField`.
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
## NullBooleanField
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
A boolean representation that also accepts `None` as a valid value.
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.NullBooleanField`.
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
---
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
# String fields
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
## CharField
2012-12-31 12:53:40 +04:00
2014-11-25 20:35:27 +03:00
A text representation. Optionally validates the text to be shorter than `max_length` and longer than `min_length`.
2012-10-08 18:46:52 +04:00
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.CharField` or `django.db.models.fields.TextField`.
2014-11-25 20:35:27 +03:00
**Signature:** `CharField(max_length=None, min_length=None, allow_none=False)`
2012-10-05 20:02:33 +04:00
2014-11-25 20:35:27 +03:00
## EmailField
2014-11-25 20:35:27 +03:00
A text representation, validates the text to be a valid e-mail address.
2012-10-21 20:40:49 +04:00
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.EmailField`
2014-11-25 20:35:27 +03:00
**Signature:** `EmailField(max_length=None, min_length=None)`
2014-11-25 20:35:27 +03:00
## RegexField
2012-10-21 20:40:49 +04:00
2014-11-25 20:35:27 +03:00
A text representation, that validates the given value matches against a certain regular expression.
2014-11-25 20:35:27 +03:00
The mandatory `regex` argument may either be a string, or a compiled python regular expression object.
2012-10-21 20:40:49 +04:00
2014-11-25 20:35:27 +03:00
Uses Django's `django.core.validators.RegexValidator` for validation.
2014-11-25 20:35:27 +03:00
Corresponds to `django.forms.fields.RegexField`
2014-11-25 20:35:27 +03:00
**Signature:** `RegexField(regex, max_length=None, min_length=None)`
## SlugField
2014-11-25 20:35:27 +03:00
A `RegexField` that validates the input against the pattern `[a-zA-Z0-9_-]+`.
Corresponds to `django.db.models.fields.SlugField`.
2014-01-09 20:12:30 +04:00
**Signature:** `SlugField(max_length=50, min_length=None)`
2014-11-25 20:35:27 +03:00
## URLField
2012-10-21 20:40:49 +04:00
2014-11-25 20:35:27 +03:00
A `RegexField` that validates the input against a URL matching pattern. Expects fully qualified URLs of the form `http://<host>/<path>`.
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.URLField`. Uses Django's `django.core.validators.URLValidator` for validation.
2014-11-25 20:35:27 +03:00
**Signature:** `URLField(max_length=200, min_length=None)`
2014-11-25 20:35:27 +03:00
---
2012-10-21 20:40:49 +04:00
2014-11-25 20:35:27 +03:00
# Numeric fields
2014-11-25 20:35:27 +03:00
## IntegerField
2012-11-20 18:38:50 +04:00
2014-11-25 20:35:27 +03:00
An integer representation.
2012-11-20 18:38:50 +04:00
2014-11-25 20:35:27 +03:00
Has two optional arguments:
2012-11-20 18:38:50 +04:00
2014-11-25 20:35:27 +03:00
- `max_value` Validate that the number provided is no greater than this value.
2012-11-20 18:38:50 +04:00
2014-11-25 20:35:27 +03:00
- `min_value` Validate that the number provided is no less than this value.
Corresponds to `django.db.models.fields.IntegerField`, `django.db.models.fields.SmallIntegerField`, `django.db.models.fields.PositiveIntegerField` and `django.db.models.fields.PositiveSmallIntegerField`.
## FloatField
A floating point representation.
Has two optional arguments:
- `max_value` Validate that the number provided is no greater than this value.
- `min_value` Validate that the number provided is no less than this value.
Corresponds to `django.db.models.fields.FloatField`.
## DecimalField
A decimal representation, represented in Python by a Decimal instance.
Has two required arguments, and three optional arguments:
- `max_digits` The maximum number of digits allowed in the number. Note that this number must be greater than or equal to decimal_places.
- `decimal_places` The number of decimal places to store with the number.
- `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `Decimal` objects should be returned. Defaults to the same value as the `COERCE_DECIMAL_TO_STRING` settings key, which will be `True` unless overridden. If `Decimal` objects are returned by the serializer, then the final output format will be determined by the renderer.
- `max_value` Validate that the number provided is no greater than this value.
- `min_value` Validate that the number provided is no less than this value.
#### Example usage
To validate numbers up to 999 with a resolution of 2 decimal places, you would use:
serializers.DecimalField(max_digits=5, decimal_places=2)
And to validate numbers up to anything less than one billion with a resolution of 10 decimal places:
serializers.DecimalField(max_digits=19, decimal_places=10)
This field also takes an optional argument, `coerce_to_string`. If set to `True` the representation will be output as a string. If set to `False` the representation will be left as a `Decimal` instance and the final representation will be determined by the renderer.
If unset, this will default to the same value as the `COERCE_DECIMAL_TO_STRING` setting, which is `True` unless set otherwise.
**Signature:** `DecimalField(max_digits, decimal_places, coerce_to_string=None)`
Corresponds to `django.db.models.fields.DecimalField`.
---
# Date and time fields
2012-11-20 18:38:50 +04:00
## DateTimeField
2012-10-21 20:40:49 +04:00
A date and time representation.
2014-11-25 20:35:27 +03:00
Corresponds to `django.db.models.fields.DateTimeField`.
When using `ModelSerializer` or `HyperlinkedModelSerializer`, note that any model fields with `auto_now=True` or `auto_now_add=True` will use serializer fields that are `read_only=True` by default.
If you want to override this behavior, you'll need to declare the `DateTimeField` explicitly on the serializer. For example:
class CommentSerializer(serializers.ModelSerializer):
created = serializers.DateTimeField()
2013-02-15 00:19:51 +04:00
class Meta:
model = Comment
2013-05-28 18:09:23 +04:00
Note that by default, datetime representations are determined by the renderer in use, although this can be explicitly overridden as detailed below.
2013-03-26 11:48:53 +04:00
In the case of JSON this means the default datetime representation uses the [ECMA 262 date time string specification][ecma262]. This is a subset of ISO 8601 which uses millisecond precision, and includes the 'Z' suffix for the UTC timezone, for example: `2013-01-29T12:34:56.123Z`.
2013-03-06 00:57:35 +04:00
**Signature:** `DateTimeField(format=None, input_formats=None)`
2014-11-25 20:35:27 +03:00
* `format` - A string representing the output format. If not specified, this defaults to the same value as the `DATETIME_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `datetime` objects should be returned by `to_representation`. In this case the datetime encoding will be determined by the renderer.
2013-05-28 19:13:12 +04:00
* `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `DATETIME_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`.
2013-03-06 00:57:35 +04:00
2014-11-25 20:35:27 +03:00
**DateTimeField format strings**: Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style datetimes should be used. (eg `'2013-01-29T12:34:56.000000Z'`)
2013-03-06 00:57:35 +04:00
## DateField
A date representation.
Corresponds to `django.db.models.fields.DateField`
**Signature:** `DateField(format=None, input_formats=None)`
2013-03-01 18:03:27 +04:00
2014-11-25 20:35:27 +03:00
* `format` - A string representing the output format. If not specified, this defaults to the same value as the `DATE_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `date` objects should be returned by `to_representation`. In this case the date encoding will be determined by the renderer.
2013-05-28 19:13:12 +04:00
* `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `DATE_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`.
2013-03-01 18:03:27 +04:00
2014-11-25 20:35:27 +03:00
**DateField format strings**: Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style dates should be used. (eg `'2013-01-29'`)
2013-03-01 18:03:27 +04:00
2013-02-15 00:19:51 +04:00
## TimeField
A time representation.
Corresponds to `django.db.models.fields.TimeField`
2013-03-06 00:57:35 +04:00
**Signature:** `TimeField(format=None, input_formats=None)`
2013-03-01 18:03:27 +04:00
2014-11-25 20:35:27 +03:00
* `format` - A string representing the output format. If not specified, this defaults to the same value as the `TIME_FORMAT` settings key, which will be `'iso-8601'` unless set. Setting to a format string indicates that `to_representation` return values should be coerced to string output. Format strings are described below. Setting this value to `None` indicates that Python `time` objects should be returned by `to_representation`. In this case the time encoding will be determined by the renderer.
2013-05-28 19:13:12 +04:00
* `input_formats` - A list of strings representing the input formats which may be used to parse the date. If not specified, the `TIME_INPUT_FORMATS` setting will be used, which defaults to `['iso-8601']`.
2013-03-01 18:03:27 +04:00
2014-11-25 20:35:27 +03:00
**TimeField format strings**: Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style times should be used. (eg `'12:34:56.000000'`)
2014-11-25 20:35:27 +03:00
---
2014-11-25 20:35:27 +03:00
# Choice selection fields
2013-04-15 14:40:18 +04:00
2014-11-25 20:35:27 +03:00
## ChoiceField
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
A field that can accept a value out of a limited set of choices. Takes a single mandatory argument.
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
- `choices` - A list of valid values, or a list of `(key, display_name)` tuples.
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
**Signature:** `ChoiceField(choices=())`
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
## MultipleChoiceField
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
A field that can accept a set of zero, one or many values, chosen from a limited set of choices. Takes a single mandatory argument. `to_internal_representation` returns a `set` containing the selected values.
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
- `choices` - A list of valid values, or a list of `(key, display_name)` tuples.
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
**Signature:** `MultipleChoiceField(choices=())`
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
---
2014-09-12 23:09:08 +04:00
2014-11-25 20:35:27 +03:00
# File upload fields
2013-04-15 14:40:18 +04:00
2012-11-16 03:22:08 +04:00
## FileField
2013-05-28 19:13:12 +04:00
A file representation. Performs Django's standard FileField validation.
2012-11-16 03:22:08 +04:00
Corresponds to `django.forms.fields.FileField`.
2014-11-25 20:35:27 +03:00
**Signature:** `FileField(max_length=None, allow_empty_file=False, use_url=UPLOADED_FILES_USE_URL)`
- `max_length` - designates the maximum length for the file name.
2012-11-16 03:22:08 +04:00
2014-11-25 20:35:27 +03:00
- `allow_empty_file` - designates if empty files are allowed.
2014-11-25 20:35:27 +03:00
- `use_url` - If set to `True` then URL string values will be used for the output representation. If set to `False` then filename string values will be used for the output representation. Defaults to the value of the `UPLOADED_FILES_USE_URL` settings key, which is `True` unless set otherwise.
2012-11-16 03:22:08 +04:00
## ImageField
2014-11-25 20:35:27 +03:00
An image representation. Validates the uploaded file content as matching a known image format.
2012-11-16 03:22:08 +04:00
Corresponds to `django.forms.fields.ImageField`.
Requires either the `Pillow` package or `PIL` package. The `Pillow` package is recommended, as `PIL` is no longer actively maintained.
2012-11-16 03:22:08 +04:00
Signature and validation is the same as with `FileField`.
2012-11-16 03:22:08 +04:00
---
2014-11-25 20:35:27 +03:00
**Note:** `FileFields` and `ImageFields` are only suitable for use with `MultiPartParser` or `FileUploadParser`. Most parsers, such as e.g. JSON don't support file uploads.
2013-01-29 13:15:08 +04:00
Django's regular [FILE_UPLOAD_HANDLERS] are used for handling uploaded files.
---
2012-11-16 03:22:08 +04:00
2014-11-25 20:35:27 +03:00
# Composite fields
## ListField
**TODO**
---
# Miscellaneous fields
## ReadOnlyField
**TODO**
## HiddenField
**TODO**
## ModelField
A generic field that can be tied to any arbitrary model field. The `ModelField` class delegates the task of serialization/deserialization to its associated model field. This field can be used to create serializer fields for custom model fields, without having to create a new custom serializer field.
The `ModelField` class is generally intended for internal use, but can be used by your API if needed. In order to properly instantiate a `ModelField`, it must be passed a field that is attached to an instantiated model. For example: `ModelField(model_field=MyModel()._meta.get_field('custom_field'))`
**Signature:** `ModelField(model_field=<Django ModelField instance>)`
## SerializerMethodField
This is a read-only field. It gets its value by calling a method on the serializer class it is attached to. It can be used to add any sort of data to the serialized representation of your object.
The field constructor accepts a single optional argument, which is the name of the method on the serializer to be called. If not included this defaults to `get_<field_name>`.
The method should accept a single argument (in addition to `self`), which is the object being serialized. It should return whatever you want to be included in the serialized representation of the object. For example:
from django.contrib.auth.models import User
from django.utils.timezone import now
from rest_framework import serializers
class UserSerializer(serializers.ModelSerializer):
days_since_joined = serializers.SerializerMethodField()
class Meta:
model = User
def get_days_since_joined(self, obj):
return (now() - obj.date_joined).days
---
# Custom fields
If you want to create a custom field, you'll probably want to override either one or both of the `.to_native()` and `.from_native()` methods. These two methods are used to convert between the initial datatype, and a primitive, serializable datatype. Primitive datatypes may be any of a number, string, date/time/datetime or None. They may also be any list or dictionary like object that only contains other primitive objects.
2014-02-03 09:21:08 +04:00
The `.to_native()` method is called to convert the initial datatype into a primitive, serializable datatype. The `from_native()` method is called to restore a primitive datatype into its initial representation.
## Examples
Let's look at an example of serializing a class that represents an RGB color value:
class Color(object):
"""
A color represented in the RGB colorspace.
"""
def __init__(self, red, green, blue):
assert(red >= 0 and green >= 0 and blue >= 0)
assert(red < 256 and green < 256 and blue < 256)
self.red, self.green, self.blue = red, green, blue
class ColourField(serializers.WritableField):
"""
Color objects are serialized into "rgb(#, #, #)" notation.
"""
def to_native(self, obj):
return "rgb(%d, %d, %d)" % (obj.red, obj.green, obj.blue)
def from_native(self, data):
data = data.strip('rgb(').rstrip(')')
red, green, blue = [int(col) for col in data.split(',')]
return Color(red, green, blue)
By default field values are treated as mapping to an attribute on the object. If you need to customize how the field value is accessed and set you need to override `.field_to_native()` and/or `.field_from_native()`.
As an example, let's create a field that can be used represent the class name of the object being serialized:
class ClassNameField(serializers.Field):
def field_to_native(self, obj, field_name):
"""
Serialize the object's class name.
"""
return obj.__class__.__name__
2014-03-17 12:33:18 +04:00
# Third party packages
2014-03-17 12:36:13 +04:00
The following third party packages are also available.
2014-03-17 12:33:18 +04:00
## DRF Compound Fields
2014-03-17 12:33:18 +04:00
The [drf-compound-fields][drf-compound-fields] package provides "compound" serializer fields, such as lists of simple values, which can be described by other fields rather than serializers with the `many=True` option. Also provided are fields for typed dictionaries and values that can be either a specific type or a list of items of that type.
## DRF Extra Fields
The [drf-extra-fields][drf-extra-fields] package provides extra serializer fields for REST framework, including `Base64ImageField` and `PointField` classes.
## django-rest-framework-gis
The [django-rest-framework-gis][django-rest-framework-gis] package provides geographic addons for django rest framework like a `GeometryField` field and a GeoJSON serializer.
## django-rest-framework-hstore
The [django-rest-framework-hstore][django-rest-framework-hstore] package provides an `HStoreField` to support [django-hstore][django-hstore] `DictionaryField` model field.
2012-12-31 12:53:40 +04:00
[cite]: https://docs.djangoproject.com/en/dev/ref/forms/api/#django.forms.Form.cleaned_data
[FILE_UPLOAD_HANDLERS]: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FILE_UPLOAD_HANDLERS
2013-03-26 11:48:53 +04:00
[ecma262]: http://ecma-international.org/ecma-262/5.1/#sec-15.9.1.15
2013-03-06 00:57:35 +04:00
[strftime]: http://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior
[django-widgets]: https://docs.djangoproject.com/en/dev/ref/forms/widgets/
2013-03-06 00:57:35 +04:00
[iso8601]: http://www.w3.org/TR/NOTE-datetime
2014-03-17 12:33:18 +04:00
[drf-compound-fields]: http://drf-compound-fields.readthedocs.org
[drf-extra-fields]: https://github.com/Hipo/drf-extra-fields
[django-rest-framework-gis]: https://github.com/djangonauts/django-rest-framework-gis
[django-rest-framework-hstore]: https://github.com/djangonauts/django-rest-framework-hstore
[django-hstore]: https://github.com/djangonauts/django-hstore