<< ..
Python Pretty Json Print In Terminal
发布时间:问题
不知道你是否有格式化输出json到终端的需求,遇到脏乱的数据将其格式化输出可以提高可读性。
解决方案
在终端格式化输出JSON的方法:
$ echo '{"hello":"world"}' | python -mjson.tool | pygmentize -l json
{
"hello": "world"
}