Skip to content

Commit

Permalink
update KubeCon NA 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
pacoxu committed Nov 27, 2024
1 parent e28cc24 commit 330ab17
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions download_slides.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ def download_file(url, file_path, timeout=30):


# Step 1: Find all topic links on the main page
topics_url = "https://kccncossaidevchn2024.sched.com/list/descriptions/"
# topics_url = "https://colocatedeventseu2024.sched.com/list/descriptions/"
# topics_url = "http://localhost:8000/view-source_https___pytorch2023.sched.com_list_descriptions_.html"
# topics_url = "https://colocatedeventsna2024.sched.com/list/descriptions/"
topics_url = "https://kccncna2024.sched.com/list/descriptions/?iframe=no"
# topics_url = "https://kcsna2024.sched.com/list/descriptions?iframe=no"
response = requests.get(topics_url)
topic_soup = BeautifulSoup(response.text, "html.parser")
print(response.text)

slides_links = []
# Extract links to PDF and PPTX files
Expand Down

0 comments on commit 330ab17

Please sign in to comment.