我正在使用 Tornado 和 Python3。我需要以守护程序模式运行开发服务器。但是我找到了 python-daemon 包,它不支持 python3.2+。这里有一些代码,
import daemon
from spam import do_main_program
with daemon.DaemonContext():
do_main_program()
谁能告诉我python3.2+支持的包。请给我一些守护程序模式的代码。
我正在使用 Tornado 和 Python3。我需要以守护程序模式运行开发服务器。但是我找到了 python-daemon 包,它不支持 python3.2+。这里有一些代码,
import daemon
from spam import do_main_program
with daemon.DaemonContext():
do_main_program()
谁能告诉我python3.2+支持的包。请给我一些守护程序模式的代码。