Difference between revisions of "Daemonize Python"

From Noah.org
Jump to navigationJump to search
Line 4: Line 4:
 
This short module shows the correct way to create a UNIX daemon process in Python. Creating a proper UNIX daemon is not as trivial as it sounds.
 
This short module shows the correct way to create a UNIX daemon process in Python. Creating a proper UNIX daemon is not as trivial as it sounds.
  
[http://www.noah.org/downloadsvn.php?src=file:///home/svn/src/python/daemonize.py daemonize.py]
+
Click here to download: [http://www.noah.org/downloadsvn.php?src=file:///home/svn/src/python/daemonize.py daemonize.py]
 
<include svncat src="file:///home/svn/src/python/daemonize.py" highlight="python" />
 
<include svncat src="file:///home/svn/src/python/daemonize.py" highlight="python" />

Revision as of 12:56, 7 December 2007

This short module shows the correct way to create a UNIX daemon process in Python. Creating a proper UNIX daemon is not as trivial as it sounds.

Click here to download: daemonize.py <include svncat src="file:///home/svn/src/python/daemonize.py" highlight="python" />