├── .gitignore ├── README.md ├── extract_ngram.py ├── find_amazon_id.py ├── generate_ngrams.py ├── jstor.EXAMPLE.cnf ├── process_reviews.py ├── read_reviews.py └── scrape.py /.gitignore: -------------------------------------------------------------------------------- 1 | jstor.cnf 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/README.md -------------------------------------------------------------------------------- /extract_ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/extract_ngram.py -------------------------------------------------------------------------------- /find_amazon_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/find_amazon_id.py -------------------------------------------------------------------------------- /generate_ngrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/generate_ngrams.py -------------------------------------------------------------------------------- /jstor.EXAMPLE.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/jstor.EXAMPLE.cnf -------------------------------------------------------------------------------- /process_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/process_reviews.py -------------------------------------------------------------------------------- /read_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/read_reviews.py -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalperin/amazon-review-scraper/HEAD/scrape.py --------------------------------------------------------------------------------