gpt4 book ai didi

json - Python从所有子目录读取JSON文件

转载 作者:行者123 更新时间:2023-12-03 23:12:33 29 4
gpt4 key购买 nike

我有以下文件夹结构:

Directory    
- Subdirectory 1:
file.json
- Subdirectory 2:
file.json
- Subdirectory 3:
file.json
- Subdirectory 4:
file.json

如何使用 Pandas 读取这些 JSON 文件?

最佳答案

试试这个代码:

import pandas as pd
from pathlib import Path

files = Path("Directory").glob("**/*.json")

for file in files:
df = pd.read_json(file)

要了解有关将 JSON 字符串转换为 Pandas 对象的更多信息:

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_json.html

关于json - Python从所有子目录读取JSON文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56866697/

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