Skip to main content

Django-filter is a reusable Django application for allowing users to filter querysets dynamically.

Project description

Django-filter is a reusable Django application allowing users to declaratively add dynamic QuerySet filtering from URL parameters.

Full documentation on read the docs.

https://dev.azure.com/noumenal/Django%20Filter/_apis/build/status/Django%20Filter-CI https://travis-ci.org/carltongibson/django-filter.svg?branch=master https://codecov.io/gh/carltongibson/django-filter/branch/develop/graph/badge.svg https://badge.fury.io/py/django-filter.svg

Requirements

  • Python: 3.5, 3.6, 3.7, 3.8

  • Django: 2.2, 3.0

  • DRF: 3.10+

From Version 2.0 Django Filter is Python 3 only. If you need to support Python 2.7 use the version 1.1 release.

Installation

Install using pip:

pip install django-filter

Then add 'django_filters' to your INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'django_filters',
]

Usage

Django-filter can be used for generating interfaces similar to the Django admin’s list_filter interface. It has an API very similar to Django’s ModelForms. For example, if you had a Product model you could have a filterset for it with the code:

import django_filters

class ProductFilter(django_filters.FilterSet):
    class Meta:
        model = Product
        fields = ['name', 'price', 'manufacturer']

And then in your view you could do:

def product_list(request):
    filter = ProductFilter(request.GET, queryset=Product.objects.all())
    return render(request, 'my_app/template.html', {'filter': filter})

Usage with Django REST Framework

Django-filter provides a custom FilterSet and filter backend for use with Django REST Framework.

To use this adjust your import to use django_filters.rest_framework.FilterSet.

from django_filters import rest_framework as filters

class ProductFilter(filters.FilterSet):
    class Meta:
        model = Product
        fields = ('category', 'in_stock')

For more details see the DRF integration docs.

Support

If you have questions about usage or development you can join the mailing list.

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

django-filter-2.3.0.tar.gz (146.4 kB view details)

Uploaded Source

Built Distribution

django_filter-2.3.0-py3-none-any.whl (73.1 kB view details)

Uploaded Python 3

File details

Details for the file django-filter-2.3.0.tar.gz.

File metadata

  • Download URL: django-filter-2.3.0.tar.gz
  • Upload date:
  • Size: 146.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.7

File hashes

Hashes for django-filter-2.3.0.tar.gz
Algorithm Hash digest
SHA256 11e63dd759835d9ba7a763926ffb2662cf8a6dcb4c7971a95064de34dbc7e5af
MD5 8400f1656c1746d66a612a2bfdd422eb
BLAKE2b-256 13b9ab3342362cf7663ba50a53a5e6cb49047a5e9845af05f8a2c4bfa5a41a85

See more details on using hashes here.

File details

Details for the file django_filter-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: django_filter-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 73.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/46.1.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.7

File hashes

Hashes for django_filter-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 616848eab6fc50193a1b3730140c49b60c57a3eda1f7fc57fa8505ac156c6c75
MD5 6fd92a35593d54f706237c56a7092e0a
BLAKE2b-256 3594e516d7f41adecb9fd280c89feceb98fa58f6966a583035c8016ed455c4e5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page