Web Scraping Tutorial with Python and Beautiful Soup

Beautiful Soup Python Tutorial

01 – Your first Web Scraping script with Python and Beautiful Soup

Learn how to scrap a music web store using a Python library called Beautiful Soup. With simple, easy to read code, we are going to extract the data of all albums from our favourite music bands and store it into a .csv file.

It is simple, it is easy and even better, is efficient. And it is a lot of fun!

02 – How to get the next page on Beautiful Soup

It is easy to scrape a simple page, but how do we get the next page on Beautiful Soup? What can we do to crawl all the pages until we reach the end?

Learn how to fetch all the items while Web Scraping by reaching to the next pages.