Metadata-Version: 2.3
Name: trunks-python
Version: 1.2.12
Summary: Git repos backed by your own storage. Push to S3, R2, Tigris, MinIO, Postgres, SFTP, NFS, or local disk.
Author-email: Brain <brain@layerbrain.com>
License: MIT
Requires-Python: >=3.12
Requires-Dist: trunks==1.2.12
Description-Content-Type: text/markdown

# trunks-python

Python SDK package alias for Trunks.

```bash
pip install trunks-python
```

Import from `trunks`:

```python
from trunks import Trunk

with Trunk(name="my-app") as trunk:
    trunk.write("task.md", b"Fix auth\n")
    trunk.commit(message="agent output")
    trunk.push()
```
