Files
babystats/static/prettyprint.py
2016-01-08 12:26:06 -08:00

10 lines
155 B
Python
Executable File

#!/usr/bin/python2.7
import json
import sys
json.dump(
json.load(sys.stdin), sys.stdout,
sort_keys=True, indent=4, separators=(',', ': '))
print