Skip to main content

Construct arbitrarily complex Django "Q" filters from flat data, such as query parameters.

Project description

https://travis-ci.org/bennullgraham/filternaut.svg?branch=master Code Health

Filternaut is a simple library which generates arbitrarily complex Django Q-objects from simple data. It fits nicely into situations where users provide data which you want to filter a queryset with.

Filternaut is indirectly a collection of fields, but it differs from Django forms in that you specify the logical relationships between fields, as well their names and types.

Filternaut is similar to Django Filters, but does not provide any machinery for rendering a user interface and does not inspect your models to autogenerate filters. However, Django Filters chains many calls to .filter() which means OR-like behaviour with more than one join. Filternaut supports either behaviour.

Quickstart

# filters are combined using logical operators
filters = (
    DateTimeFilter('created_date', lookups=['lt', 'gt']) &
    CharFilter('username', lookups=['icontains']))

# they can read their values from anything dict-like
filters.parse(request.GET)

# and have a form-like 'validity pattern'.
if filters.valid:
    queryset = queryset.filter(filters.Q)
else:
    raise HttpResponseBadRequest(json.dumps(filters.errors))

Installation

$ pip install django-filternaut

Filternaut is compatible with:

  • Python 3

  • Django 2.2 and 3.0

  • Django REST Framework 3.11 (optional)

Python 2.7 support is still in the codebase but no longer tested. You are welcome to try your luck.

Documentation

See https://filternaut.readthedocs.org for full documentation.

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-filternaut-0.0.14.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

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

django_filternaut-0.0.14-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file django-filternaut-0.0.14.tar.gz.

File metadata

  • Download URL: django-filternaut-0.0.14.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.12.4 setuptools/33.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.3rc1

File hashes

Hashes for django-filternaut-0.0.14.tar.gz
Algorithm Hash digest
SHA256 c4536ba0c5bd622dcfca67eb92efc6bf6d6c883910fd609ff0ba4ab0d46abb81
MD5 7a39b54521b3f36cf3b4d3931f9b2718
BLAKE2b-256 6351f49542c091776f7acb421551f8d08832979c3c88b3fc45d64fe8c6a9afc6

See more details on using hashes here.

File details

Details for the file django_filternaut-0.0.14-py3-none-any.whl.

File metadata

  • Download URL: django_filternaut-0.0.14-py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.12.4 setuptools/33.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.3rc1

File hashes

Hashes for django_filternaut-0.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 093915fe52fe4f55d7ca65d93b1030c39aeabfed0e70e43b0649be24e5f5016f
MD5 fc2581ab3b057005aee5b01ce749318a
BLAKE2b-256 6cf91d857e41a7ef566d6b87adcaba789710ae42266781aed6e9b7532781a5d6

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