Scraping Good Reads

Joined
Mar 19, 2024
Messages
17
Reaction score
7
Not sure if this is the right thread but basically I want to scrape the top four reviews of a good reads author page. Im not entirely sure how to do that. Do I need to put every book's link in my code and find the code attached to the top four reviews? Im writing in Python and using BS4, requests, and pandas. Any help would be highly appreciated
 
Since you're using python, probably want to do something like

response = requests.get('link')

and put response.text through BeautifulSoup to parse the things you need
 
Back
Top