This project involves developing a Python-based web scraping tool to extract product details from Amazon. The tool retrieves information such as product title, price, rating, number of reviews, and availability. The extracted data is then saved into a CSV file for easy analysis and reporting.
- Scrapes product details including:
- Title
- Price
- Rating
- Number of Reviews
- Availability
- Utilizes:
requestsfor HTTP requestsBeautifulSoupfor HTML parsingpandasfor data manipulationnumpyfor numerical operations
- Saves data into a CSV file
Ensure you have the following Python packages installed:
requestsbeautifulsoup4pandasnumpy
You can install them using pip:
pip install requests beautifulsoup4 pandas numpy