python 定時任務之 schedule

__username發表於2024-10-06
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)

相關文章