Export command not found in working django import-export app

I'm trying to reproduce the export command as shown in the import-export docu

python manage.py export CSV auth.User

yet all I get is:

Unknown command: 'export'.
Type 'manage.py help' for usage.

settings.py

INSTALLED_APPS = [
    "django.contrib.admin",
    "django.contrib.auth",
    "django.contrib.contenttypes",
    "django.contrib.sessions",
    "django.contrib.messages",
    "django.contrib.staticfiles",
    "import_export",
    "django_extensions"]

import-export is not listed, while e.g. django-extensions commands are listed when issuing python manage.py help

Besides the management command, the import-export api works fine

Вернуться на верх