python的schedule定时任务模块二次封装方法
程序员文章站
2022-07-11 09:56:08
通过定时来执行任务,我们日常工作生活中会经常用到。python有schedule这个库,简单好用,比如,可以每秒,每分,每小时,每天,每天的某个时间点,间隔天数的某个时间点...
通过定时来执行任务,我们日常工作生活中会经常用到。python有schedule这个库,简单好用,比如,可以每秒,每分,每小时,每天,每天的某个时间点,间隔天数的某个时间点定时执行,另外自己又写了一个可以自定义时间点来定时执行任务,代码如下。
import schedule import time class timing(): #按秒循环定时执行任务 def doeverysecond(self,seconds,job_func): try: schedule.every(seconds).seconds.do(job_func) while true: schedule.run_pending() except exception as e: raise e # 按分钟循环定时执行任务 def doeveryminutes(self,minutes,job_func): try: schedule.every(minutes).minutes.do(job_func) while true: schedule.run_pending() except exception as e: raise e # 按小时循环定时执行任务 def doeveryhours(self,hours,job_func): try: schedule.every(hours).minutes.do(job_func) while true: schedule.run_pending() except exception as e: raise e #按天数在某个时刻定时执行任务 def doeveryday(self,time,job_func,days=1): try: schedule.every(days).days.at(time).do(job_func) while true: schedule.run_pending() except exception as e: raise e #设置在每天的多个时刻定时执行任务,这个方法在实际工作中比较常用到 def doeverytime(self,time_str,job_func,days=1): ''' :param time_str: :param job_func: :param days: :return: none example:time_str="10:30","10:45","11:00" ''' try: list_time = time_str.split(",") for time in list_time: schedule.every(days).days.at(time).do(job_func) while true: schedule.run_pending() except exception as e: raise e #自定义时间,datetimes格式为:"2018-06-08 16:55,2018-06-08 16:56" def dojusttime(self,datestr,job_func): try: date_list = datestr.split(",") for i in date_list: #转换为unix时间戳格式 timearray = time.strptime(i, "%y-%m-%d %h:%m") timestamp = time.mktime(timearray) while true: now_time = round(time.time(),0) if timestamp == now_time: job_func() break else: time.sleep(1) except exception as e: raise e if __name__ == "__main__": def print1(): print("ok") timing().dojusttime('2018-06-08 17:53,2018-06-08 17:54',print1)
以上这篇python的schedule定时任务模块二次封装方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: Python 可爱的大小写
推荐阅读
-
从零学python系列之浅谈pickle模块封装和拆封数据对象的方法
-
Linux部署python爬虫脚本,并设置定时任务的方法
-
Python3中常用的处理时间和实现定时任务的方法的介绍
-
从零学python系列之浅谈pickle模块封装和拆封数据对象的方法
-
python:定时任务模块schedule
-
python-schedule模块(定时任务)基于官方文档总结
-
Node.js设置定时任务之node-schedule模块的使用详解
-
在NodeJs中使用node-schedule增加定时器任务的方法
-
Linux部署python爬虫脚本,并设置定时任务的方法
-
Python3中常用的处理时间和实现定时任务的方法的介绍