Dump the entire database to xlsx workbook with a sheet per model
Project description
Export the entire database to an Excel workbook with a sheet per model.
Installation
$ pip install django-exportdb
Add exportdb to INSTALLED_APPS, and make sure that django.contrib.admin is in there as well.
Add
url(r’^admin/exportdb/’, include(‘exportdb.urls’))
to your urls.py, make sure that it comes before url(r’^admin/’, …) if you hook it into the admin.
Configuration
- EXPORTDB_EXPORT_CONF
Configures what models and fields are exported. Example:
EXPORT_CONF = { 'models': { 'auth.User': { 'fields': ('username',), 'resource_class': 'app.tests.utils.UserResource' }, 'auth.Group': { 'resource_class': 'app.tests.utils.GroupResource' }, 'auth.Permission': { 'fields': ('name',) } } }
- EXPORTDB_CONFIRM_FORM
Form shown to confirm the export
- EXPORTDB_EXPORT_ROOT
The filesystem path where the exports are stored
- EXPORTDB_PERMISSION
Who can access the export. By default only superusers have access.
To allow all staff users to use the export add the following to your settings:
EXPORTDB_PERMISSION = rules.is_staff
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-exportdb-0.4.7.tar.gz
.
File metadata
- Download URL: django-exportdb-0.4.7.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7077259683bb28e86d09442e96ab5e74478b8a0c82deef1d6b9ec48cde028e9 |
|
MD5 | 860e15db28e0c3edacfd6df31b1d8421 |
|
BLAKE2b-256 | 01be8dc6e0efe6eb6e394b3de99624e8a0d4b3d301f6c924cc7d144eda0b21e7 |