From f3ee26a977369933c743bf45eb8ae780483b8f86 Mon Sep 17 00:00:00 2001 From: MathiasDPX Date: Wed, 27 Nov 2024 12:47:14 +0100 Subject: [PATCH] =?UTF-8?q?Add=20Cin=C3=A9=20Galaxy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index a6f7533..92439d7 100644 --- a/app.py +++ b/app.py @@ -11,6 +11,8 @@ from modules.Classes import * theaters = [Theater(data["node"]) for data in requests.get("https://www.allocine.fr/_/localization_city/Brest").json()["values"]["theaters"]] +theaters = theaters + [Theater(data["node"]) for data in requests.get("https://www.allocine.fr/_/localization_city/Landerneau").json()["values"]["theaters"]] + def getShowtimes(date): showtimes: list[Showtime] = []