Django Rest framework Extensions
Project description
Django REST framework Ext
Some extensions of Django REST framework.
Pagination
DynamicSizePageNumberPagination
Support setting PAGE_QUERY_PARAM
(default is page
) parameter to specify the page size for querying.
Return all data when the PAGE_QUERY_PARAM
(default is limit
) parameter is not specified.
Usage:
REST_FRAMEWORK = {
...
'DEFAULT_PAGINATION_CLASS': 'djangorestframework_ext.pagination.DynamicSizePageNumberPagination',
...
}
REST_FRAMEWORK_EXT = {
'PAGE_QUERY_PARAM': 'page', # Default is page (If not set)
'PAGE_SIZE_QUERY_PARAM': 'limit',
}
Request:
GET https://api.example.org/accounts/?page=4&limit=100
Permissions
IsCurrentUser
Determine whether the object is the current login user.
Usage:
from djangorestframework_ext.permissions import IsCurrentUser
IsSuperuser
Determine whether the request user is superuser.
Usage:
from djangorestframework_ext.permissions import IsSuperuser
Serializers
RecursiveSerializer
Usage:
from rest_framework import serializers
from djangorestframework_ext.serializers import RecursiveSerializer
from django.db import models
class Department(models.Model):
name = models.CharField('Name', max_length=100)
parent = models.ForeignKey('self', related_name='children', verbose_name='Parent')
class DepartmentTreeListSerializer(serializers.ModelSerializer):
children = RecursiveSerializer(many=True)
class Meta:
model = Department
fields = '__all__'
Response:
[{
"id": 1,
"children": [{
"id": 2,
"children": [{
"id": 3,
"children": [{
"id": 4,
"children": [],
"name": "aaa",
"parent": 3
}],
"name": "ddd",
"parent": 2
}, {
"id": 5,
"children": [{
"id": 6,
"children": [],
"name": "eee",
"parent": 7
}],
"name": "xxx",
"parent": 2
}],
"name": "yyy",
"parent": 1
}],
"name": "zzz",
"parent": null
}]
ExportModelSerializer
Use verbose name or label replace field name.
Usage:
from djangorestframework_ext.serializers import ExportModelSerializer
from django.db import models
class Department(models.Model):
name = models.CharField('Name', max_length=100)
creator = models.ForeignKey(User, null=False, verbose_name='Creator')
class DepartmentExportSerializer(ExportModelSerializer):
creator = serializers.StringRelatedField(label='Creator', read_only=True)
class Meta:
model = Department
fields = ['name', 'creator']
Response:
[{
"Name": "aaa",
"Creator": "John"
}]
DynamicFieldsModelSerializer
It's copied from official document.
When using DynamicFieldsModelSerializer
, the settings in Meta
such as exclude
and fields
are ignored. Instead, the fields
specified in the parameter that is passed in will take precedence.
Mixins
MultiFieldLookupMixin
From Multiple lookup_fields for django rest framework.
Used for multi field lookup.
Usage:
views.py:
class ExampleViewSet(MultipleFieldLookupMixin, viewsets.ModelViewSet):
lookup_fields = ['pk', 'field_one', 'field_two']
urls.py:
urlpatterns = [
path(r'examples/<str:field_one>/<str:field_two>/', views.ExampleViewSet.as_view({'get': 'retrieve'}))
]
ViewSets
ExportModelViewSet
Use epxort
action and ExportPermission
to exporting data.
Utils
get_default_query_params
Get default query params.
Views
exception_handler
Some exception handlers.
Usage:
REST_FRAMEWORK = {
...
'EXCEPTION_HANDLER': 'djangorestframework_ext.views.exception_handler',
...
}
Validators
ActiveValidator
Validate whether the corresponding object is active using the specified key (default is is_active
) and value (default is True
).
Usage:
from rest_framework import serializers
class MySerializer(serializers.ModelSerializer):
relation = serializers.PrimaryKeyRelatedField(queryset=Relation.objects.all(), validators=[ActiveValidator()])
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
Built Distribution
Hashes for djangorestframework-ext-0.21.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08180b428481ab226794890145dac7ad9c35e1a0b839b8d7621833237e4285c9 |
|
MD5 | e9ad33e5dad1f509220f460d95fd9044 |
|
BLAKE2b-256 | d4f627aa3872237ad7052cbf988b1d0ce4ef296ef09a34992a2eedb41f2b0f78 |
Hashes for djangorestframework_ext-0.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | adff631d610124ccc158dced12a7b80535dcbacc30cf91cd1fac01f6b4884190 |
|
MD5 | 24024cb21e320ad468c8a582b7139d53 |
|
BLAKE2b-256 | a161fbd5394818d6dc2349fe16db1587ad7a93e958afce5185463c4bcbcab17e |