您好,登录后才能下订单哦!
本文实例讲述了Python定时任务sched模块用法。分享给大家供大家参考,具体如下:
通过sched
模块可以实现通过自定义时间,自定义函数,自定义优先级来执行函数。
范例一
import time import sched schedule = sched.scheduler( time.time,time.sleep) def func(string1): print "now excuted func is %s"%string1 print "start" schedule.enter(2,0,func,(1,)) schedule.enter(2,0,func,(2,)) schedule.enter(3,0,func,(3,)) schedule.enter(4,0,func,(4,)) schedule.run() print "end"
schedule是一个对象,叫什么名字都可以
schedule.enter(delay,priority,action,arguments)
例如:
schedule.enter(delay, priority, action, (argument1,))
run()
一直被阻塞,直到所有任务全部执行结束。每个任务在同一线程中运行,所以如果一个任务执行时间大于其他任务的等待时间,那么其他任务会推迟任务的执行时间,这样保证没有任务丢失,但这些任务的调用时间会比设定的推迟。
多线程执行定时任务
范例二
import time import sched from threading import Timer def print_name(str): print "i'm %s"%str print "start" Timer(5,print_name,("superman",)).start() Timer(10,print_name,("spiderman",)).start() print "end"
通过多线程,实现定时任务
在多线程中,如果只通过schedule
,会因为线程安全的问题会出现阻塞,一个任务执行,如果没有结束而另一个任务就要等待。
通过threading.Timer
可以避免这个问题效果就是直接执行Print start
和print end
,而定时任务会分开执行。打印end不会阻塞。
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python日期与时间操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。