├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── example ├── example │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py └── manage.py ├── requirements.txt ├── rest_framework_csv ├── __init__.py ├── misc.py ├── models.py ├── orderedrows.py ├── parsers.py ├── renderers.py ├── testfixtures │ └── nonewlines.csv └── tests.py ├── setup.py ├── testsettings.py └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/README.rst -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/example/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/models.py -------------------------------------------------------------------------------- /example/example/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/serializers.py -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/views.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/example/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_framework_csv/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.0.2' 2 | -------------------------------------------------------------------------------- /rest_framework_csv/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/rest_framework_csv/misc.py -------------------------------------------------------------------------------- /rest_framework_csv/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_csv/orderedrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/rest_framework_csv/orderedrows.py -------------------------------------------------------------------------------- /rest_framework_csv/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/rest_framework_csv/parsers.py -------------------------------------------------------------------------------- /rest_framework_csv/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/rest_framework_csv/renderers.py -------------------------------------------------------------------------------- /rest_framework_csv/testfixtures/nonewlines.csv: -------------------------------------------------------------------------------- 1 | Name,ID,Country Kathryn Miller,67,United States Jen Mark,78,Canada -------------------------------------------------------------------------------- /rest_framework_csv/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/rest_framework_csv/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/setup.py -------------------------------------------------------------------------------- /testsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/testsettings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjumbewu/django-rest-framework-csv/HEAD/tox.ini --------------------------------------------------------------------------------