我写了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"}}
我应该怎么做才能保持格式化。
答案 0 :(得分:0)
我是json.dump(config, f, sort_keys=True, indent=2)
做的。缩进是这里的关键。简单的解决方案。