当代码在 Python 2.6 for Linux 中像守护进程一样工作时,我想每隔 x 秒重复一次函数。我有一些代码,但它给了我很多问题。是否可以调用另一个 file.py 而不是在里面编写代码?
这是代码:
import daemon
import threading
def hello():
print "hello, world"
t = threading.Timer(2.0, hello).start()
def run():
with daemon.DaemonContext():
hello()
if __name__ == "__main__":
run()