Jovian
Sign In

Holmquist Webscraping Project 46ad7

Goodreads Choice Awards Winners

webpage

Introduction

In this project, we will be looking at the top 20 books in 17 different categories which users of the popular book-related social media site GoodReads voted on for the year of 2021. We will have to find each book in each category and extract all the data that will give us a good description of the book, in order to then export it as a csv file and compare them all with each other.

Installing the required libraries

!pip3 install jovian --upgrade --quiet
!pip3 install requests --upgrade --quiet
!pip3 install pathlib --upgrade --quiet
!pip3 install beautifulsoup4 --upgrade --quiet

Importing the required libraries