diff --git a/get_dates.py b/get_dates.py index e1cfe12..cd0c230 100644 --- a/get_dates.py +++ b/get_dates.py @@ -3,7 +3,7 @@ import requests, arrow, logging, os # VARIABLES log_file = "logfile" -url = "https://0783636d.index-education.net/pronote/ical/Agenda.ics?icalsecurise=3972E4CB6D2FF1DE199B75C1969DC54C867D1CA9A09B1C797A0342D5A2749FD9695E01FD2EE008B66074C8A9C38FB737&version=2021.0.2.3¶m=66683d31266f3d31" +url = "https://0783636d.index-education.net/pronote/ical/Agenda.ics?icalsecurise=3972E4CB6D2FF1DE199B75C1969DC54C867D1CA9A09B1C797A0342D5A2749FD9695E01FD2EE008B66074C8A9C38FB737&version=2023.0.2.3¶m=66683d31266f3d31" dates_file = "dates.txt" proxy = {"https":"http://172.17.212.1:3128"} @@ -20,7 +20,7 @@ try: f = open(os.path.join(os.path.dirname(__file__),dates_file), "w") for x in e: - if x.name.casefold() == "lire ensemble": + if x.name.casefold() == "zen'semble": print(x.begin, file=f) print(x.end, file=f)