From 331dc3c1de1879a3e9cf1ea9e1da3a7242ee66b4 Mon Sep 17 00:00:00 2001 From: Paco Xu Date: Mon, 1 Apr 2024 16:48:59 +0800 Subject: [PATCH 1/2] update to kubecon eu 2024 --- download_slides.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/download_slides.py b/download_slides.py index ac47383..f2e83a9 100644 --- a/download_slides.py +++ b/download_slides.py @@ -21,7 +21,8 @@ def download_file(url, file_path, timeout=30): # Step 1: Find all topic links on the main page -topics_url = "https://kccncna2023.sched.com/list/descriptions/" +topics_url = "https://kccnceu2024.sched.com/list/descriptions/" +# topics_url = "https://colocatedeventseu2024.sched.com/list/descriptions/" response = requests.get(topics_url) topic_soup = BeautifulSoup(response.text, "html.parser") @@ -50,4 +51,4 @@ def download_file(url, file_path, timeout=30): print(file_path) executor.submit(download_file, link, file_path) -print("Download completed.") \ No newline at end of file +print("Download completed.") From f172125c22cc8d7761c97564df81e2af3e4c4e53 Mon Sep 17 00:00:00 2001 From: Paco Xu Date: Mon, 26 Aug 2024 15:20:46 +0800 Subject: [PATCH 2/2] donwload KubeCon China 2024 slides --- download_slides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_slides.py b/download_slides.py index f2e83a9..caaf680 100644 --- a/download_slides.py +++ b/download_slides.py @@ -21,7 +21,7 @@ def download_file(url, file_path, timeout=30): # Step 1: Find all topic links on the main page -topics_url = "https://kccnceu2024.sched.com/list/descriptions/" +topics_url = "https://kccncossaidevchn2024.sched.com/list/descriptions/" # topics_url = "https://colocatedeventseu2024.sched.com/list/descriptions/" response = requests.get(topics_url) topic_soup = BeautifulSoup(response.text, "html.parser")