定时任务代码实例
#! /usr/bin/env python3 #coding=utf-8 #引入time, os, sched,这三个是必备的 import time, os, sched # time.time 参数返回从某个特定的时间到现在经历的秒数 # time.sleep 参数衡量的时间 schedule = sched.scheduler(time.time, time.sleep) def perform_command(cmd, inc): os.system(cmd) def timming_exe(cmd, inc =默认秒数周期 可等于 60 或者其他自定义即可 具体效果自己尝试): #enter 设置从第几秒开始运行 schedule.enter(inc, 0, perform_command, (cmd, inc)) # 运行到结束 schedule.run() print(" 这里写你的调试信息 ") timming_exe("echo %time%", 间隔的秒数)周期性执行实例
#! /usr/bin/env python3 #coding=utf-8 #引入time, os, sched,这三个是必备的 import time, os, sched # time.time 参数返回从某个特定的时间到现在经历的秒数 # time.sleep 参数衡量的时间 schedule = sched.scheduler(time.time, time.sleep) def perform_command(cmd, inc): # enter 计划多少秒后,再次启动自己并进行运行 schedule.enter(inc, 0, perform_command, (cmd, inc)) os.system(cmd) def timming_exe(cmd, inc = 默认秒数周期): # enter从现在起第n秒开始运行 schedule.enter(inc, 0, perform_command, (cmd, inc)) #运行结束 schedule.run() print(" 这里写你的调试信息 ") timming_exe("echo %time%", 间隔的秒数)反复执行实例
#! /usr/bin/env python3 #coding=utf-8 #引入time, os # 设置指定的时间,间隔多少后再次执行命令 import time, os def re_exe(cmd, inc = 默认秒数周期): while True: os.system(cmd); time.sleep(inc) re_exe("echo %time%", 默认秒单次) 江山明月 认证博客专家 产品运营 项目经理 产品经理 人们生活在自己定义的世界中,人们给予事物赋予意义与价值,人们是伟大的,也是渺小的,甚至是不复存在的。在我们认为的目标下,不断的探索和发现这个世界,这个宇宙,又这么的真实,真想有一天能够弄清楚这一切。