我正在尝试创建一个模块化设置文件。
为什么这是有效的:
project/
settings.py
other.py
使用 settings.py 中的这一行
config_module = __import__('other', globals(), locals())
虽然以下引发了 ImportError:
project/
settings.py
config/
other.py
使用 settings.py 中的这一行:
config_module = __import__('config.other', globals(), locals())