• Stars
    star
    333
  • Rank 125,818 (Top 3 %)
  • Language
    Python
  • License
    Other
  • Created about 9 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Django URL Filter provides a safe way to filter data via human-friendly URLs.

Django URL Filter

https://readthedocs.org/projects/django-url-filter/badge/?version=latest

Django URL Filter provides a safe way to filter data via human-friendly URLs.

Overview

The main goal of Django URL Filter is to provide an easy URL interface for filtering data. It allows the user to safely filter by model attributes and also allows to specify the lookup type for each filter (very much like Django's filtering system in ORM).

For example the following will retrieve all items where the id is 5 and title contains "foo":

example.com/listview/?id=5&title__contains=foo

In addition to basic lookup types, Django URL Filter allows to use more sophisticated lookups such as in or year. For example:

example.com/listview/?id__in=1,2,3&created__year=2013

Requirements

  • Python 2.7, 3.x, pypy or pypy3
  • Django 1.8+ (there are plans to support older Django versions)
  • Django REST Framework 2 or 3 (only if you want to use DRF integration)

Installing

Easiest way to install this library is by using pip:

$ pip install django-url-filter

Usage Example

To make example short, it demonstrates Django URL Filter integration with Django REST Framework but it can be used without DRF (see below).

from url_filter.integrations.drf import DjangoFilterBackend


class UserViewSet(ModelViewSet):
    queryset = User.objects.all()
    serializer_class = UserSerializer
    filter_backends = [DjangoFilterBackend]
    filter_fields = ['username', 'email']

Alternatively filterset can be manually created and used directly to filter querysets:

from django.http import QueryDict
from url_filter.filtersets import ModelFilterSet


class UserFilterSet(ModelFilterSet):
    class Meta(object):
        model = User

query = QueryDict('email__contains=gmail&joined__gt=2015-01-01')
fs = UserFilterSet(data=query, queryset=User.objects.all())
filtered_users = fs.filter()

Above will automatically allow the use of all of the Django URL Filter features. Some possibilities:

# get user with id 5
example.com/users/?id=5

# get user with id either 5, 10 or 15
example.com/users/?id__in=5,10,15

# get user with id between 5 and 10
example.com/users/?id__range=5,10

# get user with username "foo"
example.com/users/?username=foo

# get user with username containing case insensitive "foo"
example.com/users/?username__icontains=foo

# get user where username does NOT contain "foo"
example.com/users/?username__icontains!=foo

# get user who joined in 2015 as per user profile
example.com/users/?profile__joined__year=2015

# get user who joined in between 2010 and 2015 as per user profile
example.com/users/?profile__joined__range=2010-01-01,2015-12-31

# get user who joined in after 2010 as per user profile
example.com/users/?profile__joined__gt=2010-01-01

Features

  • Human-friendly URLs

    Filter querystring format looks very similar to syntax for filtering in Django ORM. Even negated filters are supported! Some examples:

    example.com/users/?email__contains=gmail&joined__gt=2015-01-01
    example.com/users/?email__contains!=gmail  # note !
    
  • Related models

    Support related fields so that filtering can be applied to related models. For example:

    example.com/users/?profile__nickname=foo
    
  • Decoupled filtering

    How URLs are parsed and how data is filtered is decoupled. This allows the actual filtering logic to be decoupled from Django hence filtering is possible not only with Django ORM QuerySet but any set of data can be filtered (e.g. SQLAlchemy query objects) assuming corresponding filtering backend is implemented.

  • Usage-agnostic

    This library decouples filtering from any particular usage-pattern. It implements all the basic building blocks for creating filtersets but it does not assume how they will be used. To make the library easy to use, it ships with some integrations with common usage patterns like integration with Django REST Framework. This means that its easy to use in custom applications with custom requirements (which is probably most of the time!)

More Repositories

1

django-rest-framework-bulk

Django REST Framework bulk CRUD view mixins
Python
520
star
2

alchemy-mock

SQLAlchemy mock helpers.
Python
82
star
3

importanize

Utility for organizing Python imports using PEP8 or custom rules
Python
66
star
4

Django-jQuery-File-Uploader-Integration-demo

A simple example of how to integrate jQuery File Uploader in Django while preserving Django's CSRF protection
JavaScript
31
star
5

django-gevent-deploy

Hook to manage.py to be able to start gevent WSGI server
Python
30
star
6

django-url-filter-deprecated

DEPRECATED. Please use https://github.com/miki725/django-url-filter instead.
17
star
7

xunitmerge

Utility for merging multiple XUnit xml reports into a single xml report.
Python
15
star
8

django-sqrl

Django auth implementation for SQRL (https://www.grc.com/sqrl/sqrl.htm)
Python
14
star
9

django-sub-query

Django app which uses SQL sub-queries to solve some ORM limitations
Python
11
star
10

tno

Set of web tools following TNO cryptography principle
Python
8
star
11

django-auxilium

Django utility app to help in Django development
Python
8
star
12

md2pdf-ieee-sample

TeX
5
star
13

backblaze-b2

Library for interacting with Backblaze B2 object storage
Python
4
star
14

formslayer

Django application which implements RESTful API for working with PDFs
Python
3
star
15

encode.js

Html encode/decode
JavaScript
3
star
16

md2pdf-ieee

Templates to convert md2pdf to ieee
TeX
2
star
17

neovim-sh

Python
2
star
18

django-debug-toolbar-alchemy

Django Debug Toolbar panel for SQLAlchemy.
Python
2
star
19

django-multires

Django app which provides db-backed multiple resolutions for images
2
star
20

.dotfiles

Lua
2
star
21

editable

In place editing made easy
JavaScript
2
star
22

pyzenfolio

Light-weight Zenfolio API wrapper
Python
1
star
23

applied_crypto_2022_spring_ta

Python
1
star
24

hint

Bash CLI for devhints.io
Shell
1
star
25

fish-docker

Shell
1
star
26

mro-tools

Various cli tools related to MRO. Useful for debugging complex class strictures.
Python
1
star