├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── amazon_comments_scraper.py ├── amazon_comments_scraper_vpn.py ├── amazon_products_scraper.py ├── banned_exception.py ├── constants.py ├── core_extract_comments.py ├── core_generate_product_ids.py ├── core_utils.py ├── count_reviews.py ├── fig ├── img1.png └── img2.png └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [philipperemy] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/README.md -------------------------------------------------------------------------------- /amazon_comments_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/amazon_comments_scraper.py -------------------------------------------------------------------------------- /amazon_comments_scraper_vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/amazon_comments_scraper_vpn.py -------------------------------------------------------------------------------- /amazon_products_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/amazon_products_scraper.py -------------------------------------------------------------------------------- /banned_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/banned_exception.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- 1 | AMAZON_BASE_URL = 'https://www.amazon.com' 2 | -------------------------------------------------------------------------------- /core_extract_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/core_extract_comments.py -------------------------------------------------------------------------------- /core_generate_product_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/core_generate_product_ids.py -------------------------------------------------------------------------------- /core_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/core_utils.py -------------------------------------------------------------------------------- /count_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/count_reviews.py -------------------------------------------------------------------------------- /fig/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/fig/img1.png -------------------------------------------------------------------------------- /fig/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/amazon-reviews-scraper/HEAD/fig/img2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | validators 3 | beautifulsoup4 4 | lxml --------------------------------------------------------------------------------