Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sannjayy/python_amazon_scraper
Amazon Data Scraper PYPI Library
https://github.com/sannjayy/python_amazon_scraper
pypi-package
Last synced: 12 days ago
JSON representation
Amazon Data Scraper PYPI Library
- Host: GitHub
- URL: https://github.com/sannjayy/python_amazon_scraper
- Owner: sannjayy
- License: mit
- Created: 2023-08-21T16:41:45.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-27T10:24:30.000Z (over 1 year ago)
- Last Synced: 2024-11-11T23:12:22.494Z (about 2 months ago)
- Topics: pypi-package
- Language: Python
- Homepage: https://pypi.org/project/python-amazon-scraper/
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- License: LICENSE
Awesome Lists containing this project
README
## Scrap Data from Amazon
Extract Product information from Amazon.GitHub Repo: [https://github.com/sannjayy/python_amazon_scraper](https://github.com/sannjayy/python_amazon_scraper)
### Installaion
Do the following in your virtualenv:`pip install python_amazon_scraper`
**Import:**
```
from python_amazon_scraper import ExtractAmazon
```
---
**Minimal Code Example:**
```
from python_amazon_scraper import ExtractAmazon
url = 'AMAZON PRODUCT URL'
product = ExtractAmazon(url)print("Product Title = ", product.get_title())
print("Product Price = ", product.get_price())
print("Availability = ", product.is_available())
print("Has Deal = ", product.has_deal())print("Product Images = ", product.get_images())
```---
**DEMO OUTPUT:**
```
Product Title = Apple iPhone 12 (64GB) - Purple
Product Price = Not Available
Availability = False
Has Deal = FalseProduct Images = ['https://m.media-amazon.com/images/I/31jQ91XUDhS._SY445_SX342_QL70_FMwebp_.jpg']
```---
[![](https://img.shields.io/github/followers/sannjayy?style=social)](https://github.com/sannjayy)
Developed by *Sanjay Sikdar*.
- 📫 [email protected]