gpt4 book ai didi

python - 将 settings.py 配置文件加载到字典中

转载 作者:太空宇宙 更新时间:2023-11-03 14:31:18 25 4
gpt4 key购买 nike

假设我有一个名为 settings.py 的文件,它的内容如下:

{
"translate_tabs_to_spaces": True,
"word_wrap": "true",
"font_face": "Monaco",
"font_size": 14.0,
"highlight_line": True,
"ignored_packages":
[
""
],
"what": '''
This is python file, not json
'''
}

如何将它放入主应用程序文件 app.py 中名为 settings 的字典中?

谢谢。

最佳答案

为什么不将该字典命名为 settings 而不是直接从 settings.py 导入它,例如

settings.py

settings = {} # fill with your data

这样使用

>>> from settings import settings
>>> print settings
{}

替代解决方案是在设置模块级别添加变量并直接使用它们,为什么你需要一个字典?例如

settings.py

translate_tabs_to_spaces = True
# more settings

这样使用

>>> import settings
>>> settings.translate_tabs_to_spaces
True

关于python - 将 settings.py 配置文件加载到字典中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10439486/

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