# pip install apscheduler
from apscheduler.schedulers.blocking import BlockingScheduler
用法
# job_func是要被执行的函数
sched = BlockingScheduler()
sched.add_job(job_func, 'interval', minutes=2)
sched.start()
cron表达式的例子
# 时间: 周一到周五每天早上9点15, 执行job_func
sched.add_job(job_func, 'cron', day_of_week='mon-fri', hour=9, minute=15)
# 每隔两分钟调用一次
sched.add_job(job_func, 'interval', minutes=2)
工具
https://www.bejson.com/othertools/cron/
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)