From e961c7bc4232e0e30d78a9a9f9e1d92844103de6 Mon Sep 17 00:00:00 2001 From: Nahuel Lofeudo Date: Tue, 7 Mar 2023 19:41:37 +0000 Subject: [PATCH] Removed the API key left accidentally in the code. The key is now invalidated. --- gtfs_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtfs_client.py b/gtfs_client.py index cafedce..73deca8 100644 --- a/gtfs_client.py +++ b/gtfs_client.py @@ -14,7 +14,7 @@ from arrival_times import ArrivalTime # Constants and configuration GTFS_BASE_DATA_URL = "https://www.transportforireland.ie/transitData/google_transit_combined.zip" GTFS_R_URL = "https://api.nationaltransport.ie/gtfsr/v1?format=json" -API_KEY = '470fcdd00bfe45c188fb236757d2df4f' +API_KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' BASE_DATA_MINSIZE = 20000000 # The zipped base data should be over 20-ish megabytes class GTFSClient: