Skip to content

Commit 81fa716

Browse files
authored
Added Amazon_Reviews_Scrapper
A script to scrape Reviews from Amazon!
1 parent 6b9e96e commit 81fa716

File tree

5 files changed

+409
-0
lines changed

5 files changed

+409
-0
lines changed

Amazon_Review_Scrapper/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Amazon review scrapper
2+
3+
A Script to scrape reviews from Amazon.
4+
5+
## Setup
6+
1. Clone the folder.
7+
2. Open command line and change the directory to your folder by using ```cd foldername```.
8+
3. Run the command ```npm install```.
9+
4. If you still get module import error, you can use the command to install missing package ```npm install package-name```.
10+
5. Then run the script using command ```node script.js```.
11+
12+
## Output
13+
![output-img](https://github.com/SANKET7738/random/blob/master/amazon_reviews_scrapper/output-img/output.png)
176 KB
Loading

Amazon_Review_Scrapper/package-lock.json

+361
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Amazon_Review_Scrapper/package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "amazon_reviews_scrapper",
3+
"version": "1.0.0",
4+
"description": "A Script to scrape reviews from Amazon.",
5+
"main": "script.js",
6+
"dependencies": {
7+
"cheerio": "^1.0.0-rc.3",
8+
"got": "^11.7.0"
9+
},
10+
"devDependencies": {},
11+
"scripts": {
12+
"test": "echo \"Error: no test specified\" && exit 1"
13+
},
14+
"author": "Sanket Mhatre",
15+
"license": "ISC"
16+
}

0 commit comments

Comments
 (0)