Metadata-Version: 2.4
Name: cathode
Version: 0.1.0
Summary: Cathode Cloud SDK & CLI
Project-URL: Homepage, https://github.com/cathode-cloud/cathode-sdk
Project-URL: Repository, https://github.com/cathode-cloud/cathode-sdk
Author: Cathode Cloud
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
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
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: httpx>=0.27
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Description-Content-Type: text/markdown

# cathode-sdk

Python SDK & CLI for [Cathode Cloud](https://cathode.cloud).

## Install

```bash
pip install cathode
```

## SDK Usage

```python
from cathode import CathodeClient

with CathodeClient(api_key="your-api-key") as client:
    response = client.get("/v1/me")
    print(response)
```

## CLI Usage

```bash
export CATHODE_API_KEY="your-api-key"

cathode whoami
```

## Development

```bash
pip install -e ".[dev]"
pytest
ruff check .
```

## License

MIT
