From 0e77be9e070943038734b721462facd67ed167b8 Mon Sep 17 00:00:00 2001 From: Stefano Assenzo Date: Tue, 7 Mar 2023 15:41:00 +0100 Subject: [PATCH] Update main.py --- src/bot/telegram/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bot/telegram/main.py b/src/bot/telegram/main.py index 0c6f084..a65e0db 100644 --- a/src/bot/telegram/main.py +++ b/src/bot/telegram/main.py @@ -82,15 +82,17 @@ def send_notification(): for b in array_username: bot.send_message(b, i['School Subject'][tomorrow][0]['Subject'] + ", " + i['School Subject'][tomorrow][0]['Teacher'] + "\n" + i['School Subject'][tomorrow][1]['Subject'] + ", " + i['School Subject'][tomorrow][1]['Teacher'] + "\n" + i['School Subject'][tomorrow][2]['Subject'] + ", " + i['School Subject'][tomorrow][2]['Teacher'] + "\n" + i['School Subject'][tomorrow][3]['Subject'] + ", " + i['School Subject'][tomorrow][3]['Teacher'] + "\n" + i['School Subject'][tomorrow][4]['Subject'] + ", " + i['School Subject'][tomorrow][4]['Teacher'] + "\n" + i['School Subject'][tomorrow][5]['Subject'] + ", " + i['School Subject'][tomorrow][5]['Teacher']) +schedule.every().day.at("06:50").do(send_notification) schedule.every().day.at("07:50").do(send_notification) schedule.every().day.at("08:50").do(send_notification) -schedule.every().day.at("09:50").do(send_notification) +schedule.every().day.at("10:05").do(send_notification) schedule.every().day.at("11:05").do(send_notification) schedule.every().day.at("12:05").do(send_notification) -schedule.every().day.at("13:05").do(send_notification) schedule.every().day.at("21:00").do(send_notification) now = datetime.datetime.now() t1 = threading.Thread(target=bot.polling).start() while True: + now = datetime.datetime.now() + print(now) schedule.run_pending()