peter2
1/17/2014 - 9:44 PM

pretty print json python From http://docs.python.org/2/library/json.html

pretty print json python From http://docs.python.org/2/library/json.html

import json
print json.dumps({'4': 5, '6': 7}, sort_keys=True,
...                  indent=4, separators=(',', ': '))
{
    "4": 5,
    "6": 7
}