beautify json python code example
Example 1: beautify json python
>>> import json
>>> print json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)
{
"4": 5,
"6": 7
}
Example 2: python format json file
python3 -m json.tool unformatted.json > formatted.json