私は比較的 Python に不慣れで、これまでプログラミングの表面をすくい取っただけでした。そのため、デーモンについて混乱しています。私は一般的にそれらが何をするかを知っていますが、それらを実装する最良の方法がPythonであるかどうかはわかりません. Pythonでデーモンを作成する方法を示すこのリンクを見つけました。しかし、私はこれが
#!/usr/bin/env python3.2
import threading
class Update(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
pass #something you want to run in the background
continous = Update
continous.daemon = True
continous.start()
同じくらい効果的でしょうか?