Python简单定时任务

发布时间:2020-12-28编辑:脚本学堂
分享一个python定时任务的简单例子,定时执行一个bat批处理文件,有需要的朋友参考下。

需求,要求定时执行一个 .bat 批处理文件。
查看python 文档,实现了如下python定时脚本
 

复制代码 代码示例:

from win32api import *
from time import *

i = 1
while 1:
    shellExecute(0, None, "c:test.bat", None, "c:", True)   
    print "The job has been executed", i, "times till now."
    i += 1
    sleep(10 * 60)