Chained relations and filtering for Django REST Framework
Project description
django-rest-framework-chain is an extension to Django REST Framework that allows arbitrary chaining of both relations and lookup filters.
Installation
$ pip install djangorestframework-chain
Requirements
Python 2.6+
Django 1.4.5+
Usage
Chaining filtering through relations
To enable chained filtering through relations:
views.py
from rest_framework import viewsets
import django_filters
from rest_framework_chain import ChainedFilterSet, RelatedField
class PageFilter(ChainedFilterSet):
title = django_filters.CharFilter(name='title')
author = RelatedFilter(UserFilter, name='author')
# Just a regular FilterSet
class UserFilter(django_filters.FilterSet):
username = django_filters.CharFilter(name='username')
...
# Then just use the PageFilter as you would any other FilterSet:
class PageView(viewsets.ModelViewSet):
...
filter_class = PageFilter
then we can automatically chain our filters through the author relation, as so:
/api/page/?author__username=philipn
Allowing any lookup type on a field
We can use the AllLookupsFilter to allow all possible lookup types on a particular field. While we could otherwise specify these by hand, e.g.:
class ProductFilter(django_filters.FilterSet):
min_price = django_filters.NumberFilter(name="price", lookup_type='gte')
...
to allow the price__gte lookup. But this gets cumbersome, and we sometimes want to allow any possible lookups on particular fields. We do this by using AllLookupsFilter:
views.py
from rest_framework import viewsets
import django_filters
from rest_framework_chain import ChainedFilterSet, AllLookupsFilter
class PageFilter(ChainedFilterSet):
title = AllLookupsFilter(name='title')
...
then we can use any possible lookup on the title field, e.g.:
/api/page/?title__icontains=park
or
/api/page/?title__startswith=The
and also filter on the default lookup (exact), as usual:
/api/page/?title=The%20Park
License
Copyright (c) 2013 Philip Neustrom <philipn@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file djangorestframework-chain-0.1.1.tar.gz
.
File metadata
- Download URL: djangorestframework-chain-0.1.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4487d651080bdd5a40860794b79d175ffea30be13b4616e1c681faf3ebdcc7a1 |
|
MD5 | 1d7404797eb0d936f28c5ebe41ae3f9e |
|
BLAKE2b-256 | 2000d2a5ef15951abe2fd1e84907fc41a0c424f0be92bcedf9169dab69da589a |