I am working with Tornado and Python3. I need to run Dev server in daemon mode. But I found the python-daemon package, It is not supported for python3.2+. Here some code,
import daemon
from spam import do_main_program
with daemon.DaemonContext():
do_main_program()
Can any one tell me python3.2+ supported package. Please give me some code for daemon mode.