python 定时任务之 schedule

import schedule
import time

def task():
    print("任务启动了!")

# 安排任务在16:59:59运行
schedule.every().day.at("16:59:59").do(task)

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

tips: 如果要加一点延迟,可以time.sleep()

posted @ 2024-10-06 12:20  __username  阅读(21)  评论(0编辑  收藏  举报

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。