0% found this document useful (0 votes)
61 views

Python Assignment PDF

This Python assignment involves scraping product information from Amazon and saving it to a CSV file. Students are asked to scrape details like name, price, and rating from the first 20 pages of a bags search URL, then visit individual product pages and collect additional data like description, ASIN, and manufacturer for around 200 products total. The scraped data should be exported to a CSV and the GitHub link shared upon completion. Third party packages can be used but not services providing direct data access.

Uploaded by

GODAVARI PATLE
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views

Python Assignment PDF

This Python assignment involves scraping product information from Amazon and saving it to a CSV file. Students are asked to scrape details like name, price, and rating from the first 20 pages of a bags search URL, then visit individual product pages and collect additional data like description, ASIN, and manufacturer for around 200 products total. The scraped data should be exported to a CSV and the GitHub link shared upon completion. Third party packages can be used but not services providing direct data access.

Uploaded by

GODAVARI PATLE
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Python Assignment

Part 1

In this assignment you are required to scrape all products from this URL:

https://www.amazon.in/s?k=bags&crid=2M096C61O4MLT&qid=1653308124&sprefix=ba%2Caps%2
C283&ref=sr_pg_1

Need to scrape atleast 20 pages of product listing pages

Items to scrape

• Product URL
• Product Name
• Product Price
• Rating
• Number of reviews

Part 2

With the Product URL received in the above case, hit each URL, and add below items:

• Description
• ASIN
• Product Description
• Manufacturer

Need to hit around 200 product URL’s and fetch various information.

The entire data needs to be exported in a csv format

You are free to use third party packages for scraping

Avoid using third party packages or APIs which give direct data

Share the github link of the deploy.

You might also like