在python中自动执行脚本运行时

时间:2015-06-05 18:53:23

标签: python-2.7

如何编写应该每3小时运行一次的脚本?

我不想使用crontab。

1 个答案:

答案 0 :(得分:0)

你需要在How to make Python script run as service?中举例说明的守护 并进行更改

import time 
class MyDaemon(Daemon):
    def run(self):

        while True:
            time.sleep(60 * 60 * 3)  # Delay for 1 hour in seconds
            print "3 hours pass."