├── .gitignore ├── LICENSE ├── README.md ├── drf_mongo_filters ├── __init__.py ├── backend.py ├── fields.py ├── filters.py └── filtersets.py ├── requirements.txt ├── runtests.py ├── setup.py └── tests ├── __init__.py ├── models.py ├── mongoutils.py ├── test_backend.py ├── test_filtering.py ├── test_filtersets.py └── test_geofiltering.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/README.md -------------------------------------------------------------------------------- /drf_mongo_filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/drf_mongo_filters/__init__.py -------------------------------------------------------------------------------- /drf_mongo_filters/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/drf_mongo_filters/backend.py -------------------------------------------------------------------------------- /drf_mongo_filters/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/drf_mongo_filters/fields.py -------------------------------------------------------------------------------- /drf_mongo_filters/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/drf_mongo_filters/filters.py -------------------------------------------------------------------------------- /drf_mongo_filters/filtersets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/drf_mongo_filters/filtersets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/mongoutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/mongoutils.py -------------------------------------------------------------------------------- /tests/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/test_backend.py -------------------------------------------------------------------------------- /tests/test_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/test_filtering.py -------------------------------------------------------------------------------- /tests/test_filtersets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/test_filtersets.py -------------------------------------------------------------------------------- /tests/test_geofiltering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwiglydee/drf-mongo-filters/HEAD/tests/test_geofiltering.py --------------------------------------------------------------------------------