├── .gitignore ├── LICENSE ├── MANIFEST.in ├── readme.rst ├── requirements.txt ├── requirements ├── requirements-codestyle.txt ├── requirements-packaging.txt └── requirements-testing.txt ├── rest_framework_friendly_errors ├── __init__.py ├── field_map.py ├── handlers.py ├── mixins.py ├── settings.py └── utils.py ├── runtests.py ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── exceptions.py ├── models.py ├── serializers.py ├── test_exception_handler.py ├── test_models_serializers.py ├── test_serializers.py ├── test_utils.py ├── test_views.py ├── urls.py ├── utils.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE readme.rst 2 | -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/readme.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements-codestyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/requirements/requirements-codestyle.txt -------------------------------------------------------------------------------- /requirements/requirements-packaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/requirements/requirements-packaging.txt -------------------------------------------------------------------------------- /requirements/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/requirements/requirements-testing.txt -------------------------------------------------------------------------------- /rest_framework_friendly_errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/__init__.py -------------------------------------------------------------------------------- /rest_framework_friendly_errors/field_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/field_map.py -------------------------------------------------------------------------------- /rest_framework_friendly_errors/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/handlers.py -------------------------------------------------------------------------------- /rest_framework_friendly_errors/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/mixins.py -------------------------------------------------------------------------------- /rest_framework_friendly_errors/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/settings.py -------------------------------------------------------------------------------- /rest_framework_friendly_errors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/rest_framework_friendly_errors/utils.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/exceptions.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/serializers.py -------------------------------------------------------------------------------- /tests/test_exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/test_exception_handler.py -------------------------------------------------------------------------------- /tests/test_models_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/test_models_serializers.py -------------------------------------------------------------------------------- /tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/test_serializers.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FutureMind/drf-friendly-errors/HEAD/tests/views.py --------------------------------------------------------------------------------