Metadata-Version: 2.4
Name: otterapi
Version: 0.0.4
Summary: A cute little companion that generates type-safe clients from OpenAPI documents.
Project-URL: Source, https://github.com/danplischke/otter
Author: Dan Plischke
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Utilities
Requires-Python: >=3.10
Requires-Dist: httpx>=0.28.1
Requires-Dist: openapi-pydantic>=0.5.1
Requires-Dist: pydantic-settings>=2.11.0
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: typer>=0.20.0
Requires-Dist: universal-pathlib>=0.3.4
Description-Content-Type: text/markdown

# 🦦 OtterAPI

> *A cute and intelligent OpenAPI client generator that dives deep into your OpenAPIs*

**OtterAPI** is a sleek Python library that transforms OpenAPI specifications into clean, type-safe client code.

## 🚀 Quick Start

```bash
# Generate from a pyproject.toml or any of the default config names (otter.yml, otter.yaml)
otter generate

# Generate from an otterapi config file
otter generate -c otter.yml
```

## 📝 Example Config

```yaml
documents:
  - source: https://petstore3.swagger.io/api/v3/openapi.json
    output: petstore_client

  - source: ./local-users-api.json
    output: users_client
```