我的__init__.py
包中有Database
个文件,我想从同一目录中的配置文件(config.json
)中读取一些信息。
我试过这段代码:
with open("config.json", 'r') as json_data:
data = json.load(json_data)
print(data)
但我收到了这个错误:
FileNotFoundError: [Errno 2] No such file or directory: 'config.json'
错误在哪里?