From 5b8b84f215eff65905e8b34733d8e7c1dedac4b3 Mon Sep 17 00:00:00 2001 From: jingboyitiji Date: Tue, 18 Mar 2025 16:17:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=9A=E7=83=AF=E7=83=83=E5=85=AB=E5=A4=A7?= =?UTF-8?q?=E7=BB=B4=E5=BA=A6=E6=89=A7=E8=A1=8C=E8=84=9A=E6=9C=AC=E8=B0=83?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 聚烯烃八大维度预测任务.py | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 聚烯烃八大维度预测任务.py diff --git a/聚烯烃八大维度预测任务.py b/聚烯烃八大维度预测任务.py new file mode 100644 index 0000000..0c71c86 --- /dev/null +++ b/聚烯烃八大维度预测任务.py @@ -0,0 +1,50 @@ +# 这是原油日度,周度,月度的预测,脚本 +# 遍历时间,跳过周六日,每日7点开始预测 + +import datetime +import subprocess +import time + + +def run_predictions(target_date): + """执行三个预测脚本""" + scripts = [ + "main_juxiting.py", + "main_juxiting_zhoudu.py", + "main_juxiting_yuedu.py" + ] + + # 依次执行每个脚本 + for script in scripts: + command = [r"C:\Users\Hello\.conda\envs\predict\python", script] + subprocess.run(command, check=True) + + +def is_weekday(date): + """判断是否为工作日(周一到周五)""" + return date.weekday() < 5 # 0-4 为周一到周五 + + +if __name__ == "__main__": + # start_date = datetime.date(2025, 3, 13) + # 开始时间取当前时间 + start_date = datetime.date.today() + # end_date = datetime.date(2100, 12, 31) + + current_date = start_date + # while current_date <= end_date: + # if is_weekday(current_date): + # # 等待到目标日期的7点 + # target_time = datetime.datetime.combine( + # current_date, datetime.time(13, 15)) + # while datetime.datetime.now() < target_time: + # time.sleep(60) # 每分钟检查一次 + # print(f"等待到 {target_time} 开始执行任务") + + # print(f"开始执行 {current_date} 的预测任务") + # run_predictions(current_date) + + # current_date += datetime.timedelta(days=1) + + print(f"开始执行 {current_date} 的预测任务") + run_predictions(current_date)