Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ankitjain28may/scrapeamazon
Scrape the Users Review
https://github.com/ankitjain28may/scrapeamazon
Last synced: 7 days ago
JSON representation
Scrape the Users Review
- Host: GitHub
- URL: https://github.com/ankitjain28may/scrapeamazon
- Owner: ankitjain28may
- License: apache-2.0
- Created: 2016-10-05T11:04:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-28T18:32:20.000Z (about 7 years ago)
- Last Synced: 2024-10-31T08:39:45.211Z (20 days ago)
- Language: Python
- Size: 13.7 KB
- Stars: 10
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ScrapeAmazon
>Scrape the Users Review from Amazon supports python 3.5## Installation
1- Install python 3.5 from [Python.org](https://www.python.org)2- `sudo apt-get install python3-pip` (For Ubuntu Users)
3- `python setup.py` or `python3 setup.py`
This will install all these packages
* `pip install bs4`
* `pip install requests`
* `pip install urllib`
* `pip install validators`
After the installation, open terminal at the root folder--
Run `python run.py` or `python3 run.py` to get individual reviews at the terminal screen or cmd.
OR
Run `python automatedScrape.py` or `python3 automatedScrape.py` to save all the reviews of all the items for the searched product in the file.
OR
Run `python unlimitedReviews.py` or `python3 unlimitedReviews.py` to fetch all the reviews according to page No. at the terminal screen or cmd.
## Some Useful Installation Tips
If you have already installed python 2.7 install python 3 as well but it may be the problem that the packages installed with respect to python 2.7 and shows error for the python 3 packages,
So you need to install virtual Environment for the python 3 to install python3 packages.
```
virtualenv -p /usr/bin/python3 py3env
source py3env/bin/activate
pip install package-name
```After setting virtual environment install packages listed above and Enjoy.
## License
Copyright (c) 2016 Ankit Jain - Released under the Apache License
P.S For more python scripts Go To -> [pythonResources](https://github.com/ankitjain28may/pythonResources)