Metadata-Version: 2.4
Name: pycronet
Version: 0.1.0
Summary: Python cffi bindings for Cronet
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: cffi>=1.15

# pycronet (cffi)

This package provides minimal Python bindings to Cronet using cffi.

## Build

The build expects a local Cronet build under `../build/dist` (relative to this
folder). You can override paths using environment variables:

- `CRONET_BUILD_DIR`: GN build directory (default: `../build`)
- `CRONET_DIST_DIR`: Dist directory containing `include/` and `lib/`
  (default: `../build/dist`)

Example:

```sh
python -m pip install .
```

## Runtime

The bindings expose the raw `ffi` and `lib` objects plus a small Engine wrapper.

```python
import pycronet
print(pycronet.engine_version())
```
