Installation
From PyPI
pip install laurus
From source
Building from source requires a Rust toolchain (1.75 or later) and Maturin.
# Install Maturin
pip install maturin
# Clone the repository
git clone https://github.com/mosuka/laurus.git
cd laurus/laurus-python
# Build and install in development mode
maturin develop
# Or build a release wheel
maturin build --release
pip install target/wheels/laurus-*.whl
Verify
import laurus
index = laurus.Index()
print(index) # Index()
Requirements
- Python 3.8 or later
- No runtime dependencies beyond the compiled native extension