有没有办法在守护进程模式下运行瓶子应用程序

时间:2014-10-01 06:13:27

标签: python bottle

我有一个基于瓶子(python)框架工作的web应用程序,我想在守护进程模式下运行它。有没有办法在守护进程模式下运行它

谢谢

1 个答案:

答案 0 :(得分:2)

当然可以。在您的操作系统上安装BottleDaemon 0.1.0,然后更改您的路由器文件:

    from bottledaemon import daemon_run
    from bottle import route

    @route("/hello")
    def hello():
      return "Hello World"

    # The following lines will call the BottleDaemon script and launch a daemon in the background.
    if __name__ == "__main__":
      daemon_run()