Skip to main content

VaneDB for Python

VaneDB is an embeddable vector database backed by Rust. Store vectors and search for their nearest neighbors inside your Python process, without a database server. Supply your own embeddings; VaneDB does not generate them. It stores only (id, vector) pairs — no metadata or payload storage and no filtered search — so keep your own id-to-document mapping alongside it.

The vanedb package is the shipping Python implementation. C++ bindings are kept in the repository for reference and local testing, and are not published.

If you do not yet have embeddings, the getting started guide sets up a provider (local Ollama, sentence-transformers, or OpenAI) and searches text end to end.

Installation

Requires Python 3.11 or newer.

python -m pip install vanedb

Python lists work without additional dependencies. NumPy is optional; its arrays can also be used for vector and batch inputs.

Quick start

Use FlatIndex for exact search, or ApproxIndex for approximate search. Both return (id, distance) pairs, with the nearest results first.

from pathlib import Path
from tempfile import TemporaryDirectory

from vanedb import Metric, ApproxIndex, FlatIndex

ids = [101, 202]
vectors = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
query = [1.0, 0.0, 0.0]

# Exact cosine-distance search.
store = FlatIndex(3, Metric.COSINE)
store.add_batch(ids, vectors)
assert store.search(query, 1) == [(101, 0.0)]

# Approximate search; capacity is a reserve hint and the index can grow.
index = ApproxIndex(3, Metric.COSINE, capacity=100, seed=42)
index.add_batch(ids, vectors)
index.ef_search = 100
hits = index.search(query, 1)
assert hits == [(101, 0.0)]

# Save and reload the index without rebuilding it.
with TemporaryDirectory() as directory:
    path = Path(directory) / "index.bin"
    index.save(path)
    restored = ApproxIndex.load(path)
    assert restored.search(query, 1) == hits

Every path argument — ApproxIndex.save/load, DiskIndexBuilder.save and DiskIndex.open — takes a str or any os.PathLike, so a pathlib.Path needs no str() around it.

Supported metrics are Metric.L2 (squared Euclidean distance), Metric.COSINE, and Metric.DOT (negative dot product). For each metric, smaller distances rank first. Vectors must match the store or index dimension and contain finite values; IDs must be unique unsigned 64-bit integers.

Exceptions are chosen so a caller can branch on the type rather than parse the message. A missing id raises KeyError; validation errors, including negative or out-of-range integer sizes and seeds, raise ValueError; a corrupt file raises ValueError and an absent one FileNotFoundError, so "load it, or build it if absent" needs no message matching. Other I/O failures raise OSError. Arguments of the wrong type can raise TypeError.

ApproxIndex.search accepts a keyword-only ef_search that applies to that query alone, leaving the shared ef_search property untouched — searches release the GIL, so raising recall by assigning to the property is visible to concurrent threads. m, ef_construction and seed are readable on any ApproxIndex, including one from ApproxIndex.load, whose graph the caller did not build. get and get_vector are the same operation on every index type, so swapping FlatIndex for ApproxIndex does not mean renaming call sites.

ApproxIndex writes shared VNDB v2 graph files. Both engines preserve their vectors, links, IDs and deleted slots; further insertions may differ across engines. Legacy Rust graphs remain readable: load and save to a new path to migrate. Older readers cannot open VNDB v2. Keep originals and source vectors while verifying migration. During 0.x, APIs and persistence formats may change in a minor release. Existing format identifiers will not be reinterpreted; new encodings require new identifiers and readers for existing files are retained. Older readers need not accept future formats. Future insertions need not reproduce identical topology. DiskIndex continues to use shared VNDB v1 files. Disk construction buffers vectors in memory before saving, while the opened index uses a read-only memory mapping.

DiskIndexBuilder is the only way to create a file DiskIndex.open accepts:

from vanedb import DiskIndex, DiskIndexBuilder, Metric

builder = DiskIndexBuilder(3, Metric.L2)
builder.add(1, [1.0, 0.0, 0.0])
builder.add(2, [0.0, 1.0, 0.0])
builder.save("corpus.vndb")

index = DiskIndex.open("corpus.vndb")
print(len(index))                        # 2
print(index.search([0.9, 0.1, 0.0], 1))  # [(1, ...)]

DiskIndex has no constructor of its own — DiskIndex(...) raises TypeError.

For DiskIndex.open(path), keep the underlying file immutable from before the call until the last reference to the index is released. Prevent every process from writing or truncating that file, including through other paths or open handles. A read-only mapping does not prevent those changes; they can corrupt results or crash Python. To update the data, write a separate file and atomically replace the path where supported. Existing indexes keep the original mapping; open a new index to read the replacement.

The C++ Python package has different constructor keywords and returns separate id and distance arrays. Changing engines requires adapting those calls and checking feature availability, in addition to changing the import.

