import time from threading import Timer def print_time( enter_time ): print "now is", time.time() , "enter_the_box_time is", enter_time print time.time() Timer(5, print_time, ( time.time(), )).start() Timer(10, print_time, ( time.time(), )).start() print time.time()
这样的话,从程序开始执行到5,秒,10秒都会执行一次print_time这个方法。
二,当你想让你的某个方法每个一定周期执行呢,这就需要定时任务的框架APScheduler,网上介绍安装apscheduler的方法很简单,就是:
easy_install apscheduler就行了,可惜我可能用的Python 2.7的原因,虽然有提示安装成功,但是写代码引入这些包的时候总是出问题,最后
我找到了一个apscheduler2.0 的软件包,解压后切换至相应目录后python setup.py install才把问题解决,这个软件包在我的资源可以下载到。
然后你就可以开始写代码了,代码实现风格有两个:
1,带修饰器的写法:
from apscheduler.scheduler import Scheduler import datetime schedudler = Scheduler(daemonic = False) @schedudler.cron_schedule(second='15', day_of_week='0-7', hour='9-12,13-16') def quote_send_sh_job(): print 'a simple cron job start at', datetime.datetime.now() schedudler.start()
def cornstart(self,event): schedudler = Scheduler(daemonic = True) schedudler.add_cron_job(self.timing_exe, day_of_week='mon-sun', hour='0-12', minute='0-59', second='15',) print 'get start' schedudler.start()应该好理解,timing_exe是要执行的函数名,如果函数还有参数可以加一个args[]
原文地址:http://blog.csdn.net/asartear/article/details/38357333