Metadata-Version: 2.4
Name: planefyi
Version: 0.1.0
Summary: Aircraft models and specifications API client — planefyi.com
Project-URL: Homepage, https://planefyi.com
Project-URL: Documentation, https://planefyi.com/developers/
Project-URL: Repository, https://github.com/fyipedia/planefyi
Project-URL: Issues, https://github.com/fyipedia/planefyi/issues
Project-URL: Changelog, https://github.com/fyipedia/planefyi/releases
Author: FYIPedia
License-Expression: MIT
License-File: LICENSE
Keywords: airbus,aircraft,airplane,aviation,boeing,manufacturer,plane,specification
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

# planefyi

Aircraft models and specifications API client — [planefyi.com](https://planefyi.com)

## Install

```bash
pip install planefyi
```

## Quick Start

```python
from planefyi.api import PlaneFYI

with PlaneFYI() as api:
    results = api.search("747")
    print(results)
```

## License

MIT
