Metadata-Version: 2.4
Name: lukuid-sdk
Version: 1.0.0
Summary: Python .luku archive support for the LukuID SDK
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/lukuid/sdk
Project-URL: Repository, https://github.com/lukuid/sdk
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# LukuID SDK for Python

Python helpers for opening, exporting, and verifying `.luku` forensic evidence archives.

## Install

```bash
python -m pip install lukuid-sdk
```

Requires Python 3.11 or newer.

## Quick start

```python
from lukuid_sdk import LukuFile

result = LukuFile.parse("identity.luku")
print(result.verified)
```

For fuller documentation, see [docs/python.md](../../docs/python.md).
