在脚本中包含www.example.com文件时遇到问题settings.py。我的django项目使用了一个脚本来填充我的数据库模型。为此,我使用以下代码:
# some imports
import <project_name>.settings as app_settings
from <app_name>.models import ( .... different models)
settings.configure(
INSTALLED_APPS=app_settings.INSTALLED_APPS,
DATABASES=app_setttings.DATABASES
)
django.setup()
# read file external file and insert data (model) into the db.sqlite3 database
问题是找不到该模块<project_name>。上面的脚本位于项目目录中。
在import <project_name>.settings as app_settings
行抛出错误。:ModuleNotFoundError: No module named '<project_name>'
为什么脚本不能包含项目文件夹?
1条答案
按热度按时间w8f9ii691#
如果您在此项目的区域内工作,则不需要指定项目的名称。希望这将为您工作!