Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从 Django 应用程序或其他 python 脚本更新数据库。计划是通过 Tcp/ip 连接获取传感器数据,将其写入数据库,Django 应用程序可以显示这些值。
谢谢
当然,您所要做的就是导入项目设置。
import os sys.path.append('relative/path/to/settings/file') from django.conf import settings os.environ['DJANGO_SETTINGS_MODULE'] = "settings"
之后,您只需导入所有要使用的模型,还将目录附加到它们(models.py)。