Metadata-Version: 1.1
Name: djangorestframework-custom-filters
Version: 1.0.0
Summary: Custom filters for Django REST Framework
Home-page: https://github.com/unistra/django-rest-framework-custom-filters
Author: Morgan Bohn
Author-email: morgan.bohn@unistra.fr
License: UNKNOWN
Download-URL: https://pypi.python.org/pypi/djangorestframework-custom-filters
Description: 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.0
        
        Installation
        ------------
        
        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_filters
        
            class MyFilter(django_filters.FilterSet):
                since = rest_framework_custom_filters.IsoDateTimeFilter(name='_per_modif', lookup_type='gte')
                ...
        
Keywords: django,REST,rest_framework,filters
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
