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:
black .
isort .
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.3.3.tar.gz
(65.1 kB
view details)
Built Distribution
lancedb-0.3.3-py3-none-any.whl
(72.0 kB
view details)
File details
Details for the file lancedb-0.3.3.tar.gz
.
File metadata
- Download URL: lancedb-0.3.3.tar.gz
- Upload date:
- Size: 65.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d8a9c2b107154ee57f6f75957d215719a204cd64c9efbe7095eaf41b43c2a29 |
|
MD5 | 8537b2a292ef316564f034a71b41355d |
|
BLAKE2b-256 | cbbbbf9ed6729aa5a96c4ff1d45597901a5c13291e5ad66bf094ebcb7dfb9166 |
File details
Details for the file lancedb-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: lancedb-0.3.3-py3-none-any.whl
- Upload date:
- Size: 72.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67ccea22a6cb39c688041f7469be778a2e64b141db80866f6f0dec25a3122aff |
|
MD5 | 2397b6297f9783704e48c5964b6ab176 |
|
BLAKE2b-256 | a7c6e98b5195ed45bdb7a747993e03824b2be530b4d21f2546155ccf450302db |