时间:2021-05-22
通过定时来执行任务,我们日常工作生活中会经常用到。python有schedule这个库,简单好用,比如,可以每秒,每分,每小时,每天,每天的某个时间点,间隔天数的某个时间点定时执行,另外自己又写了一个可以自定义时间点来定时执行任务,代码如下。
import scheduleimport 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定时任务模块二次封装方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
node-schedule是Node.js的一个定时任务(crontab)模块。我们可以使用定时任务来对服务器系统进行维护,让其在固定的时间段执行某些必要的操作
@schedule注解是springboot常用的定时任务注解,使用起来简单方便,但是如果定时任务非常多,或者有的任务很耗时,会影响到其他定时任务的执行,因为s
刚刚看了下SpringBoot实现定时任务的文章,感觉还不错。SpringBoot使用Spring自带的Schedule来实现定时任务变得非常简单和方便。在这里
前言springboot已经支持了定时任务Schedule模块,一般情况已经完全能够满足我们的实际需求。今天就记录一下我使用schedule时候踩的坑吧。想要使
我们在平常项目开发中,经常会用到周期性定时任务,这个时候使用定时任务就能很方便的实现。在SpringBoot中用得最多的就是Schedule。一、SpringB