JONCHAN-CN
3/30/2019 - 10:27 AM

python定时执行脚本实例

python定时执行脚本实例

2019年1月31日 11:19

2016年10月17日 15:50:28 火红橘子 阅读数:14897 标签: python脚本实例 更多 个人分类: Python 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hj960511/article/details/52839319

定时任务代码实例

#! /usr/bin/env python
#coding=utf-8
#这里需要引入三个模块
import time, os, sched 
# 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数 
# 第二个参数以某种人为的方式衡量时间 
schedule = sched.scheduler(time.time, time.sleep) 
def perform_command(cmd, inc): 
    os.system(cmd) 
def timming_exe(cmd, inc = 60): 
    # enter用来安排某事件的发生时间,从现在起第n秒开始启动 
    schedule.enter(inc, 0, perform_command, (cmd, inc)) 
    # 持续运行,直到计划时间队列变成空为止 
    schedule.run() 
print("show time after 10 seconds:") 
timming_exe("echo %time%", 10)

周期性执行实例

#! /usr/bin/env python
#coding=utf-8
import time, os, sched 
# 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数 
# 第二个参数以某种人为的方式衡量时间 
schedule = sched.scheduler(time.time, time.sleep) 
def perform_command(cmd, inc): 
    # 安排inc秒后再次运行自己,即周期运行 
    schedule.enter(inc, 0, perform_command, (cmd, inc)) 
    os.system(cmd) 
def timming_exe(cmd, inc = 60): 
    # enter用来安排某事件的发生时间,从现在起第n秒开始启动 
    schedule.enter(inc, 0, perform_command, (cmd, inc)) 
    # 持续运行,直到计划时间队列变成空为止 
    schedule.run() 
print("show time after 10 seconds:") 
timming_exe("echo %time%", 10)

反复执行实例

#! /usr/bin/env python
#coding=utf-8
# 以需要的时间间隔执行某个命令 
import time, os 
def re_exe(cmd, inc = 60): 
    while True: 
        os.system(cmd); 
        time.sleep(inc) 
re_exe("echo %time%", 5)

来自 https://blog.csdn.net/hj960511/article/details/52839319