http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/
Скажите, а он сможет решить мою проблему?
Я так понимаю это и есть реализация библиотеки, о которой шла речь выше.
Код мне свой нужно впиндерить сюда:
def restart(self):
"""
Restart the daemon
"""
self.stop()
self.start()
def run(self):
"""
You should override this method when you subclass Daemon. It will be called after the process has been
daemonized by start() or restart().
"""