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()
本文来自博客园,作者:__username,转载请注明原文链接:https://www.cnblogs.com/code3/p/18448976