Metadata-Version: 2.4
Name: plantfyi
Version: 0.1.0
Summary: Plant taxonomy and cultivation API client — plantfyi.com
Project-URL: Homepage, https://plantfyi.com
Project-URL: Documentation, https://plantfyi.com/developers/
Project-URL: Repository, https://github.com/fyipedia/plantfyi
Project-URL: Issues, https://github.com/fyipedia/plantfyi/issues
Project-URL: Changelog, https://github.com/fyipedia/plantfyi/releases
Author: FYIPedia
License-Expression: MIT
License-File: LICENSE
Keywords: botany,cultivation,flora,garden,horticulture,plant,species,taxonomy
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Provides-Extra: all
Requires-Dist: httpx>=0.27; extra == 'all'
Requires-Dist: mcp>=1.0; extra == 'all'
Requires-Dist: rich>=13.0; extra == 'all'
Requires-Dist: typer>=0.15; extra == 'all'
Provides-Extra: api
Requires-Dist: httpx>=0.27; extra == 'api'
Provides-Extra: cli
Requires-Dist: rich>=13.0; extra == 'cli'
Requires-Dist: typer>=0.15; extra == 'cli'
Provides-Extra: mcp
Requires-Dist: mcp>=1.0; extra == 'mcp'
Description-Content-Type: text/markdown

# plantfyi

Plant taxonomy and cultivation API client — [plantfyi.com](https://plantfyi.com)

## Install

```bash
pip install plantfyi
```

## Quick Start

```python
from plantfyi.api import PlantFYI

with PlantFYI() as api:
    results = api.search("rose")
    print(results)
```

## License

MIT
