您的位置:首页 > 编程语言 > Python开发

Python定时任务框架APScheduler 3.0.3 Cron示例

2015-09-22 16:02 796 查看
转载:http://www.cnblogs.com/leleroyn/p/4501359.html APScheduler是基于Quartz的一个Python定时任务框架,实现了Quartz的所有功能,使用起来十分方便。提供了基于日期、固定时间间隔以及crontab类型的任务,并且可以持久化任务。基于这些功能,我们可以很方便的实现一个python定时任务系统

安装

安装过程很简单,可以基于pip和源码。 Pip install apscheduler==3.0.3 或者下载源码,运行命令: Python setup.py install

cron job例子

#coding=utf-8
from apscheduler.schedulers.blocking import Blocking
Schedulerfrom datetime import datetime
import time
import os
def tick():
print('Tick! The time is: %s' % datetime.now())
if __name__ == '__main__':
scheduler = BlockingScheduler()
scheduler.add_job(tick,'cron', second='*/3', hour='*')
print('Press Ctrl+{0} to exit'.format('Break' if os.name == 'nt' else 'C'))
try:
scheduler.start()
except (KeyboardInterrupt, SystemExit):
scheduler.shutdown()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: