This package provides a minimal `ctypes` wrapper over the `rust_widgets` C ABI.
```bash
cd examples/python
python -m pip install -e .
```
```python
from rust_widgets import RustWidgets
api = RustWidgets()
print(api.bindings_api_version())
print(api.python_binding_status())
```
```bash
python examples/python/demo_basic.py
python examples/python/demo_embedded_engine.py
```