Browse Source

修改定时任务

zhangyong 1 year ago
parent
commit
d604426da8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.py

+ 2 - 2
main.py

@@ -15,10 +15,10 @@ def job_douyin_data():
     douyinAuthor.get_token()
 
 # 设置上午10点运行任务
-schedule.every().day.at("10:00").do(job_douyin_data)
+schedule.every().day.at("12:00").do(job_douyin_data)
 
 # 设置下午4点运行任务
-schedule.every().day.at("16:00").do(job_video_stitching)
+schedule.every().day.at("16:32").do(job_video_stitching)
 
 while True:
     schedule.run_pending()