如果你想使用 schedule
模組,首先需要安裝它。在終端中執行以下指令:
pip install schedule
然後,你可以這樣使用:
import schedule
import time
def your_main_logic():
# 在這裡放入你的主邏輯
print("執行主邏輯...")
# 設定每五分鐘執行一次
schedule.every(5).minutes.do(your_main_logic)
while True:
schedule.run_pending()
time.sleep(1)
如果你偏好使用 cron
表達式,可以考慮使用 schedule
模組的 cron
方法:
import schedule
import time
def your_main_logic():
# 在這裡放入你的主邏輯
print("執行主邏輯...")
# 設定每五分鐘執行一次
schedule.every().hour.at(":00").do(your_main_logic)
while True:
schedule.run_pending()
time.sleep(1)
這兩種方式都可以實現每五分鐘執行一次的目標,你可以選擇其中一種來使用。