1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
======================
Django import / export
======================
django-import-export is a Django application and library for importing and
exporting data with included admin integration.
**Features:**
* Import from / Export to multiple file formats
* Manage import / export of object relations, data types
* Handle create / update / delete / skip during imports
* Extensible API
* Support multiple formats (Excel, CSV, JSON, ...
and everything else that `tablib`_ supports)
* Bulk import
* Admin integration for importing / exporting
* Preview import changes
* Export data respecting admin filters
.. figure:: _static/images/django-import-export-change.png
A screenshot of the change view with Import and Export buttons.
.. toctree::
:maxdepth: 2
:caption: User Guide
installation
getting_started
advanced_usage
admin_integration
import_workflow
export_workflow
bulk_import
management_commands
celery
testing
faq
screenshots
release_notes
changelog
.. toctree::
:maxdepth: 2
:caption: API documentation
api_admin
api_resources
api_widgets
api_fields
api_instance_loaders
api_mixins
api_tmp_storages
api_results
api_forms
api_exceptions
.. toctree::
:maxdepth: 2
:caption: Developers
contributing
.. _`tablib`: https://github.com/jazzband/tablib
|