码迷,mamicode.com
首页 > 编程语言 > 详细

在 Python 中使用定时器

时间:2019-10-30 11:46:40      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:class   比较   int   bad   man   day   代码   ade   min   

今天看到一个比较人性化的定时模块 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,怎么样是不是很简单。

在 Python 中使用定时器

标签:class   比较   int   bad   man   day   代码   ade   min   

原文地址:https://www.cnblogs.com/botoo/p/11763868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!