在 Python 中使用定时器

往往我们流程设计的时候没有用到管理平台,我们就简单的使用 time 模块,终究觉得不是很好。

今天看到一个比较人性化的定时模块 schedule,目前 star 数为 6432,还是非常的受欢迎,这个模块也是秉承这 For Humans 的原则,这里推荐给大家。地址 https://github.com/dbader/schedule
1. 通过 pip 即可安装。

pip install schedule

2. 使用案例

import schedule
import time

def job():
    print("I'm working...")

schedule.every(10).minutes.do(job) 
schedule.every().hour.do(job)
schedule.every().day.at("10:30").do(job)
schedule.every().monday.do(job)
schedule.every().wednesday.at("13:15").do(job)
schedule.every().minute.at(":17").do(job)

while True:
    schedule.run_pending()
    time.sleep(1)

从单词的字面意思,你就知道这是做什么的。
举个例子:
schedule.every().monday.do(job)
这句代码作用就是就是单词意思,定时器会每个周一运行函数 job,怎么样是不是很简单。