Metadata-Version: 2.4
Name: greenlens-python
Version: 1.0.1
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

Fast, offline houseplant guidance for Python applications and your terminal. Look up care requirements, diagnose common symptoms, match plant names, and assess room light in seconds. Powered by **[GreenLens Pro](https://greenlenspro.com)**.

[![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)

---

## 📲 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)

---

## 💡 What it does

- **Care Requirements**: Looks up watering, light, humidity, and pet-toxicity guidance for 50+ common houseplants.
- **AI Symptom Diagnosis**: Diagnoses frequent problems (yellow leaves, brown spots, pests, drooping growth).
- **Plant Identification**: Matches common and scientific plant names.
- **Lux Light Meter**: Interprets room-light readings in lux and suggests suitable indoor plant types.

The library and CLI run entirely from the included offline catalog. For camera-based AI identification and live tracking, visit **[GreenLens Pro](https://greenlenspro.com)**.

---

## 📦 Installation

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

---

## 💻 Python SDK 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 (`greenlens-py`)

```bash
# Care requirements for a plant
greenlens-py care "Monstera"

# Common causes and next steps for a symptom
greenlens-py diagnose "yellow leaves"

# Interpret a measured light level
greenlens-py light-meter 1500
```

### Commands Overview

| Command | What you get | Example |
| --- | --- | --- |
| `care <plant>` | Light, watering, humidity, and toxicity guidance | `greenlens-py care "Pothos"` |
| `diagnose <symptom>` | Likely causes and treatment steps | `greenlens-py diagnose "brown spots"` |
| `light-meter <lux>` | Light category and suitable plant suggestions | `greenlens-py light-meter 1500` |

---

## 🔗 Official Links

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

---

## 🌍 Explore GreenLens Pro

Find the right GreenLens experience in your language:

| Language | Identify Plants | Plant Care | Diagnose Plant Diseases |
| --- | --- | --- | --- |
| **Deutsch** | [Pflanzen erkennen](https://greenlenspro.com/pflanzen-erkennen-app) | [Pflanzenpflege-App](https://greenlenspro.com/pflanzen-pflege-app) | [Pflanzenkrankheiten erkennen](https://greenlenspro.com/pflanzen-krankheiten-erkennen) |
| **English** | [Plant identifier app](https://greenlenspro.com/plant-identifier-app) | [Plant care app](https://greenlenspro.com/plant-care-app) | [Plant disease identifier](https://greenlenspro.com/plant-disease-identifier) |
| **Español** | [Identificador de plantas](https://greenlenspro.com/es/identificador-de-plantas) | [App para cuidar plantas](https://greenlenspro.com/es/app-para-cuidar-plantas) | [Diagnosticar enfermedades de plantas](https://greenlenspro.com/es/diagnosticar-enfermedades-plantas) |

---

## 📄 License

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

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