使用APScheduler3.0.1 实现定时任务的方法


Posted in Python onJuly 22, 2019

需求是在某一指定的时刻执行操作

网上的建议多为通过调用Scheduler的add_date_job实现

不过APScheduler 3.0.1与之前差异较大, 无法通过上述方法实现

参考 https://apscheduler.readthedocs.org/en/latest/userguide.html APScheduler 3.0.1的userguide 解决问题

from datetime import datetime
import time
import os
 
from apscheduler.schedulers.background import BackgroundScheduler
 
 
def tick():
 print('Tick! The time is: %s' % datetime.now())
 
 
if __name__ == '__main__':
 scheduler = BackgroundScheduler()
 scheduler.add_job(tick, 'interval', seconds=3)
 scheduler.start()
 print('Press Ctrl+{0} to exit'.format('Break' if os.name == 'nt' else 'C'))
 
 try:
  # This is here to simulate application activity (which keeps the main thread alive).
  while True:
   time.sleep(2)
 except (KeyboardInterrupt, SystemExit):
  scheduler.shutdown() # Not strictly necessary if daemonic mode is enabled but should be done if possible

实例的代码实现每3秒执行一次tick方法,虽然与需求不符,但发现add_interval_job在APScheduler 3.0.1中 已经被

scheduler.add_job(tick, 'interval', seconds=3)

取代。

help(scheduler.add_job)得到

add_job(func, trigger=None, args=None, kwargs=None, id=None, name=None, misfire_grace_time=undefined, coalesce=undefined, max_instances=undefined, next_run_time=undefined, jobstore='default', executor='default', replace_existing=False, **trigger_args)
Adds the given job to the job list and wakes up the scheduler if it's already running.
 
Any option that defaults to undefined will be replaced with the corresponding default value when the job is scheduled (which happens when the scheduler is started, or immediately if the scheduler is already running).
 
The func argument can be given either as a callable object or a textual reference in the package.module:some.object format, where the first half (separated by :) is an importable module and the second half is a reference to the callable object, relative to the module.
 
The trigger argument can either be:
the alias name of the trigger (e.g. date, interval or cron), in which case any extra keyword arguments to this method are passed on to the trigger's constructor
an instance of a trigger class

由此可知,第参数为trigger,可取值为 date、interval、cron, **trigger_args为该trigger的构造函数。

通过源码找到DateTrigger 的构造函数

def __init__(self, run_date=None, timezone=None)

所以,只需将指定的时间传入add_job

scheduler.add_job(tick, 'date', run_date='2014-11-11 14:48:00')

以上这篇使用APScheduler3.0.1 实现定时任务的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
删除目录下相同文件的python代码(逐级优化)
May 25 Python
在python的WEB框架Flask中使用多个配置文件的解决方法
Apr 18 Python
Python算法之栈(stack)的实现
Aug 18 Python
Python2.x和3.x下maketrans与translate函数使用上的不同
Apr 13 Python
Python读写配置文件的方法
Jun 03 Python
Python爬虫包BeautifulSoup实例(三)
Jun 17 Python
Python对接支付宝支付自实现功能
Oct 10 Python
Python list运算操作代码实例解析
Jan 20 Python
关于Keras模型可视化教程及关键问题的解决
Jan 24 Python
Python Django中的STATIC_URL 设置和使用方式
Mar 27 Python
Django Auth用户认证组件实现代码
Oct 13 Python
Python+DeOldify实现老照片上色功能
Jun 21 Python
Python定时任务APScheduler的实例实例详解
Jul 22 #Python
基于多进程中APScheduler重复运行的解决方法
Jul 22 #Python
django云端留言板实例详解
Jul 22 #Python
python实现图片中文字分割效果
Jul 22 #Python
django用户登录验证的完整示例代码
Jul 21 #Python
Python Threading 线程/互斥锁/死锁/GIL锁
Jul 21 #Python
详解Django模版中加载静态文件配置方法
Jul 21 #Python
You might like
与文件上传有关的php配置参数总结
2013/06/14 PHP
PHP输出缓冲控制Output Control系列函数详解
2015/07/02 PHP
php构造方法中析构方法在继承中的表现
2016/04/12 PHP
CI框架实现优化文件上传及多文件上传的方法
2017/01/04 PHP
js 刷新页面的代码小结 推荐
2010/04/02 Javascript
javascript中的注释使用与注意事项小结
2011/09/20 Javascript
如何从jQuery的ajax请求中删除X-Requested-With
2013/12/11 Javascript
jquery.ajax之beforeSend方法使用介绍
2014/12/08 Javascript
javascript 判断两个日期之差的示例代码
2015/09/05 Javascript
基于JavaScript实现动态添加删除表格的行
2016/02/01 Javascript
JS组件系列之Bootstrap table表格组件神器【终结篇】
2016/05/10 Javascript
Angularjs中的页面访问权限怎么设置
2016/11/11 Javascript
JS常见构造模式实例对比分析
2018/08/27 Javascript
解决vue-cli项目打包出现空白页和路径错误的问题
2018/09/04 Javascript
JavaScript遍历数组的三种方法map、forEach与filter实例详解
2019/02/27 Javascript
layui表单验证select下拉框实现验证的方法
2019/09/05 Javascript
vuex存储复杂参数(如对象数组等)刷新数据丢失的解决方法
2019/11/05 Javascript
vue实现抽屉弹窗效果
2020/11/15 Javascript
vue+Element-ui实现分页效果
2020/11/15 Javascript
[03:07]完美世界DOTA2联赛PWL DAY10 决赛集锦
2020/11/11 DOTA
python 获取本机ip地址的两个方法
2013/02/25 Python
Python基于Tkinter实现的记事本实例
2015/06/17 Python
Python异常对代码运行性能的影响实例解析
2018/02/08 Python
Python 脚本实现淘宝准点秒杀功能
2019/11/13 Python
Python使用configparser读取ini配置文件
2020/05/25 Python
有针对性的求职自荐信
2013/11/14 职场文书
大学军训感言
2014/01/10 职场文书
初中校园之声广播稿
2014/01/15 职场文书
增员口号大全
2014/06/18 职场文书
2015年乡镇扶贫工作总结
2015/04/08 职场文书
土建技术员岗位职责
2015/04/11 职场文书
毕业论文答辩稿范文
2015/06/23 职场文书
感恩父母主题班会
2015/08/12 职场文书
党员观看《筑梦中国》心得体会
2016/01/18 职场文书
python中pymysql包操作数据库方法
2022/04/19 Python
Django框架中模型的用法
2022/06/10 Python