Retrieve data on the closest item on Amazon corresponding to a given search term or directly using an ASIN.
- Get Python Poetry
cdinto the root of this repository- Run
poetry install
Retrieve reviews for the closest product on Amazon based on a search query.
from src.amazon import AmazonScraper
search_query = 'ipad air'
scraper = AmazonScraper()
reviews = scraper.get_closest_product_reviews(search_query, num_reviews=25)
print(reviews)
# [{'customer_name': 'Kenova Pelletier', 'rating': 1, 'review': 'This looked amazing out of the box...Retrieve reviews for a specific product on Amazon using its ASIN.
from src.amazon import AmazonScraper
product_asin = 'B08J65DST5'
scraper = AmazonScraper()
reviews = scraper.get_product_reviews_by_asin(product_asin, num_reviews=25)
print(reviews)
# [{'customer_name': 'carol anderson', 'rating': 1, 'review': 'This was my first Apple product...The get_closest_product_reviews and get_product_reviews_by_asin methods also have a debug flag available that outputs the total time taken for execution.
search_query = 'ipad air'
scraper = AmazonScraper()
reviews = scraper.get_closest_product_reviews(search_query, num_reviews=5, debug=True)
# 13.47 seconds takenproduct_asin = 'B08J65DST5'
scraper = AmazonScraper()
reviews = scraper.get_product_reviews_by_asin(product_asin, num_reviews=5, debug=True)
# 10.12 seconds takenYou can also use this tool from the command line to fetch reviews by either search query or ASIN.
python src/amazon.py --query "ipad air" 5 --headless --debugpython src/amazon.py --asin "B08J65DST5" 5 --headless --debugNote that the --headless and the --debug flags are optional.
This project is intended for personal and educational purposes only. Any use of this project for commercial or production purposes is not recommended. The author does not take responsibility for any misuse or consequences arising from the use of this project outside of its intended scope.