Metadata-Version: 2.4
Name: apify-nike-client
Version: 0.1.0
Summary: Python client for the rl1987/nike-api-scraper Apify Actor — Nike.com listings and full product detail.
Author-email: rl1987 <rimantas@keyspace.lt>
License: MIT
Project-URL: Homepage, https://apify.com/rl1987/nike-api-scraper
Project-URL: Source, https://apify.com/rl1987/nike-api-scraper
Keywords: apify,web-scraping,api-client
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Dynamic: license-file

# apify-nike-client

Python client for the rl1987/nike-api-scraper Apify Actor — Nike.com listings and full product detail.

Actor: [rl1987/nike-api-scraper](https://apify.com/rl1987/nike-api-scraper) (pay-per-result, no subscription).

## Install

```bash
pip install apify-nike-client
```

## Usage

```python
from apify_nike_client import NikeClient

client = NikeClient(api_token="apify_api_...")  # https://console.apify.com/account/integrations
items = client.run({"searchTerms": ["air force 1"], "fetchProductDetails": True, "maxItems": 20})
for item in items:
    print(item)
```

## License

MIT
