This document outlines the process for contributing to LanceDB Python. For general contribution guidelines, see CONTRIBUTING.md.
The Python package is a wrapper around the Rust library, lancedb
. We use
pyo3 to create the bindings between Rust and Python.
src/
: Rust bindings source codepython/lancedb
: Python package source codepython/tests
: Unit tests
To set up your development environment, you will need to install the following:
- Python 3.9 or later
- Cargo (Rust's package manager). Use rustup to install.
- protoc (Protocol Buffers compiler)
Create a virtual environment to work in:
python -m venv venv
source venv/bin/activate
pip install maturin
It is highly recommended to install the pre-commit hooks to ensure that your code is formatted correctly and passes basic checks before committing:
make develop # this will install pre-commit itself
pre-commit install
Most common development commands can be run using the Makefile.
Build the package
make develop
Format:
make format
Run tests:
make test
make doctest
Run type checking:
make typecheck
To run a single test, you can use the pytest
command directly. Provide the path
to the test file, and optionally the test name after ::
.
# Single file: test_table.py
pytest -vv python/tests/test_table.py
# Single test: test_basic in test_table.py
pytest -vv python/tests/test_table.py::test_basic
To see all commands, run:
make help