Question: Can anyone help finshing the code: I want scrap Title of the book, Author, Publication date , and rating. Put in the data csv file.

Can anyone help finshing the code:

  1. I want scrap Title of the book, Author, Publication date , and rating.
  2. Put in the data csv file.

import requests

from bs4 import BeautifulSoup

import csv

import time

URL= 'https://www.amazon.com/gp/new-releases/books/17/ref=zg_bsnr_nav_b_1_b'

URL= 'https://www.amazon.com/gp/new-releases/books/17/ref=zg_bsnr_pg_2?ie=UTF8&pg=2'

page= requests.get(URL)

soup = BeautifulSoup(page.content, 'html.parser')

results = soup.find(id='zg-ordered-list')

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!