cpu-reformat.py 191 字节
Newer Older
1
#!/usr/bin/env python
2 3 4 5 6 7

import sys
import json

dec = json.JSONDecoder()
data, pos = dec.raw_decode(sys.stdin.read())
8
json.dump(data, sys.stdout, indent=2, separators=(',', ': '))
9
print("\n")