├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── MANIFEST.IN ├── README.md ├── docs └── README.md ├── example_app ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── pagination.py ├── serializers.py ├── urls.py ├── validations.py └── views.py ├── filters ├── __init__.py ├── decorators.py ├── metaclasses.py ├── mixins.py ├── schema.py ├── tests │ ├── __init__.py │ ├── test_mixins.py │ ├── test_validations.py │ └── tests.py └── validations.py ├── setup.cfg └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/MANIFEST.IN -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /example_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/models.py -------------------------------------------------------------------------------- /example_app/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/pagination.py -------------------------------------------------------------------------------- /example_app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/serializers.py -------------------------------------------------------------------------------- /example_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/urls.py -------------------------------------------------------------------------------- /example_app/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/validations.py -------------------------------------------------------------------------------- /example_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/example_app/views.py -------------------------------------------------------------------------------- /filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filters/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/decorators.py -------------------------------------------------------------------------------- /filters/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/metaclasses.py -------------------------------------------------------------------------------- /filters/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/mixins.py -------------------------------------------------------------------------------- /filters/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/schema.py -------------------------------------------------------------------------------- /filters/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/tests/__init__.py -------------------------------------------------------------------------------- /filters/tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/tests/test_mixins.py -------------------------------------------------------------------------------- /filters/tests/test_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/tests/test_validations.py -------------------------------------------------------------------------------- /filters/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/tests/tests.py -------------------------------------------------------------------------------- /filters/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/filters/validations.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manjitkumar/drf-url-filters/HEAD/setup.py --------------------------------------------------------------------------------