├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── drf_excel ├── __init__.py ├── fields.py ├── mixins.py ├── renderers.py └── utilities.py ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── settings.py ├── test_fields.py ├── test_renderers.py ├── test_utilities.py ├── test_viewset_mixin.py ├── testapp │ ├── __init__.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ └── views.py └── urls.py ├── tox.ini └── uv.lock /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/README.md -------------------------------------------------------------------------------- /drf_excel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drf_excel/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/drf_excel/fields.py -------------------------------------------------------------------------------- /drf_excel/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/drf_excel/mixins.py -------------------------------------------------------------------------------- /drf_excel/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/drf_excel/renderers.py -------------------------------------------------------------------------------- /drf_excel/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/drf_excel/utilities.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/test_renderers.py -------------------------------------------------------------------------------- /tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/test_utilities.py -------------------------------------------------------------------------------- /tests/test_viewset_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/test_viewset_mixin.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/testapp/serializers.py -------------------------------------------------------------------------------- /tests/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/testapp/views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/drf-excel/HEAD/uv.lock --------------------------------------------------------------------------------