zhangyong 9 달 전
부모
커밋
d590b18893
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      sph_sy_main.py

+ 3 - 3
sph_sy_main.py

@@ -14,9 +14,9 @@ def video_start_sph():
     print("视频号任务结束")
 
 
-# 每天早上 6 点执行
-schedule.every().day.at("01:00").do(video_start_sph)
-# SphNrxs.sph_nrxs_data()
+# 每天早上 10:30 执行
+schedule.every().day.at("10:30").do(video_start_sph)
+SphNrxs.sph_nrxs_data()
 while True:
     schedule.run_pending()
     time.sleep(1)