Python binding for pgvecto.rs
Project description
Python bindings for pgvecto.rs
Usage
Install from PyPI:
pip install pgvecto_rs
See the usage of SDK
Or use it as an extension of postgres clients:
SDK
Our SDK is designed to use the pgvecto.rs out-of-box. You can exploit the power of pgvecto.rs to do similarity search or retrieve with filters, without writing any SQL code.
Install dependencies:
pip install "pgvecto_rs[sdk]"
A minimal example:
from pgvecto_rs.sdk import PGVectoRs, Record
# Create a client
client = PGVectoRs(
db_url="postgresql+psycopg://postgres:mysecretpassword@localhost:5432/postgres",
table_name="example",
dimension=3,
)
try:
# Add some records
client.add_records(
[
Record.from_text("hello 1", [1, 2, 3]),
Record.from_text("hello 2", [1, 2, 4]),
]
)
# Search with default operator (sqrt_euclid).
# The results is sorted by distance
for rec, dis in client.search([1, 2, 5]):
print(rec.text)
print(dis)
finally:
# Clean up (i.e. drop the table)
client.drop()
Output:
hello 2
1.0
hello 1
4.0
See examples/sdk_example.py and tests/test_sdk.py for more examples.
SQLAlchemy
Install dependencies:
pip install "pgvecto_rs[sqlalchemy]"
Then write your code. See examples/sqlalchemy_example.py and tests/test_sqlalchemy.py for example.
All the operators include:
squared_euclidean_distance
negative_dot_product_distance
negative_cosine_distance
psycopg3
Install dependencies:
pip install "pgvecto_rs[psycopg3]"
Then write your code. See examples/psycopg_example.py and tests/test_psycopg.py for example.
Known issue:
- Can not check the length of an vector when inserting it into a table. See: #96.
Development
This package is managed by PDM.
Set up things:
pdm venv create
pdm use # select the venv inside the project path
pdm sync
Run lint:
pdm run format
pdm run fix
pdm run check
Run test in current environment:
pdm run test
Test
Tox is used to test the package locally.
Run test in all environment:
tox run
Project details
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 pgvecto_rs-0.1.4.tar.gz
.
File metadata
- Download URL: pgvecto_rs-0.1.4.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.10.3 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 078b96cff1f3d417169ad46cacef7fc4d644978bbd6725a5c24c0675de5030ab |
|
MD5 | ef25f11a95e1480403e2e336881a647a |
|
BLAKE2b-256 | cb361d3385dced134844bee8b3b4780c91cd9fbfb853168d0ed0e347a8d1ec45 |
File details
Details for the file pgvecto_rs-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: pgvecto_rs-0.1.4-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.10.3 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b08a9e612f0cd65d1cc6e17a35b9bb5956187e0e3981bf6e997ff9e615c6116 |
|
MD5 | 52ed61ec0cf62067186ced01bb0ca321 |
|
BLAKE2b-256 | e93f77916c70144e1104524420cea93f04ee24f3dbdeaa0bc71dc998be94af44 |