Python下实现定时任务的方式有很多种方式
方法一:循环sleep,这是一种最简单的方式,在循环里放入要执行的任务,然后sleep一段时间再执行。缺点是,不容易控制,而且sleep是个阻塞函数
- import time
- def timer(n):
- '''''
- 每n秒执行一次
- '''
- while True:
- print time.strftime('%Y-%m-%d %X',time.localtime())
- yourTask() # 此处为要执行的任务
- time.sleep(n)
方法二:threading模块中的Timer能够帮助实现定时任务,而且是非阻塞的
比如3秒后打印helloworld:
- from threading import Timer
- def printHello():
- print "hello world"
- Timer(3, printHello).start()
比如每3秒打印一次helloworld:
- def printHello():
- print "Hello World"
- t = Timer(2, printHello)
- t.start()
- if __name__ == "__main__":
- printHello()
方法三:使用sched模块:sched是一种调度(延时处理机制)
-
-
- import time
- import os
- import sched
-
-
-
- schedule = sched.scheduler(time.time, time.sleep)
-
- def execute_command(cmd, inc):
- ''
-
-
- os.system(cmd)
- schedule.enter(inc, 0, execute_command, (cmd, inc))
- def main(cmd, inc=60):
-
-
- schedule.enter(0, 0, execute_command, (cmd, inc))
- schedule.run()
-
- if __name__ == '__main__':
- main("netstat -an", 60)
方法四:使用定时框架APScheduler
APScheduler是基于Quartz的一个Python定时任务框架。提供了基于日期、固定时间间隔以及crontab类型的任务,并且可以持久化任务
方法五:使用Linux的定时任务(Crontab)
在Linux下可以很方便的借助Crontab来设置和运行定时任务。进入Crontab文件编辑页面,设置时间间隔,使用一些shell命令来运行bash脚本或者是Python脚本,保存后Linux会自动按照设定的时间来定时运行程序