python schedule模块定时执行任务
2021/5/24 12:24:49
本文主要是介绍python schedule模块定时执行任务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
python中有一个轻量级的定时任务调度的库:schedule。他可以完成每分钟,每小时,每天,周几,特定日期的定时任务。因此十分方便我们执行一些轻量级的定时任务。
# 安装
pip install schedule -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
import schedule
import time
def test():
print("I'm doing something...")
schedule.every(5).minutes.do(test) # 每隔5分钟执行一次任务
schedule.every().hour.do(test) # 每隔一小时执行一次任务
schedule.every().day.at("10:00").do(test) # 每天的10:00执行一次任务
schedule.every().monday.do(test) # 每周一的这个时候执行一次任务
schedule.every().wednesday.at("13:00").do(test) # 每周三13:00执行一次任务
while True:
schedule.run_pending() # run_pending:运行所有可以运行的任务
这篇关于python schedule模块定时执行任务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器