From 45396e3163c483996411a1a8bf06430a4d3ec766 Mon Sep 17 00:00:00 2001 From: StarHeart Date: Mon, 30 Aug 2021 16:34:34 +0800 Subject: [PATCH] :memo: update `APScheduler` doc link --- docs/advanced/scheduler.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/scheduler.md b/docs/advanced/scheduler.md index abab298e..e0987521 100644 --- a/docs/advanced/scheduler.md +++ b/docs/advanced/scheduler.md @@ -1,6 +1,6 @@ # 定时任务 -[`APScheduler`](https://apscheduler.readthedocs.io/en/latest/index.html) —— Advanced Python Scheduler +[`APScheduler`](https://apscheduler.readthedocs.io/en/3.x/) —— Advanced Python Scheduler > Advanced Python Scheduler (APScheduler) is a Python library that lets you schedule your Python code to be executed later, either just once or periodically. You can add new jobs or remove old ones on the fly as you please. If you store your jobs in a database, they will also survive scheduler restarts and maintain their state. When the scheduler is restarted, it will then run all the jobs it should have run while it was offline.