# django-fast-export **Repository Path**: mirrors_matthiask/django-fast-export ## Basic Information - **Project Name**: django-fast-export - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-27 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ================== django-fast-export ================== Utilities for quickly streaming CSV responses to the client Thanks, https://docs.djangoproject.com/en/4.0/howto/outputting-csv/ Example usage: .. code-block:: python from django_fast_export.csv import StreamingCSVResponse response = StreamingCSVResponse.from_queryset(queryset) Or with additional fields: .. code-block:: python from django_fast_export.csv import StreamingCSVResponse, all_values, all_verbose_names def generate(): yield (all_verbose_names(queryset.model) + ["Lösungen"]) yield from ( (all_values(instance) + [instance.get_solutions()]) for instance in queryset ) response = StreamingCSVResponse(generate())