怎样安装定时器APScheduler

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

【介绍】

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

【安装】

Ubuntu 22.04:

pip install APScheduler

Ubuntu 24.04:

sudo apt install python3-pip -y
sudo apt install python3-apscheduler -y

参考:https://apscheduler.readthedocs.io/en/3.x/userguide.html
参考:https://linux-packages.com/ubuntu-24-04/package/python3-apscheduler
参考:https://installati.one/install-python3-apscheduler-ubuntu-20-04/

【日志】

参考:https://geek-docs.com/python/python-ask-answer/446_python_python_logging_check_location_of_log_files.html

import logging
import os

log_path = os.path.expanduser('~') + '/app.log'
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s', filename=log_path)

logger = logging.getLogger()
logger.handlers[0].baseFilename

【参考】

文档: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