Metadata-Version: 2.4
Name: a3s-code
Version: 1.0.2
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Summary: A3S Code - Native Python bindings for the AI coding agent
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# A3S Code - Native Python Bindings

Native Python module for the A3S Code AI coding agent, built with PyO3.

```python
from a3s_code import Agent

agent = Agent(model="claude-sonnet-4-20250514", api_key="sk-ant-...", workspace="/project")
result = agent.send("What files handle auth?")
print(result.text)
```

## Installation

```bash
pip install a3s-code
```

## License

MIT

