lancedb 0.4.3
pip install lancedb==0.4.3
Released:
lancedb
Navigation
Verified details
These details have been verified by PyPIMaintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License ( Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR ...)
- Author: LanceDB Devs
- Tags data-format , data-science , machine-learning , arrow , data-analytics
- Requires: Python >=3.8
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Verified details
These details have been verified by PyPIMaintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License ( Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR ...)
- Author: LanceDB Devs
- Tags data-format , data-science , machine-learning , arrow , data-analytics
- Requires: Python >=3.8
Classifiers
- Development Status
- Environment
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Built Distribution
File details
Details for the file lancedb-0.4.3.tar.gz
.
File metadata
- Download URL: lancedb-0.4.3.tar.gz
- Upload date:
- Size: 74.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
26e07a99e29a9f5e72d639629a049cb1e79ffaaca9747d8cedd22d8c66324d74
|
|
MD5 |
63d06cdb80e240e3555ecd3dcd9de25e
|
|
BLAKE2b-256 |
ff59cfd132d7dc1383dd213a7849dbee2081776d67fefee03539b579209ed094
|
File details
Details for the file lancedb-0.4.3-py3-none-any.whl
.
File metadata
- Download URL: lancedb-0.4.3-py3-none-any.whl
- Upload date:
- Size: 84.0 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 |
938246e26449ada0a6a0aafe5b1e15c0528a446003d3cf6b0e358194cd85863f
|
|
MD5 |
7930932abc6817314dc512ea0871738a
|
|
BLAKE2b-256 |
2227c73974afd377bb65500282fc89f8eb0ea1d07cce07c19ca08f5105b749c7
|