Django Admin action to export selected items as CSV-formatted data. Current version: 2.4.1 (last release Apr 2023). Low maintenance; minimal breaking changes. Use for simple admin CSV exports without external dependencies.
pip install django-admin-csvexportNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Add ExportCsvMixin to your ModelAdmin to enable CSV export action.
Use 'from admin_csv import ExportCsvMixin'
Install openpyxl: pip install openpyxl
Use 'action' with 'export_as_csv' or customize to include all items via admin action customisation.
Consider alternatives if new features needed, but basic CSV export still works.