django dumpdata code example
Example 1: django runserver
python manage.py runserver
Example 2: django manage.py dataload
./manage.py dumpdata notice.notice > notice.json --indent 4 --format json
Example 3: dumpdata json model dajngo
./manage.py dumpdata admin.logentry > logentry.json
Example 4: django shell
python manage.py shell