Forums

Convert django backup json file to excel/csv

The backup method I am using is by running "python manage.py dumpdata appname>datafilename.json". I am wondering how to convert the json file into an excel or csv file for more readable perspective?

There are json and csv modules in the Python standard library so you should be able to convert the data pretty easy with a script.