Metadata-Version: 2.4
Name: primitivebox
Version: 1.0.0
Summary: Python SDK for PrimitiveBox — checkpointed sandbox runtime for AI agents
Project-URL: Homepage, https://github.com/JadeSnow7/primitiveBox
Project-URL: Repository, https://github.com/JadeSnow7/primitiveBox
Project-URL: Issues, https://github.com/JadeSnow7/primitiveBox/issues
License-Expression: Apache-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: tinycss2>=1.2.0
Provides-Extra: async
Requires-Dist: aiohttp>=3.9; extra == 'async'
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-asyncio; extra == 'dev'
Description-Content-Type: text/markdown

# PrimitiveBox Python SDK

Python client library for PrimitiveBox, the checkpointed sandbox runtime for AI
agents.

## Install

```bash
pip install primitivebox
```

For local development:

```bash
pip install -e ".[dev]"
```

## Example

```python
from primitivebox import PrimitiveBoxClient

client = PrimitiveBoxClient("http://localhost:8080", sandbox_id="sb-12345678")
print(client.health())
print(client.fs.read("README.md"))
```
