[Answered ]-How to make a fixture of entire django project for limited data in database?

2👍

You can have space in between multiple app names:

manage.py makefixture --format=json --indent=4 proj.appname.modelname[1:1000] proj.another_appname.modelname[1:1000] > test.json

Help comes directly from the library, see here.

Leave a comment