Project

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vanedb-0.1.1.tar.gz (167.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

vanedb-0.1.1-cp314-cp314-win_amd64.whl (267.4 kB view details)

Uploaded CPython 3.14Windows x86-64

vanedb-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (620.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

vanedb-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (585.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

vanedb-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

vanedb-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

vanedb-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (367.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

vanedb-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (376.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

vanedb-0.1.1-cp313-cp313-win_amd64.whl (266.4 kB view details)

Uploaded CPython 3.13Windows x86-64

vanedb-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (620.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

vanedb-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (584.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

vanedb-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

vanedb-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

vanedb-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (366.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

vanedb-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (375.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

vanedb-0.1.1-cp312-cp312-win_amd64.whl (267.4 kB view details)

Uploaded CPython 3.12Windows x86-64

vanedb-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

vanedb-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (584.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

vanedb-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

vanedb-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

vanedb-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (366.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

vanedb-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (375.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

vanedb-0.1.1-cp311-cp311-win_amd64.whl (270.6 kB view details)

Uploaded CPython 3.11Windows x86-64

vanedb-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (624.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

vanedb-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (589.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

vanedb-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

vanedb-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

vanedb-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (371.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

vanedb-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file vanedb-0.1.1.tar.gz.

File metadata

  • Download URL: vanedb-0.1.1.tar.gz
  • Upload date:
  • Size: 167.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vanedb-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a816b8c9ad9cf256e53212a36744cab7bf14ff41bfe7d68eabc6919a0f2d3ed6
MD5 a57f72019eb9eef54a831c08fa385ad5
BLAKE2b-256 090b9a8fdc8ac4d8ef10153c3565d34401d45f0aeb5f116f2b8a55c120977a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1.tar.gz:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: vanedb-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 267.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e570ec9f55ec4a8af2d72406db9da80fbf6330c16159b393fcaba4b4198298ed
MD5 ea8c717356f0c05cdd38babe8727bf16
BLAKE2b-256 49939416266041d0f848565851362015cbe34cde6bb9ec1b688b7dd1caa34121

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22a9bee1060b32b3f1d1943b6b7ee9fe983f1a40134c55f4264c9759dd5c17ed
MD5 90879f44e639d14987bb7db7926752e8
BLAKE2b-256 63999f8a3fcf6cd7636422ba6ffeefcfac9edd3654f239504a1f681b79a1fad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b246074a86e0c1ff36a263e9db6d35a24fd5b23f8402172e099cff2ff63c6b45
MD5 4d155e2350d5084bb8cd9c1e295b55f8
BLAKE2b-256 cab97b59c3201ef064bb7faf1135a4d343a1b244288df3d464f9bfa74559efd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a0d6e4f384046ed0deb3b232c89631c734e1bb042e885ea9133b47584639fcc
MD5 9adb53c73bd0ce27858d6abdf5486918
BLAKE2b-256 3986e7921744162b56085e5cc545fa62de8da38d4515286ff9dec9f8e4b4f1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c8b49f58d61df7da77d02a5414b944af94742db852f6e6d5e63ebb03f72845b
MD5 5e8d578a26c6b701eb296cfb4443f90c
BLAKE2b-256 3862f7077311d66f41678c1a3a16cbc5ff8153f5231adbc065c2343b8b04837a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c08d6418c206b247467ea02e0eeb6e367ea5b80c8138cf13931eb14a53913487
MD5 9e56d01f99081a971eba78305a35856d
BLAKE2b-256 d61a462adea0ff9e2356012632bcd523f2018cc9dbad8cec6dd36e3fffe21635

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a77440e01889ad3c9029b478d9cb685be9cf0fc4b1b62a1b051b45c6d5472380
MD5 27fb2e4fe14608a5cb0de0bf4e302a9b
BLAKE2b-256 abda9e4951cc4c2698ed8506e4bcde14d6c1376a46e1084c01c7fdd3488d0f6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: vanedb-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 266.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95086b4f5a8af78f3c576b8c1fb311661bfd38a67736f862e5047de832358f8d
MD5 8d9a68ec64b566c3c51b9da1a67a5fad
BLAKE2b-256 da85a31d61263115ac66b97a8f30837507f4cc88c0e0005b0ccd998b566f473a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fc62973cf0343075f00507ac165329e27caf2b734f12f0a2ceefd4da490b11c
MD5 19c9646996c84b682a66304e8568d752
BLAKE2b-256 3be84db69bb49367a05fbed4639414551893d220e1fdcbff63ae42fb6a93e526

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b55545646c974c426333701714df418aa20f9a0ef6ee49cf011b501b7174a081
MD5 68f73da87915d149a61d92ee8ae699c1
BLAKE2b-256 5d642d2e4153e293d16417b556bef681e333f5739973736d3e8ddc3b9443921f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 959449c421d1f8055f487b629f9a4072bd2626dd5df302ca8e70a909cc50ef01
MD5 f4c6292d960dbaa22d4b81c63dbb55d7
BLAKE2b-256 c058b8b954f8c8e5b063add1d2c7c21c2c0b096c5c919c62986503d7c4224c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 624326561d1003e19fb3117f45641563c0c1bf57a32dc5c77a1205a5d796816d
MD5 9144e7aca4505b0bc85eddf542753d00
BLAKE2b-256 331699c0f2f6faa649343c57d6c7ccc0c0b175e24b1befe8a9edd401f8950fbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d2aaf73556e862264041b1999724ae9a86ae0d22ffe3aed21dc3e5ffbd8a7a
MD5 a0e4deab5168bbaaffd4de0ce7a44012
BLAKE2b-256 566e247458bad63bda9834dab19b46e9b8246fd81938d23d7abd2ca7fa229251

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 192075f9e42b5fce6043e6cb291619a1a58e3506945321c694e73c9c0be9e670
MD5 0a4ee882bbd0f6e2f0d1337b417704dd
BLAKE2b-256 d9ce3409766477a63781390727c99482b39ce5c76481c4d752f4a5cc68e13de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: vanedb-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 267.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5bd346bbe6397e8b7d39dc70da38243f263db6af8c2e66d9be2dc2674ab556a0
MD5 a51cdd0a5e02ab320313b5ec6b6f5ee9
BLAKE2b-256 7556ede688ae32e12919e8e7b8c4acb8a8d989e0358201779e206872c59f2e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe6dcd8b3e33dd02b846362613fa533a576761bfc7d4e59c5063ad7c5e849fa1
MD5 6befc6a9a8986ab45e9d57afa290676d
BLAKE2b-256 4121ff25d03d406359991d80ac20f9a619264d681c83380926aa2bbb8feb7b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d6fa071ca9a6f431d80ec8adb470c6583ba9f2a5ed52d43b96b6262ba7848f2
MD5 4fd90b9e0ed0639648a948eb2d25ab39
BLAKE2b-256 16b07733a46b6d1d6a20bb50283ca010c4e91b296ff1523ab4981bb56a6b698b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec9db83ef6c9f710b499849369def2f59a8de6c285cfd3e6f9b68ae87e1d03d1
MD5 d33f00ec7130d95c7db6dc5951ba3120
BLAKE2b-256 084164364f44626fad56dd31d74064db282e32bf76f776709934f9aa8e08685c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fae69437e8424416125b2bf3c0c6d115f6f2cb3795c036fc5c8eee247744d4d
MD5 39506d9880f9db98d2f5367a4021643d
BLAKE2b-256 d3113a58c0d637fb5ad2b3e0c53c0a3f7352ce1e2d75a5831600e3c2932f06ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd26fd8b4be1df981e0d83d266ccf05e299001ea566dffe8fa18e5637c7d4371
MD5 8965edc43a4dad6dc3055ac15e07f419
BLAKE2b-256 cfb563690ea9fc1a7fc28688fad847a611265c72f7d5fe8f9056c15d189fbf16

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65e40608f90760babb1e91e49fb17723ecaccf23ee9cee2e57b02b704d21f317
MD5 816721836ee596abede710386ba6fd00
BLAKE2b-256 b164bb453a4edbf301962016d934d097911af599065f47228fd1f056328dcfd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: vanedb-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 270.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 436661c4b0a93b2b4bea7d4c75756e1f9c0eca2c453ef27cd71a96e6a8949ed1
MD5 cc2a6805b7ba5c131cd1624660e7a210
BLAKE2b-256 6751d049b6bdf4a43d2a74331eac60ff7ff5aaeb26e0676222ab9252653604c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d5d1105708ee42c6fd28e692b1e5661a51a7d5b289e4964ba95937183d15c00
MD5 f69eaaac0737ddab32352dfcb88ed491
BLAKE2b-256 e6da55736d18db90e9e9f21c77b381d868673c484379352d24aae8dddf8c2ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ad4d94a17b7d8b92e08da36a0f6e653632e9e669c18fff9c3ceff8b20076ad9
MD5 63add9eb5c879055d41b49967334adb1
BLAKE2b-256 601f1360e232bdef65a690bbd2f78a0789d823739d2fb266b4a6bb6514b40310

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c68ef1761ced4390c3258bb95f66cdad1502a17913fb2e7283cafd1f12b04392
MD5 b3ccf370f19409bd0da955818a135f77
BLAKE2b-256 304a11643ec261d0f565515993110e7582b9792b9b8513fbdae46f2584250526

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e57e3426f003869fb872d232ed5f703f00a30144eef8db52c7ada402b8c0a17e
MD5 9f77b09b2464676e983a8f301312e51d
BLAKE2b-256 9e5578c140821b3976585b7c78371cd51267b6292ca20d70746470f2ba248473

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 908e515759b052ad8ff67438c0eb7bc1123d89da9c2f1e98425ba0109ca8817b
MD5 02e3f26c94a126af6839f11015a0421b
BLAKE2b-256 0dc57c679017169caebbda7be15f37c819a3c59b1a0eb03cd13dc5e876b33358

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vanedb-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for vanedb-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e8e438e5621b49445f00aaae7caf5b3b67e93e6eeecec6ec97eda1d0f0af07c
MD5 a66fa92703221fe88fbe2a8ab8633a85
BLAKE2b-256 71cbf48462fd56f95905a537b0295acbd4ab8cc69a9f8dcd3faba685e41d3277

See more details on using hashes here.

Provenance

The following attestation bundles were made for vanedb-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-rust.yml on vanedb/vanedb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.1 This release

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page