lancedb
Project description
LanceDB
A Python library for LanceDB.
Installation
pip install lancedb
Usage
Basic Example
import lancedb
db = lancedb.connect('<PATH_TO_LANCEDB_DATASET>')
table = db.open_table('my_table')
results = table.search([0.1, 0.3]).limit(20).to_list()
print(results)
Development
Create a virtual environment and activate it:
python -m venv venv
. ./venv/bin/activate
Install the necessary packages:
python -m pip install .
To run the unit tests:
pytest
To run linter and automatically fix all errors:
ruff format python
ruff --fix python
If any packages are missing, install them with:
pip install <PACKAGE_NAME>
For Windows users, there may be errors when installing packages, so these commands may be helpful:
Activate the virtual environment:
. .\venv\Scripts\activate
You may need to run the installs separately:
pip install -e .[tests]
pip install -e .[dev]
tantivy
requires rust
to be installed, so install it with conda
, as it doesn't support windows installation:
pip install wheel
pip install cargo
conda install rust
pip install tantivy
To run the unit tests:
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lancedb-0.5.0.tar.gz
(77.8 kB
view details)
Built Distribution
lancedb-0.5.0-py3-none-any.whl
(87.4 kB
view details)
File details
Details for the file lancedb-0.5.0.tar.gz
.
File metadata
- Download URL: lancedb-0.5.0.tar.gz
- Upload date:
- Size: 77.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d2a22437ee9b29ad95e3bc38e52aae984d38776dd27475a15c2dc499988993d |
|
MD5 | ded8780a6f224e295cd7fd78312b3648 |
|
BLAKE2b-256 | 7699b024d9770b8b2dade900d5b3f753926e31c2574708ca0047b7d2dbdf782d |
File details
Details for the file lancedb-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: lancedb-0.5.0-py3-none-any.whl
- Upload date:
- Size: 87.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c2431d7639386d7ad94507852d212b459fb30c729d47cfa11a9c69354582ba9 |
|
MD5 | 3ff4784873c49026ffb3fc5d3fc09611 |
|
BLAKE2b-256 | fe4e756ca5d1c5b33213794a2af2f759b5165602e17bff862071a137f02a2966 |