Metadata-Version: 2.4
Name: fishfyi
Version: 0.1.0
Summary: Fish species and marine biology API client — fishfyi.com
Project-URL: Homepage, https://fishfyi.com
Project-URL: Documentation, https://fishfyi.com/developers/
Project-URL: Repository, https://github.com/fyipedia/fishfyi
Project-URL: Issues, https://github.com/fyipedia/fishfyi/issues
Project-URL: Changelog, https://github.com/fyipedia/fishfyi/releases
Author: FYIPedia
License-Expression: MIT
License-File: LICENSE
Keywords: aquatic,fish,fishing,freshwater,ichthyology,marine,ocean,species
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

# fishfyi

Fish species and marine biology API client — [fishfyi.com](https://fishfyi.com)

## Install

```bash
pip install fishfyi
```

## Quick Start

```python
from fishfyi.api import FishFYI

with FishFYI() as api:
    results = api.search("salmon")
    print(results)
```

## License

MIT
