Python—定时任务

Posted 刘_love_田

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python—定时任务相关的知识,希望对你有一定的参考价值。

简介                

APScheduler的全称是Advanced Python Scheduler。它是一个轻量级的基于Quartz的 Python 定时任务调度框架。APScheduler 支持三种调度任务:固定时间间隔,固定时间点(日期),Linux 下的 Crontab 命令。同时,它还支持异步执行、后台执行调度任务。

github:https://github.com/agronholm/apscheduler

官网文档:https://apscheduler.readthedocs.io/en/latest/

组成                

APScheduler整个系统可以说由这五个概念组成:调度器(scheduler),作业存储(job store),触发器(trigger),执行器(executor),任务(job)。

使用                

https://www.jianshu.com/p/d04bd534b219

以上是关于Python—定时任务的主要内容,如果未能解决你的问题,请参考以下文章

Python下定时任务框架APScheduler的使用

python定时任务介绍

CentOS7 使用定时任务

Python 定时任务

apscheduler 定时任务框架

Python—定时任务