Question

I want dump data of django.contrib.auth app.

I've tried:

>> python manage.py dumpdata django.contrib.auth > 'django.contrib.admin.json'
Error: Unknown application: django.contrib.auth
>> python manage.py dumpdata 'django.contrib.auth' > 'django.contrib.admin.json'
Error: Unknown application: django.contrib.auth

Nothing works. Need your help.

Was it helpful?

Solution

Solution was much more easy than a thought. Just run

python manage.py dumpdata auth
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top