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.11.tar.gz (8.6 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.11-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-filternaut-0.0.11.tar.gz
  • Upload date:
  • Size: 8.6 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.11.tar.gz
Algorithm Hash digest
SHA256 e899bd3c8e30f55e77eeea9294093a87da10b095fe2d4a68024f806785768b05
MD5 e6fa77b858260edcb5db5eb097407735
BLAKE2b-256 673a06e18c3f56ad82f64b9c67fb27962a0a34ba7fd17d266fafbed8d0eefbb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_filternaut-0.0.11-py3-none-any.whl
  • Upload date:
  • Size: 11.7 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.11-py3-none-any.whl
Algorithm Hash digest
SHA256 ea59d2c5a40e0b0fdd5847503372c33f30e1a71cb7d62525829f9aa65d3b995b
MD5 26787815eb0c6aed7d662b5b529a7c05
BLAKE2b-256 7b5fb71b492b68d1463f2d881f6dc99421c3308d1517fb215c109dca98fc8ed8

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