2

我正在努力将新数据附加到 JSON。我只是想从 API 调用 JSON 数据,并将其放入“匹配”下的 JSON 文件中。我正在创建一个包含以下内容的空白 JSON 文件,然后从那里开始。

{
    "matches": [
    ]
}

这是我的代码,尽管我怀疑只有最后一行很重要:

print ("No records found...\n Creating new match history bank.")
file_handle = open(all_matches_index, "w+")
file_handle.write('{\n    "matches": [\n    ]\n}')

for game_id in game_ids:
        full_match_data = watcher.match.by_id(my_region, game_id)
        #this is the problem line:
        file_handle.write(json.dumps({"matches" : full_match_data }, sort_keys=True, indent = 4, separators=(',', ': ')))

我尝试了一系列不同的解决方案,但网上似乎没有任何地方可以解决这个问题,或者至少我不明白我在读什么。我知道这是一个简单的问题,但我无法解决。

我尝试过的一些例子:

file_handle.write(json.dumps(full_match_data["matches"], sort_keys=True, indent = 4, separators=(',', ': ')))

file_handle["matches"].write(json.dumps(full_match_data, sort_keys=True, indent = 4, separators=(',', ': ')))

file_handle["matches"] = {**full_match_data, file_handle["matches"] sort_keys=True, indent = 4, separators=(',', ': ')))}

file_handle.write(json.dumps({"matches" : [full_match_data]}, sort_keys=True, indent = 4, separators=(',', ': ')))

file_handle.write(json.dumps(["matches" {full_match_data}], sort_keys=True, indent = 4, separators=(',', ': ')))

编辑 1:根据 Pranav Hosangadi 的回复进行更改,

首先,感谢您的回复,它包含的信息比简单的修复要多得多,这对我学习很有帮助。

我更改了我的代码,使其现在看起来如下:

file_handle = open(all_matches_index, "w+")
file_handle.write('{\n    "matches": [\n    ]\n}')
file_handle.close()


matches = []
for game_id in game_ids:
    full_match_data = watcher.match.by_id(my_region, game_id)
    matches.append(full_match_data)

with open(all_matches_index, "w") as file_handle:
    json.dump(file_handle, {"matches": matches})
    
    file_handle.close

不幸的是,它不起作用。它似乎想了很长时间(作为一个英特尔奔腾)然后返回一个空文件?

再次运行它会在文件中填充:

{
    "matches": [
    ]
}

你能告诉我哪里出错了吗?

一旦我让它工作,我将切换到 pythonic 的方式。非常感谢。

4

2 回答 2

2

为什么每次从 API 获得结果时都写入文件?只需将 new 附加full_match_data到列表中,并在拥有所有内容后编写一次。另请注意,json.dump可以直接写入文件句柄,无需dumps写入字符串然后将该字符串写入文件。

matches = []
for game_id in game_ids:
    full_match_data = watcher.match.by_id(my_region, game_id)
    matches.append(full_match_data)

with open(all_matches_index, "w") as file_handle:
    json.dump({"matches": matches}, file_handle)

您可以用列表理解替换循环以获得更多pythonic方式:

matches = [watcher.match.by_id(my_region, game_id) for game_id in game_ids]

关于。有问题的编辑:

我原来的答案有错误。json.dump预计json.dump(data, file_handle)。请参阅更新的答案。


file_handle = open(all_matches_index, "w+")
file_handle.write('{\n    "matches": [\n    ]\n}')
file_handle.close()

这部分代码是不必要的。它所做的只是写一个空文件。无论如何,后面代码中的with...块应该会覆盖它。


matches = []
for game_id in game_ids:
    full_match_data = watcher.match.by_id(my_region, game_id)
    matches.append(full_match_data)

这是创建列表的部分


with open(all_matches_index, "w") as file_handle:
    json.dump({"matches": matches}, file_handle)

这是将数据写入文件的部分。使用with创建一个上下文管理器,一旦with块结束,它会自动为您关闭文件。你可以在网上找到很多信息。


    file_handle.close

这是 (a) 不必要的,因为上下文管理器无论如何都会处理关闭文件,并且 (b) 是错误的,因为您需要调用该函数,file_handle.close()就像您之前所做的那样。

于 2020-09-04T20:48:59.110 回答
1

当您在 python 中加载 JSON 对象时,它通常只是一个字典。您可以像将数据添加到字典一样将数据添加到 JSON。在我看来,您希望所有匹配项matches都位于最终文件中的键下。如果是这种情况,您可以创建所有匹配项的列表或字典,然后将它们添加到 matches 键下,如下所示

match_dict= {'match_1':match_1,'match_2':match_2,...,'match_n':match_n}
matches={'matches':match_dict}

如果您想使用现有的 JSON 文件执行此操作,只需使用 JSON 包读取该文件,然后执行上述操作,并在最后保存文件。

于 2020-09-04T20:48:57.660 回答