Metadata-Version: 2.4
Name: loomb-private-only-test
Version: 0.2.0a2026051901
Summary: Python SDK sample backed by a Rust core through PyO3.
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Private Only Python SDK

Python package wrapping the repository's Rust core library with PyO3.

```python
from private_only_sdk import add, get_sdk_version, hello_from_rust

hello_from_rust("SDK")
add(2, 3)
get_sdk_version()
```

