Metadata-Version: 2.4
Name: chronow
Version: 0.2.0
Summary: Chronow deterministic temporal engine Python bindings (CLI bridge)
Author-email: Hunter Bown <hunter@chronow.dev>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Hmbown/chronow
Project-URL: Repository, https://github.com/Hmbown/chronow
Project-URL: Documentation, https://github.com/Hmbown/chronow/tree/main/docs
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# chronow

Python bindings for the Chronow temporal engine.

This package is a thin wrapper around the `chronow` CLI so the Python adapter stays byte-identical with the Rust and TypeScript adapters.

## Install

```bash
pip install chronow
```

You also need the `chronow` binary on your `$PATH` (or set `CHRONOW_BIN=/path/to/chronow`).

## Usage

```python
from chronow import evaluate

resp = evaluate({"op": "now", "zone": "America/Chicago"})
print(resp["value"]["zoned"])
```
