Web Scraping with Beautiful Soup — Siblings, CSS Selectors, and Node Manipulation

John Au-Yeung
3 min readJan 31, 2021
Photo by Giovanni Moschini on Unsplash

We can get data from web pages with Beautiful Soup.

It lets us parse the DOM and extract the data we want.

In this article, we’ll look at how to scrape HTML documents with Beautiful Soup.

find_all_previous() and find_previous()

--

--