Browse Source

修改定时任务

zhangyong 1 year ago
parent
commit
5255f1a691
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.py

+ 1 - 1
main.py

@@ -18,7 +18,7 @@ def job_douyin_data():
 schedule.every().day.at("12:00").do(job_douyin_data)
 
 # 设置下午4点运行任务
-schedule.every().day.at("19:30").do(job_video_stitching)
+schedule.every().day.at("19:42").do(job_video_stitching)
 
 while True:
     schedule.run_pending()