Python json配置文件

时间:2016-04-04 19:33:55

标签: python json

我写了json配置文件:

{
"file": {"file_name": "file.xls"}, 
"names1": 
    {"Joe Allen": "JOE", 
     "Leo Messi": "MESSI"}
}

它的格式和可读性。我使用函数来更改file_name:

def plik(self, evt):
    wildcard = "MS excell (*.xls)|*.xls"
    dialog = wx.FileDialog(self, "Choose a file", os.getcwd(), "",     wildcard, wx.OPEN)
    if dialog.ShowModal() == wx.ID_OK:
        config['file'] = {'file_name': dialog.GetFilename()}
        with open('config.json', 'w') as f:
            json.dump(config, f)
        self.Destroy()
        frame = Program()
        frame.Show()

在json文件中更改文本后看起来像:

{"file": {"file_name": "file.xls"},"names1":{"Joe Allen": "JOE","Leo Messi": "MESSI"}}

我应该怎么做才能保持格式化。

1 个答案:

答案 0 :(得分:0)

我是json.dump(config, f, sort_keys=True, indent=2)做的。缩进是这里的关键。简单的解决方案。