我正在构建一个Flask网络应用,并希望在应用启动时运行一些后台服务。
例如,在Web应用程序中,您可以添加服务帐户,路由器IP,服务器IP等。我想让一些后台服务运行网络扫描,wmi调用和其他一些任务来不断用相关信息更新数据库。
在Rails中,我在config/initializers
中使用了初始化器来启动一些守护进程:
# Start all the daemons to update the DB
system('script/daemon restart vs_updater.rb')
system('script/daemon restart c_fw_updater.rb')
system('script/daemon restart sans_updater.rb')
system('script/daemon restart sf_updater.rb')
Flask有这样的等价物吗?或者我应该构建单独的脚本并以不同的方式运行它们?
答案 0 :(得分:0)
您可以将命令添加到根目录中的__init__.py
文件,并使用子进程来运行脚本
from subprocess import call
call("script/daemon restart vs_updater.py")