标签: python django django-models
假设我编写了一个python模块来做一些干净的工作和日常维护。它没有视图或模板,只是一个命令行工具。无论服务器是否开启,都可以与模型和数据库进行交互吗?
答案 0 :(得分:1)
是的,你可以。
查看管理命令shell和dbshell
shell
dbshell
你会做的
python manage.py shell #You can call any method, modify Model objects, ...
和
python manage.py dbshell #Gives direct access to the database via command line
这不需要服务器运行。