Metadata-Version: 2.4
Name: greenlens-python
Version: 1.0.0
Summary: Official Python SDK & CLI for GreenLens Pro: AI plant identification, disease diagnosis, and indoor houseplant care guides.
Author-email: GreenLens Pro Team <support@greenlenspro.com>
License: MIT
Project-URL: Homepage, https://greenlenspro.com
Project-URL: App Store, https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546
Project-URL: Documentation, https://greenlenspro.com
Project-URL: Repository, https://github.com/knuthtimo-lab/greenlenspro-cli
Project-URL: Bug Tracker, https://greenlenspro.com
Keywords: plant-care,plant-identification,plant-disease-diagnosis,houseplants,ai-plant-diagnosis,greenlens,greenlens-pro,pflanzen-pflege
Classifier: Development Status :: 5 - Production/Stable
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
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 🌿 GreenLens Python SDK & Plant Care CLI

[![PyPI Version](https://img.shields.io/pypi/v/greenlens-python.svg?style=flat-square&color=2e7d32)](https://pypi.org/project/greenlens-python/)
[![App Store](https://img.shields.io/badge/AppStore-GreenLens%20Pflanzen%20Erkennen-black?style=flat-square&logo=apple)](https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![Website](https://img.shields.io/badge/Website-greenlenspro.com-00c853?style=flat-square)](https://greenlenspro.com)

Official Python SDK & CLI powered by **[GreenLens Pro](https://greenlenspro.com)** — the leading AI plant identification, plant disease diagnosis, and indoor houseplant care tracking app on the [App Store](https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546).

---

## 📲 Download the App

[![Download GreenLens on the App Store](https://img.shields.io/badge/Download_on_App_Store-iOS_App-000000?style=for-the-badge&logo=apple&logoColor=white)](https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546)

- **Official Website**: [https://greenlenspro.com](https://greenlenspro.com)
- **App Store Link**: [GreenLens: Pflanzen Erkennen on iOS App Store](https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546)

---

## 📦 Installation

```bash
pip install greenlens-python
```

---

## 💻 Python Library Usage

```python
import greenlens

# 1. Houseplant Care Lookup
care_info = greenlens.get_care("Monstera")
for plant in care_info:
    print(plant["name"], plant["light"], plant["watering"])

# 2. AI Plant Symptom & Disease Diagnosis
diagnosis = greenlens.diagnose("yellow leaves")
print(diagnosis)

# 3. Light Meter Calculator
light = greenlens.light_meter(1500)
print(light["category"], light["suitable_plants"])
```

---

## 🛠️ CLI Usage

```bash
# Care lookup
greenlens-py care "Monstera"
greenlens-py care "Glücksfeder"

# Symptom diagnosis
greenlens-py diagnose "yellow leaves"
greenlens-py diagnose "brown spots"

# Light meter
greenlens-py light-meter 1500
```

---

## 🔗 Official Links

- 🍏 **App Store**: [https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546](https://apps.apple.com/de/app/greenlens-pflanzen-erkennen/id6759843546)
- 🌐 **Official Website**: [https://greenlenspro.com](https://greenlenspro.com)
- 🐙 **GitHub Repository**: [https://github.com/knuthtimo-lab/greenlenspro-cli](https://github.com/knuthtimo-lab/greenlenspro-cli)

---

## 📄 License

Distributed under the MIT License. See [LICENSE](https://greenlenspro.com) for more information.

Copyright (c) 2026 **[GreenLens Pro](https://greenlenspro.com)**
