gpt4 book ai didi

python - 如何动态打开json文件?

转载 作者:行者123 更新时间:2023-12-01 07:47:54 25 4
gpt4 key购买 nike

我的文件夹中有一个 json 文件,我想在我的主 app.py 中动态打开该文件,有办法做到这一点吗?

这就是我的文件夹的样子

C:.
| app.py
| README.txt
| tree.txt
|
+---resources
| stores.json
|
+---templates
| Tails.html
|
+---test
| Unit_Test.py
|
\---__pycache__
app.cpython-37.pyc
Tails.cpython-37.pyc

我目前的 app.py 给了我一个错误; 需要 str、bytes 或 os.PathLike 对象,而不是 NoneType

from pydoc import locate

def read_jsonfile():
with open(locate('resources.stores.json')) as f:
stpres = json.load(f)

return stores

如有任何帮助或建议,我们将不胜感激。

最佳答案

尝试:

import json

def read_jsonfile():
with open('resources/stores.json') as f:
stores = json.load(f)

return stores

关于python - 如何动态打开json文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56361060/

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