Metadata-Version: 2.3
Name: actx0
Version: 0.1.0
Summary: Python client of actx0
Author: Adam
Author-email: Adam <hello@actx0.com>
Requires-Dist: httpx>=0.28.1
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# actx0

Python client for the actx0 API.

## Install

```bash
uv add actx0
```

## Usage

```python
from actx0 import knowledge

with knowledge(api_key="your-api-key") as client:
    client.list()
```

Or use the full client when you need multiple API areas:

```python
from actx0 import Actx0Client

with Actx0Client(api_key="your-api-key") as client:
    client.health()
    client.knowledge.list()
```

## Development

```bash
uv sync
```

## Publish

```bash
uv build
uv publish --token "$UV_PUBLISH_TOKEN"
```
