Skip to main content

A filter backend for Django REST framework.

Project description

rest-filters

PyPI version

rest-filters is an extension for Django REST Framework that parses query parameters and constructs the corresponding QuerySet objects.

See full documentation at: https://rest-filters.readthedocs.io/

Installation

Use your favorite Python package manager to install rest-filters:

pip install rest-filters

rest-filters supports Django 4.2 and Django 5.2, with REST framework 3.14 and above.

rest-filters uses semantic versioning: https://semver.org

A basic example

Here is a basic FilterSet declaration that allows filtering users by username, company, and creation date.

Check out getting started guide for more details.

from rest_filters import Filter, FilterSet
from rest_framework import serializers


class UserFilterSet(FilterSet[User]):
    username = Filter(
        serializers.CharField(min_length=2, required=False),
        lookup="icontains",
    )
    company = Filter(
        namespace=True,
        children=[
            Filter(
                serializers.IntegerField(min_value=1, required=False),
                lookup="id",
            ),
            Filter(
                serializers.CharField(min_length=2, required=False),
                lookup="name__icontains",
                param="name",
            ),
        ],
    )
    created = Filter(
        serializers.DateTimeField(required=False),
        namespace=True,
        children=[
            Filter(lookup="gte"),
            Filter(lookup="lte"),
        ],
    )

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

rest_filters-0.4.3.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rest_filters-0.4.3-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file rest_filters-0.4.3.tar.gz.

File metadata

  • Download URL: rest_filters-0.4.3.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.8

File hashes

Hashes for rest_filters-0.4.3.tar.gz
Algorithm Hash digest
SHA256 427904a1dc2506e1b8999e9daf35d673244136c0bb8ddbf84780926a8fe3d253
MD5 808155745d4edd4d0b4f14c340b370c1
BLAKE2b-256 b5eb49fcdd5fc5829498f858aa104319c86b48fd3973b5d345158e0837b96b06

See more details on using hashes here.

File details

Details for the file rest_filters-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for rest_filters-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5d220bcdf8be276fa7df326f0d1634b214becec84490da99465810d425088dcf
MD5 cf54ebeea4e29cb5afd57178e7d03823
BLAKE2b-256 8f56db0c56b80abd4fbc0c5895ea04192acec9dd0523c079225c35a317a8a287

See more details on using hashes here.

Supported by

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