pythonでjsonを整形

スクリプト


#!/usr/bin/env python # encoding: utf-8 import json dict = json.loads(raw_input()) format_json = json.dumps(dict, indent=4, separators=(',', ': ')) print format_json

上のスクリプトを書かずに、こっちでもよい。

python -m json.tool < hoge.json

参考:

http://dev.classmethod.jp/server-side/language/tips-not-exists-jq-for-python/