django-import-export-extensions
django-import-export-extensions copied to clipboard
django-import-export-extensions
Resolves: #31 #30
After unsuccessful import I got `ImportJob` status of `Parse error`, so both cancel action in Django Admin and cancel API endpoint result in following error message: ``` ImportJob with id...
If error is raised during parsing data in **format** class, then `ImportJob.result` field would have default value `''`. In that case current api for getting details of import job or...
If `Resource` class has enabled `clean_model_instances` and error related to model field constraints occur during import, then unexpected `PicklingError` would be raised. Example: ```python # model.py class Artist(models.Model): """Model representing...
- add support for multiple resource classes - refactor `CeleryExportAdminMixin`, `CeleryImportAdminMixin`: - move common logic to a base class - drop `get_export_formats`, `get_import_formats`: we now support multiple resource classes, and...
I am having trouble with this library. I was originally using `django-import-export` and it was working, however, I received timeouts during export so I decided to add this library. However,...
My understanding is that if I set `IMPORT_EXPORT_SKIP_ADMIN_EXPORT_UI=True` in `settings.py` then when clicking the export button from change_list will skip the confirmation page and start the export immediately. I wanted...
TODO: - [ ] Add tests - [ ] Update docs
In django admin, we can add `search_fields`. When the `search_fields` is enabled, we can then perform a search using Django admin search box, and it will construct a query string...