Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unistra/django-rest-framework-custom-filters
Custom filters for Django Rest Framework
https://github.com/unistra/django-rest-framework-custom-filters
Last synced: 10 days ago
JSON representation
Custom filters for Django Rest Framework
- Host: GitHub
- URL: https://github.com/unistra/django-rest-framework-custom-filters
- Owner: unistra
- License: gpl-2.0
- Created: 2015-06-08T15:40:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-09T11:21:04.000Z (over 9 years ago)
- Last Synced: 2024-10-20T11:39:14.687Z (28 days ago)
- Language: Python
- Size: 137 KB
- Stars: 0
- Watchers: 21
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
django-rest-framework-custom-filters
====================================Custom filters for django rest framework
Compatibility
-------------work with :
* Python 2.7 / 3.4
* Dango 1.6 / 1.7
* Django Rest Framework 2.4 / 3.0Installation
------------Install the package from pypi: ::
pip install djangorestframework-custom-filters
Add the application in your django settings: ::
DJANGO_APPS = ('rest_framework_custom_filters',)
Usage
-----Use it in your filters.py : ::
import django_filters
import rest_framework_custom_filtersclass MyFilter(django_filters.FilterSet):
since = rest_framework_custom_filters.IsoDateTimeFilter(name='_per_modif', lookup_type='gte')
...