= Resources =
== article ==
* [http://labs.unoh.net/2007/04/unix.html from unoulabo]
* [http://www.velocityreviews.com/forums/t399413-creating-a-daemon-process-in-python.html "creating a daemon process in python" from velocityreviews ]
* [http://blog.ianbicking.org/daemon-best-practices.html]
* lots of nice comments. djb's deamon tools is not candidate, as I do not use djb dns.(I do not agree with his license!)
== code ==
* [http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/278731 "Creating a daemon the Python way" from ASPN]
* [http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66012 "Fork a daemon process on Unix" from ASPN]
* [http://hathawaymix.org/Software/Sketches/daemon.py from hathawaymix.org]
* it looks best but no license.
{{{
# - drop privileges
self.set_uid()
}}}
instead, I prefer to code this like. The original code has comments 'drop privileges' twice!
{{{
self.drop_privileges()
}}}
* [http://snippets.dzone.com/posts/show/1532 Python - create daemon from snippets.dzone.com]
* italian? commnets no good.
* [http://homepage.hispeed.ch/py430/python/ Unix Daemon @ Chris' Python Page]
* accoding to comment, it is descendant of "Fork a daemon process on Unix"
* [http://homepage.hispeed.ch/py430/python/daemon.py code]
* [http://www.void.in/wiki/Python/Daemon from www.void.in]
* [http://lowlife.jp/yasusii/stories/24.html Python と Twisted できみにも書ける Web サーバ(1)]
* It uses twisted. far Differ from other aproach.
以下、普通の。
Resources ¶
article ¶
- from unoulabo
- "creating a daemon process in python" from velocityreviews
- http://blog.ianbicking.org/daemon-best-practices.html
- lots of nice comments. djb's deamon tools is not candidate, as I do not use djb dns.(I do not agree with his license!)
code ¶
- "Creating a daemon the Python way" from ASPN
- "Fork a daemon process on Unix" from ASPN
- from hathawaymix.org
- it looks best but no license.
# - drop privileges
instead, I prefer to code this like. The original code has comments 'drop privileges' twice!
self.set_uid()self.drop_privileges()
- it looks best but no license.
- Python - create daemon from snippets.dzone.com
- italian? commnets no good.
- Unix Daemon @ Chris' Python Page
- accoding to comment, it is descendant of "Fork a daemon process on Unix"
- code
- from www.void.in
- Python と Twisted できみにも書ける Web サーバ(1)
- It uses twisted. far Differ from other aproach.
1 件のコメント:
daemon.py @ google code
コメントを投稿