I have a complex (nested) json text file that is one long line in the text file
Is there any way to read in the file (in python) and indent / pretty-print the json to a
Yes, you can use open() to read/write file, then json.load() to read the file and json.dump(..., indent=4) to pretty-print it.