This Python script scrapes product information from Amazon.com and saves it to a JSON file. It utilizes the BeautifulSoup library for web scraping and requests for sending HTTP requests. The script will start scraping product information from the provided Amazon URLs in the URL list. Once finished, the scraped data will be saved in the products3.json file.
Scrapes product titles, prices, ASINs, ratings, and review counts from Amazon.com search pages. Handles pagination to scrape multiple pages of search results. Stores the scraped data in a JSON file (products3.json).
add the url searches from amazon to the list in product_grabber_main.py
>>> python3 product_grabber_main.py
Install the required Python packages listed in requirements.txt.
pip3 install -r requirements.txt