Metadata-Version: 2.3
Name: amzsc
Version: 0.1.2
Summary: Amazon product description scraper
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: bs4>=0.0.2
Requires-Dist: fake-useragent>=2.2.0
Requires-Dist: requests>=2.32.5
Requires-Dist: selenium>=4.35.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# amzsc

[![image](https://img.shields.io/pypi/v/amzsc.svg)](https://pypi.python.org/pypi/amzsc)
[![image](https://img.shields.io/pypi/l/amzsc.svg)](https://pypi.python.org/pypi/amzsc)
[![image](https://img.shields.io/pypi/pyversions/amzsc.svg)](https://pypi.python.org/pypi/amzsc)
[![Actions status](https://github.com/ryzanbui02/amzsc/actions/workflows/test-and-release.yaml/badge.svg)](https://github.com/ryzanbui02/amzsc/actions)
[![codecov](https://codecov.io/gh/ryzanbui02/amzsc/branch/main/graph/badge.svg)](https://codecov.io/gh/ryzanbui02/amzsc)

`amzsc` is an Amazon product description scraper library that allows you to extract product details such as title, price, description, and reviews using ASINs.

## Example Usage

```python
from amzsc import AmazonScraper


def main():
    # Initialize the AmazonScraper with your Amazon credentials
    scraper = AmazonScraper()
    asins = ['B08N5WRWNW', 'B07XJ8C8F5']  # Example ASINs
    results = scraper.scrape(asins=asins, marketplace="US") # DataFrame with scraped data
    print(results)


if __name__ == "__main__":
    main()
```

## Installation

```bash
pip install amzsc
```

## Contribution

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

```bash
git clone https://github.com/ryzanbui02/amzsc.git
cd amzsc
uv sync
```
