美化大一行JSON文件

时间:2018-11-26 15:40:35

标签: javascript json

我有一个大的json生成文件,如下所示:

{'status': 200, 'result': [{'query': 'AL1 2RJ', 'result': {'postcode': 'AL1 2RJ', 'quality': 1, 'eastings': 514617, 'northings': 206084, 'country': 'England', 'nhs_ha': 'East of England', 'longitude': -0.341337, 'latitude': 51.741753, 'european_electoral_region': 'Eastern', 'prim ...

我需要的是不断地将它像树一样。

我已经尝试过underscore-cli

然后使用以下命令:cat myfile.json | underscore print --color

它使我为此:Error while parsing STDIN in mode 'lax': None is not defined

关于如何实现这一目标的任何想法?

1 个答案:

答案 0 :(得分:1)

在python上,您可以像这样在json.dumps上选择缩进:

import json
print(json.dumps(t,indent=4))

结果为:

{
    "status": 200,
    "result": [
        {
            "query": "AL1 2RJ",
            "result": {
                "postcode": "AL1 2RJ",
                "quality": 1,
                "eastings": 514617,
                "northings": 206084,
                "country": "England",
                "nhs_ha": "East of England",
                "longitude": -0.341337,
                "latitude": 51.741753,
                "european_electoral_region": "Eastern"
            }
        }
    ]
}