怎样安装和使用APScheduler

2019年5月8日 | 分类: 【技术】

【介绍】

APScheduler基于Quartz的一个Python定时任务框架,实现了Quartz的所有功能,使用起来十分方便。提供了基于日期、固定时间间隔以及crontab类型的任务,并且可以持久化任务。基于这些功能,我们可以很方便的实现一个python定时任务系统。

【安装】

pip install APScheduler

【使用】

文档:https://apscheduler.readthedocs.io/en/latest/modules/triggers/cron.html

参考:https://www.cnblogs.com/zhaoyingjie/p/9664081.html
参考:https://www.cnblogs.com/hushaojun/p/5189109.html
参考:https://wp.huangshiyang.com/apscheduler-python%E5%AE%9A%E6%97%B6%E4%BB%BB%E5%8A%A1
参考:https://blog.51cto.com/10616534/1933577