Metadata-Version: 2.4
Name: ndvipy
Version: 0.1.0
Summary: Python SDK for NDVI Pro cloud service
Home-page: https://github.com/your-org/ndvipy
Author: NDVI Pro
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NDVI Pro Python SDK (`ndvipy`)

Quickly generate NDVI visualisations in Python using your NDVI Pro API key.

```bash
pip install ndvipy  # once published to PyPI
```

```python
from ndvipy import NDVIClient

client = NDVIClient(api_key="YOUR_API_KEY")
ndvi_bytes = client.process_image("satellite.jpg")
with open("ndvi_result.png", "wb") as f:
    f.write(ndvi_bytes)
```

## Features
* Simple one-liner to process images
* Automatic API key authentication
* Logged usage appears in your NDVI Pro dashboard
* Zero dependencies besides `requests`

## License
MIT 
