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.2.tar.gz
(96.2 kB
view details)
Built Distribution
lancedb-0.5.2-py3-none-any.whl
(106.9 kB
view details)
File details
Details for the file lancedb-0.5.2.tar.gz
.
File metadata
- Download URL: lancedb-0.5.2.tar.gz
- Upload date:
- Size: 96.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08ad82e822af1a9d1bba650476370f0f350cd4abd6c5e28c41c9415ab353c2ba |
|
MD5 | 97497a7509cd009f6d022f6b6fd74bd7 |
|
BLAKE2b-256 | 579319d86ba4ccd242d8a206670849b5b02a4adec656215d98c1d5917b55b3d1 |
File details
Details for the file lancedb-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: lancedb-0.5.2-py3-none-any.whl
- Upload date:
- Size: 106.9 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 | 0e519afb5896c960245f94b6429805e76048439860615fd8dbea9a2bc89e0569 |
|
MD5 | d21dc9ad9fe93fe57c68767ac580bf87 |
|
BLAKE2b-256 | 41e6bc5b08e47618815c6d57f377537d86975cf8038331e18dd774d562f3b9c9 |