Metadata-Version: 2.4
Name: helix-db-embedded
Version: 0.2.0b2
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Rust
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Summary: Embedded HelixDB runtime and native graph algorithms for the HelixDB Python SDK
Keywords: helixdb,graph,vector,database,embedded
Author: HelixDB
License-Expression: Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/HelixDB/helix-proper
Project-URL: Repository, https://github.com/HelixDB/helix-proper

# helix-db-embedded

Native embedded runtime for the `helix-db` Python SDK.

Install both matching packages:

```sh
python -m pip install "helix-db==0.2.0b2" "helix-db-embedded==0.2.0b2"
```

Applications continue to use the public SDK:

```python
from helixdb import Client, Disk

client = Client.embedded(Disk("./data", "app"))
```

The SDK imports the native `helixdb_uniffi` module internally. Wheels are
published for macOS universal2 and manylinux x86_64/aarch64.

