Skip to main content

Django Natural Language Filter package

Project description

PyPi Version PyPi Downloads Tests Weekly Documentation Code style: black

django-nlf

Django Natural Language Filter

Installation

Install using pip,

pip install django-nlf

Then you can use the DjangoNLFilter with a queryset and a string, containing the filter expression. Please see the Language Reference for more details.

from django_nlf import DjangoNLFilter
from .models import Article

nl_filter = DjangoNLFilter()
qs = Article.objects.all()
q = 'author.username is john or title contains news'
# equivalent to Article.objects.filter(Q(author__username="user") | Q(title__icontains="news"))
articles = nl_filter.filter(qs, q)

# Nested logical operators are also supported:
q = 'author.username is john and (title contains news or created_at <= 2020-06-05)'
# equivalent to
# Article.objects.filter(
#   Q(author__username="user") & (Q(title__icontains="news") | Q(created_at__lte="2020-06-05"))
# )
articles = nl_filter.filter(qs, q)

Rest framework integration

You just need to simply add the natural language filter backend to your filter backends list.

REST_FRAMEWORK = {
  ...
  'DEFAULT_FILTER_BACKENDS': (
    'django_nlf.rest_framework.DjangoNLFilterBackend',
  ),
  ...
}

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-nlf-0.0.1.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

django_nlf-0.0.1-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

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