gpt4 book ai didi

python - jsonDiff 循环处理大量文件

转载 作者:行者123 更新时间:2023-12-04 08:14:20 26 4
gpt4 key购买 nike

目标是获取两个文件夹中大约 30'000 个 json 文件的差异。在这两个文件夹中,它们的名称只是数字(1.json、2.json 等)。所以基本上得到两个文件夹的差异。

我正在使用 jsonDiff 模块来获取差异,这对单个文件来说效果很好,但我还没有找到在循环中使用该模块的方法。

f = open("/folder1/1.json")
fe = open("/folder2/1.json")
jyson1 = json.load(f)
jyson2 = json.load(fe)

print(diff(jyson1, jyson2))

编辑:因为我必须解析 2 个文件夹,所以我想我需要 2 个这样的 glob 循环

for f in glob("/folder1/*.json"):
with open(f) as fe:
data_old = json.load(fe)

for e in glob("/folder2/*.json"):
with open(e) as ee:
data_new = json.load(fe)

我很难理解如何在这里使用 diff() 方法

最佳答案

这是您可以处理的代码片段。它还只测试两个文件夹中共有的文件(跳过一个文件夹中因任何原因丢失的文件)。与您的代码片段相反,您需要在一个而不是两个 for 循环中工作:

import os

names1 = os.listdir("folder1") # names of all json files in folder1
names2 = os.listdir("folder2") # names of all json files in folder2
commonnames = set(names1) & set(names2) # set of all file names which are in folder1 and folder2

for filename in commonnames:
json1 = json.load(open(os.path.join("folder1", filename))
json2 = json.load(open(os.path.join("folder2", filename))

print(diff(json1, json2))

关于python - jsonDiff 循环处理大量文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65781656/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com