Metadata-Version: 2.1
Name: python_amazon_scraper
Version: 1.1.0
Summary: Scrap Product Data from Amazon
Home-page: https://github.com/sannjayy/python_amazon_scraper
Author: Sanjay Sikdar
Author-email: me@sanjaysikdar.dev
License: MIT
Project-URL: Bug Reports, https://github.com/sannjayy/python_amazon_scraper/issues
Project-URL: Funding, https://www.paypal.com/paypalme/znasofficial
Project-URL: Say Thanks!, https://saythanks.io/to/sannjayy
Project-URL: Source, https://github.com/sannjayy/python_amazon_scraper/
Keywords: python,scraper,amazon scraper
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9, <4
Description-Content-Type: text/markdown
License-File: LICENSE

## 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 = False

Product 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*.   
- 📫 me@sanjaysikdar.dev



