Metadata-Version: 2.4
Name: zene
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Summary: Python bindings for the Zene autonomous coding engine
Keywords: ai,agent,coding,rust,pyo3
Author-email: Your Name <your.email@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Zene Python SDK

Python bindings for the [Zene](https://github.com/lipish/zene) autonomous coding engine, powered by Rust and PyO3.

## Installation

```bash
cd python/zene
maturin develop
```

## Usage

```python
import zene

client = zene.ZeneClient(
    planner_provider="deepseek",
    planner_model="deepseek-chat",
    planner_api_key="your-key"
)

client.init(work_dir="./workspace")
events = client.run("Create a hello world script", session_id="test")

for event in events:
    print(event)
```

