YOU’RE LEARNING TO↗learner can install beautifulsoup4 and create a BeautifulSoup object
↗learner can use find() and find_all() to locate elements by tag, class, and id
↗learner can use CSS selectors with select() and select_one()
↗learner can navigate the DOM tree (parent, children, next_sibling)
↗learner can extract text with .text / .get_text() and attributes with .get()
↗learner can handle missing elements without crashing