This repository contains web scrapers for various websites.
Filename: amznscraper.py
The Amazon Scraper is a Python script designed to search for products on Amazon and retrieve detailed product information from the search results.
Clone the Amazon Scraper repository to your local machine:
git clone <https://github.com/Cartha007/scraper.git>
cd amazon-scraper
To use the Amazon Scraper, you need to install the necessary dependencies. Open your terminal and run the following command:
pip install beautifulsoup4 requests
To run the Amazon scraper, execute the the script with Python:
python amznscraper.py
- Python3.x
- BeautifulSoup: For parsing HTML content
- Requests: For making HTTP requests
- Lxml: Also for parsing HTML content but faster(optional). Can be installed with:
pip install lxml