Flask是否具有Rails初始化器的等价物?

时间:2015-10-28 17:20:03

标签: python ruby-on-rails flask

我正在构建一个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有这样的等价物吗?或者我应该构建单独的脚本并以不同的方式运行它们?

1 个答案:

答案 0 :(得分:0)

您可以将命令添加到根目录中的__init__.py文件,并使用子进程来运行脚本

from subprocess import call
call("script/daemon restart vs_updater.py")

晶圆厂 http://www.fabfile.org/

https://docs.python.org/2/library/subprocess.html