Python JSON с отступом

import json
mydata = json.loads(output)
print json.dumps(mydata, indent=4)
WaWalex