We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdce595 commit 8698b97Copy full SHA for 8698b97
1 file changed
src/scripts/fetchData.js
@@ -7,9 +7,11 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
7
8
const API_URL = "https://programapi.europython.eu/ep2025";
9
10
-// URLs for EuroPython 2024 data
11
-const SESSIONS_URL = API_URL + "/sessions.json";
12
-const SPEAKERS_URL = API_URL + "/speakers.json";
+// URLs for EuroPython 2025 data
+const SESSIONS_URL =
+ "https://gist.githubusercontent.com/egeakman/eddfb15f32ae805e8cfb4c5856ae304b/raw/466f8c20c17a9f6c5875f973acaec60e4e4d0fae/sessions.json";
13
+const SPEAKERS_URL =
14
+ "https://gist.githubusercontent.com/egeakman/469f9abb23a787df16d8787f438dfdb6/raw/62d2b7e77c1b078a0e27578c72598a505f9fafbf/speakers.json";
15
const SCHEDULE_URL = API_URL + "/schedule.json";
16
17
// Define output directory and file paths
0 commit comments