Update app.py
Browse files
app.py
CHANGED
@@ -81,8 +81,11 @@ def run_scheduler(chatbot_ref):
|
|
81 |
print(f"Zamanlanmış işlem tamamlandı: {time.strftime('%H:%M:%S')}")
|
82 |
|
83 |
schedule.every().day.at("11:32").do(scheduled_save_and_upload)
|
84 |
-
schedule.every().day.at("15:
|
85 |
-
schedule.every().day.at("
|
|
|
|
|
|
|
86 |
print("Zamanlayıcı başlatıldı")
|
87 |
|
88 |
while True:
|
|
|
81 |
print(f"Zamanlanmış işlem tamamlandı: {time.strftime('%H:%M:%S')}")
|
82 |
|
83 |
schedule.every().day.at("11:32").do(scheduled_save_and_upload)
|
84 |
+
schedule.every().day.at("15:15").do(scheduled_save_and_upload)
|
85 |
+
schedule.every().day.at("15:30").do(scheduled_save_and_upload)
|
86 |
+
schedule.every().day.at("17:32").do(scheduled_save_and_upload)
|
87 |
+
schedule.every().day.at("19:15").do(scheduled_save_and_upload)
|
88 |
+
schedule.every().day.at("21:30").do(scheduled_save_and_upload)
|
89 |
print("Zamanlayıcı başlatıldı")
|
90 |
|
91 |
while True:
|