linux 利用python模块实现格式化json
非json格式示例
{"name": "chen2ha", "where": {"country": "China", "info": {"age": "27", "birthday": "1995-03-20", "body": {"sex": "gentleman", "style":"tie han han"}}}}
在 vim 中
:%!python -m json.tool
在命令行终端
python -m json.tool test.json
{
"name": "chen2ha",
"where": {
"country": "China",
"info": {
"age": "27",
"birthday": "1995-03-20",
"body": {
"sex": "gentleman",
"style": "tie han han"
}
}
}
}