Metadata-Version: 2.4
Name: adobe-stock-asis
Version: 1.4.0
Summary: Adobe Stock Image Scraper - Simple CLI tool
Home-page: https://github.com/codebyhasan/adobe_stock_scraper
Author: CodebyHasan
Author-email: codebyhasan@example.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: selenium>=4.0.0
Requires-Dist: beautifulsoup4>=4.9.0
Requires-Dist: lxml>=4.6.0
Requires-Dist: requests>=2.25.0
Requires-Dist: python-dotenv>=0.19.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# asis - Adobe Stock Image Scraper

Simple CLI tool for scraping images from Adobe Stock.

## Install

```powershell
pip install asis
```

## Usage

```powershell
asis -u "URL" -o ./output -m 10
```

### Options

| Flag | Description | Default |
|------|-------------|---------|
| `-u, --url` | Adobe Stock search URL | (required) |
| `-o, --output` | Output directory | `./output` |
| `-m, --max` | Max pages to scrape | `4` |
| `-s, --start` | Starting page | `1` |
| `-d, --driver` | ChromeDriver path | (auto) |

### Examples

```powershell
# Basic usage
asis -u "https://stock.adobe.com/search?k=coffee"

# Download 10 pages to custom folder
asis -u "URL" -o ./images -m 10

# Resume from page 5
asis -u "URL" -s 5
```

### Using .env file

Create `.env` file:
```
BASE_URL=https://stock.adobe.com/search?k=yoursearch
OUTPUT_DIR=./output
PAGE_MAX=4
```

Then run:
```powershell
asis
```

## Requirements

- Python 3.8+
- Google Chrome
- ChromeDriver (optional if in PATH)

## License

MIT

---

**Credits:**
- AI assistance by [opencode](https://opencode.ai/) (Big Pickle model)
- Original project: https://github.com/jean-roland/adobe_stock_scraper
