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, 3.9

  • Django: 2.2, 3.0, 3.1

  • 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.4.0.tar.gz (146.9 kB view details)

Uploaded Source

Built Distribution

django_filter-2.4.0-py3-none-any.whl (73.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-filter-2.4.0.tar.gz
  • Upload date:
  • Size: 146.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 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.4.0.tar.gz
Algorithm Hash digest
SHA256 84e9d5bb93f237e451db814ed422a3a625751cbc9968b484ecc74964a8696b06
MD5 b4ae8c342f517e7bfd3701bf5fba6281
BLAKE2b-256 7bcfadae3e55995ea27e1dceb493e0226557d4207d8819ddb99591df5204a471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_filter-2.4.0-py3-none-any.whl
  • Upload date:
  • Size: 73.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 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.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e00d32cebdb3d54273c48f4f878f898dced8d5dfaad009438fe61ebdf535ace1
MD5 8fa5aff9a048b227464b1512fc1edd0d
BLAKE2b-256 712bb2fe483c3095b6222725dd05f9ad9e6ed6cb7347c154fdbd80238d36f1a8

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