Skip to main content

Blazing-fast vector DB with real-time similarity search and metadata filtering.

Project description

ZeusDB Vector Database

Meta      

What is ZeusDB Vector Database?

ZeusDB Vector Database is a high-performance, Rust-powered vector database designed for blazing-fast similarity search across high-dimensional data. It enables efficient approximate nearest neighbor (ANN) search, ideal for use cases like document retrieval, semantic search, recommendation systems, and AI-powered assistants.

ZeusDB leverages the HNSW (Hierarchical Navigable Small World) algorithm for speed and accuracy, with native Python bindings for easy integration into data science and machine learning workflows. Whether you're indexing millions of vectors or running low-latency queries in production, ZeusDB offers a lightweight, extensible foundation for scalable vector search.


Features

🔍 Approximate Nearest Neighbor (ANN) search with HNSW

🔥 High-performance Rust backend

🗂️ Metadata-aware filtering at query time

🐍 Simple and intuitive Python API


✅ Supported Distance Metrics

Metric Description
cosine Cosine distance (1 - Cosine Similiarity)

📦 Installation

You can install ZeusDB Vector Database with 'uv' or alternatively using 'pip'.

Recommended (with uv):

uv pip install zeusdb-vector-database

Alternatively (using pip):

pip install zeusdb-vector-database

✨ Usage

📘 create_index_hnsw Parameters

Parameter Type Default Description
dim int 1536 Dimensionality of the vectors to be indexed. Each vector must have this length. The default dim=1536 is chosen to match the output dimensionality of OpenAI’s text-embedding-ada-002 model.
space str "cosine" Distance metric used for similarity search. Options include "cosine". Additional metrics such as "l2", and "dot" will be added in future versions.
M int 16 Number of bi-directional connections created for each new node. Higher M improves recall but increases index size and build time.
ef_construction int 200 Size of the dynamic list used during index construction. Larger values increase indexing time and memory, but improve quality.
expected_size int 10000 Estimated number of elements to be inserted. Used for preallocating internal data structures. Not a hard limit.

🔥 Quick Start Example

# Import the vector database module
from zeusdb_vector_database import VectorDatabase

# Instantiate the VectorDatabase class
vdb = VectorDatabase()

# Initialize and set up the database resources
index = vdb.create_index_hnsw(dim = 8, space = "cosine", M = 16, ef_construction = 200, expected_size=5)

# Upload vector records
vectors = {
    "doc_001": ([0.1, 0.2, 0.3, 0.1, 0.4, 0.2, 0.6, 0.7], {"author": "Alice"}),
    "doc_002": ([0.9, 0.1, 0.4, 0.2, 0.8, 0.5, 0.3, 0.9], {"author": "Bob"}),
    "doc_003": ([0.11, 0.21, 0.31, 0.15, 0.41, 0.22, 0.61, 0.72], {"author": "Alice"}),
    "doc_004": ([0.85, 0.15, 0.42, 0.27, 0.83, 0.52, 0.33, 0.95], {"author": "Bob"}),
    "doc_005": ([0.12, 0.22, 0.33, 0.13, 0.45, 0.23, 0.65, 0.71], {"author": "Alice"}),
}

for doc_id, (vec, meta) in vectors.items():
    index.add_point(doc_id, vec, metadata=meta)

# Perform a similarity search and print the top 2 results
# Query Vector
query_vec = [0.1, 0.2, 0.3, 0.1, 0.4, 0.2, 0.6, 0.7]

# Query with no filter (all documents)
print("\n--- Querying without filter (all documents) ---")
results = index.query(vector=query_vec, filter=None, top_k=2)
for doc_id, score in results_all:
    print(f"{doc_id} (score={score:.4f})")

🧰 Additional functionality

Check the details of your HNSW index

print(index.info()) 

Output

HNSWIndex(dim=8, space=cosine, M=16, ef_construction=200, expected_size=5, vectors=5)

Add index level metadata

index.add_metadata({
  "creator": "John Smith",
  "version": "0.1",
  "created_at": "2024-01-28T11:35:55Z",
  "index_type": "HNSW",
  "embedding_model": "openai/text-embedding-ada-002",
  "dataset": "docs_corpus_v2",
  "environment": "production",
  "description": "Knowledge base index for customer support articles",
  "num_documents": "15000",
  "tags": "['support', 'docs', '2024']"
})

# View index level metadata by key
print(index.get_metadata("creator"))  

# View all index level metadata 
print(index.get_all_metadata())       

Output

John Smith
{'description': 'Knowledge base index for customer support articles', 'environment': 'production', 'embedding_model': 'openai/text-embedding-ada-002', 'creator': 'John Smith', 'tags': "['support', 'docs', '2024']", 'num_documents': '15000', 'version': '0.1', 'index_type': 'HNSW', 'dataset': 'docs_corpus_v2', 'created_at': '2024-01-28T11:35:55Z'}

List records in the index

print("\n--- Index Shows first 5 records ---")
print(index.list(number=5)) # Shows first 5 records

Output

[('doc_004', {'author': 'Bob'}), ('doc_003', {'author': 'Alice'}), ('doc_005', {'author': 'Alice'}), ('doc_002', {'author': 'Bob'}), ('doc_001', {'author': 'Alice'})]

Query with metadata filter (only Alice documents)

This pre-filters on the given metadata prior to conducting the similarity search.

print("\n--- Querying with filter: author = 'Alice' ---")
results = index.query(vector=query_vec, filter={"author": "Alice"}, top_k=5)
for doc_id, score in results:
    print(f"{doc_id} (score={score:.4f})")

Output

doc_001 (score=0.0000)
doc_003 (score=0.0010)
doc_005 (score=0.0011)

📄 License

This project is licensed under the Apache License 2.0.

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

zeusdb_vector_database-0.0.1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distributions

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

zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.0.1-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

zeusdb_vector_database-0.0.1-cp313-cp313-win32.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zeusdb_vector_database-0.0.1-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

zeusdb_vector_database-0.0.1-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zeusdb_vector_database-0.0.1-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

zeusdb_vector_database-0.0.1-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zeusdb_vector_database-0.0.1-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

zeusdb_vector_database-0.0.1-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file zeusdb_vector_database-0.0.1.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1.tar.gz
Algorithm Hash digest
SHA256 3f95b2b6d1bd96fc9e6e2a179915c9bd84288be23e205ab65badecc2286099c4
MD5 cbefecf964e6d3c658f2faad9ed7fb68
BLAKE2b-256 cfe441c02f61b544a2ab76ed519c9627e1f8054ab4d469f0dbf6be23926675ce

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e17b17ba9f43b0dc4ff9b096123923579e76c6226fa3068943a0909f508b3ec
MD5 0175fa69e23db4a09691666a489466c3
BLAKE2b-256 2be8961c777ef1f67e4fbe490b66d5fc65ed76a618de169e70980144644e4585

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65297c6acc6238b959cafae61ebea9e6779d527ab68cd3abf66bfab4e737e673
MD5 fe112667cb289d8db9deb5d632abfa90
BLAKE2b-256 da0c11aaafd73f31ea045050df38589dd406a87d2b821f4b481c26d620428f56

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee65528fb6abe792f1e2b4fe4e67ba610706b9701c7be1db2f590039b7cab5de
MD5 d5275dfb2202110689d0af7ed8420ef6
BLAKE2b-256 40bf7f25ab30873da8e0fc68fb67b40f708393df4b35425fdf067c14418514c5

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92c2b5146280b690d3758d9857cfda4774b928f47ba0bcde6fa80d83833636fe
MD5 358f986348a808556d7cec2133047ae3
BLAKE2b-256 dd455d62f2254e32a51b5abda82f0e3c5a8909c2b77bbf093337924566610bb2

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47aa8c551249c69468255817517307b53fc1d038eb47e394dd32e2a177b4832b
MD5 0ef059945d1b0ea8ea6427e2bba97fcc
BLAKE2b-256 f8d4406857908afcadf917f8b6bb40e0e501aec3b897fa4abd1ce1bdfc105ab7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31a814be1940fe0a27577087640ff5f2b4388195c0059570f75bcbd6f9d16447
MD5 d1df2503df34b33ad21af47722df0cbb
BLAKE2b-256 76be5f159ba747fa28ab1e44786beae371757031648ceced433fc099f03c1cb9

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ec7a12a25acc6f8006d3ea8f383f69472436c1c1b17a7f5c356a3cdd7d7b298
MD5 cb973c785ee9b9b7a54f0af19a3a3f30
BLAKE2b-256 48cd2159739ad91a83014e8476720efec207043427d5cc1e012dc30847d9d6a6

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1747bad0514531e429d5221ae4c1020781f2ff0967b1cb7a4e7516d4e6f156e
MD5 cf02ba3af7611c1e47c549bbaadb9078
BLAKE2b-256 4ef262d681bea32dfb94a456ebf1de79ddc5d0dfe36412e4b55befc20dfbf0fe

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 987f7214fa9db4826e2f093e8c43f5c9660d8e853b78ec162f4f1bfdf907e8bd
MD5 38406dc6b85d3722f8b68fdc921cd303
BLAKE2b-256 70395821a33d84865a28eef962c40e0b99aee6aa6da20c0e6a3afc909b8e3a17

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8dad91cb7a0bdcf61ccfe4d0a9a3dde9c87303419d01ead12eddfa489d1edbd0
MD5 360ffe0c87b065725e20adbdf0a50888
BLAKE2b-256 f70772f1d3a5361fab39c97986ca382414cdba3152b7e37537867a0193725b15

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a9796c3e32700c2bad2eef25e787468f324468c5874772f569b323901bc7bd4
MD5 e03e9617d4f82ca25d90d4da27cab74f
BLAKE2b-256 f08c0f38c1e5d36c57160792ff4507dade3b59d9148a3c87e2828b95160d608d

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95ef31f9fa4f45f764271b6f0ead2659281b39df57b839be869f652967dc8ec9
MD5 8c3d685162745639e78f27168d941dbf
BLAKE2b-256 86df2dff9ce3ac04bc9cc9977b21485311dbaba9396d414de2c45127bb474a2d

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78af1499e76c5b5cfb748525d1668fbeb9d8367e861a8dedf55dbdf025a0c595
MD5 655fd2c97a91de1dc7685636c6ac92f8
BLAKE2b-256 07694e2223fd0754d633b3a6c53065d6e51a499ff608620198a0a17801c02dd1

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c8a0bf714e9415ff559aa72f9508e90f5b3e4cb0fc694777ff72ee654afefac
MD5 38c8bf1571eb60dc67f28cf5e3b08081
BLAKE2b-256 d6cc5c9d62deef9ff045451ec53cca9410552a0d4369b26f0712d925e695b443

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a988bfc8a35b5d94ea20641f9dc50b9045921a36e7e15a2db49752673dd91bf
MD5 91251a1c425c552243686cb96cfa6d1f
BLAKE2b-256 d1a02c1b80d97e138953d4cfda267ea5bb5b06ee47315a709185c049220612dc

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84336ab2be0b7ca28ae0d6fafa3e0756346cdd9baad835c9289ae2b8dfebac27
MD5 56408a27bcd412424f8221454c65a24d
BLAKE2b-256 bbb4ee224e382598edd5d81de652bb5b994700dbee880b18e82045c72e6dfdca

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c261a97fc38500304f4e185a4cbeb37986d5d585581100bbc3ade9f7757d4b3
MD5 236e01ac991ae41a6d9222eccad9bfc2
BLAKE2b-256 aa80a8fd8ff2463f24a013cd25930aca0dd9f65dd6bb3540afda5c1d9dfa0389

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4010513cd074dad3af558cc94c926793b85a900bed2706e61832c6c2e5c631a7
MD5 00d010fd35624901857727bb336bde3b
BLAKE2b-256 e7ad053c0eddd4c1de9a5c21e8d928123e5f24335049bcc1f7519b6c34e6e5e5

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12f9b8de023df8fabada4003acfe7d2674df85e23d6796676e5d49d8b9737c6a
MD5 65cbd68d25f8055377ff49ed83ee3c53
BLAKE2b-256 eb8870a641c7b4af728603a65e8bdb54235a20fcfba9875d3b9b182b3275ded7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e7abfce8c583d72642a360164010facee2fa3ccdd69c8feeaa71c1e3c5c7bd8d
MD5 deb2b5ac6e58144767271c5e100d10d8
BLAKE2b-256 a588287546052e5ea24d9fdbf4a88096a5673dc3e21d5aa2e8efb831ebb9b353

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 366d5b1b6d8cb3c098b5aa68322f12ac525226e8392ef5ad982c7d403935f7e3
MD5 ac88525b0c1a03d7a1e34e54bd1c7d3e
BLAKE2b-256 a746e44dba1daa7a27c050dc4d3cc876b250eb7eacfdcfc796132e6ab54d5669

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f6637819757f007004047c1be5353f9cfa5b014e99a405920499af324da56ce
MD5 4e6ccfc4a8ea0d867cf1c177f22d4ee0
BLAKE2b-256 00f937cf73b7e8231ad5f1ba3090dc29691e1b265121db07a6cd40aeeef55d8e

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 577b6cb792ee2c24501abcbeb00c33d9b725b87d5eb28fedd97f47a1ecb8a766
MD5 a6b54751d0ac8e1834f5e89793ed3425
BLAKE2b-256 dd20e2e92aefae16ff0eb58dd2f702151c32d2be42847f905a252634a23e4dae

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eeb85d21ab485f5db65c604dd6fad31499c5181e245327ce5393880871dd01c7
MD5 f4ceadb19691af57e56bf83da2e4ad57
BLAKE2b-256 ac1c11f5a1951c012a7386ebebd2373d4240c2f600f968ddb15a57d63ab5755f

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ce8b96b693700054868142a42656365fea45268433575c99f8a15d0c5cc893
MD5 ee849e6c379daafbf1e4cf83d493fe4f
BLAKE2b-256 e9b41d8806bf444731de24326e82ece51face7ddb60dd3132f1fa0bba074510a

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb8788a1623b9a9a6f620e1e26fa40aac3f2a0318cc81173f541942a5fe0af7c
MD5 6106b226833fbc0889581aa5fd1eb6f7
BLAKE2b-256 abb7b64f9e8b2c9e87b50b8a3a805f484216d4c0d2cbb6b538054c341b9e8694

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bb74b3a7292c6ad886ca8b89ea3a45169b9cd3b2076d7c10555830d3da8d7a2
MD5 f9076ed8f4584bc31c7df012f3d3d34d
BLAKE2b-256 9c0eab917ea78a6da9a929cf49b4034bbada178a2cb494cdf97bee4bfb1fcdd7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b05560409b1a203dbd1ddcbd44892371bd2f45a177cf083a2c11d246174f979
MD5 38281d58ab4d0ed86dd8ab5e50f83ddb
BLAKE2b-256 b407363da954989f53cf38e973bb84a8a041047e2cb5c94f537c61832adfa3e5

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4913b393c3d5010b4208b4fa400ac5ed9189f6f185cfb09bb9df15c473b07274
MD5 bb320269a754deea7f7bc759ae364ecb
BLAKE2b-256 e1a761bd94d9caba89d7b1130d06808fe28f19179ade6762303cb36430dd071b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ddbc6fea2d50785db57bb22c48956c5f60bf673f03b6384e7f46f3f34bfffb9
MD5 0f6e030482c09baf39a37b96110940dd
BLAKE2b-256 8d097d90b38c4b13f43a75bd823eec5385b9b352d0402747d71b8987767a8a77

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5cad975221ca7ff7efba78dfa1c867329d9245953fd3a655943ea1e9d54cc36b
MD5 8dcceb20d2e3e8eb839310a5ef471690
BLAKE2b-256 299b69c39965f098dfc2e6303585cc2b9c656cb3e9000fe929dfa3ac66974e4b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 db7682e7c702e0293e582f3dff744bfc8803d09e816c4cb72d8bbdc1925ce29e
MD5 3b1be2f33ca6827b4e59aa068641fa18
BLAKE2b-256 51c0890d192d9a45ac3a64b4ac780371f99227f75825e8e16778cb836ceaf0b5

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b6883d285aa691c4ee30577d4c807c4835fb70df3eec958683c7aa69b7efc98
MD5 d2d21876c66fbbcd6c35c272cfd10dcf
BLAKE2b-256 6d7b9658119c37f3159d3d962b23fd3a9b3a41948da48b38e580d23487e5740d

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7c99edcafaa13d67956c838f1672e88c7c4efcbf5d3314285efdfcb64f7cba1
MD5 3bcf14d335da92fb1074838bf76bc002
BLAKE2b-256 af695a635b2c9784f1bf5eba8c9da4f0c386ce909495d3786f5e988ad6cb4bf9

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3561b47e4fc1a2078adcb237f747a947d88873c7c2591bf6c707abaf9c34246
MD5 0b91011033dbe47a1e7f310d44bb120b
BLAKE2b-256 54fc85ba417d62ea765511a8837e0566adb45b919131c7d681ec65f05b66ca2d

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cdf7fdcd5dd1bc1e17219f1a5d1ce78c797a0ca207614b32d3f392bb11a0966
MD5 4b84575ca00a58782eca72bf80f4e133
BLAKE2b-256 5ef47682e2d44f0de48154a5cf4915c6238c5398f1261609b5e3d0d46351daf3

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdf69dfc03a852e38e40ad5acdbe54d6e5e7f1a02d08b64b52478aae2913c843
MD5 36d05b836f2fe1fba09ab11f7ad1bb06
BLAKE2b-256 15c36969e8cdafb3c99282aa5bdb6101242a2db89b3b941c1d3f36ad01274d01

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96cfa188c458c94b0c58f54d265ff59105107ecfcf5202e4d91bc9cbd06e7b70
MD5 875bd259174948007be248510dcc4c13
BLAKE2b-256 12537c0f12695b03cc3b35cf282fe01001664afe123c5649fe6fe12ee62a856b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77c31c9deaf6b8384b4e191d585cd35c8f43f3e55063cf48ca8fa9d06fa67bef
MD5 e92e82c04df3850826f88c01a6876ebc
BLAKE2b-256 d1b162a52a8b29bc3ca5c17773140ce65b77a36ba1b1a94058fdcc92d53eae34

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c58e3f0d0fdadf89115ca5e641fec570e01fa65a12fe7ea2544a18c542298fe9
MD5 8a3af738e60f2205150e0efa68feec86
BLAKE2b-256 53d021178678c2e76a50b27087b3edf0b022ac927979e71b1da5300984acda9b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f132bcd17b239ae62aaaa0eefed09f9e39604e2e291e2d9cf139072bdac5b643
MD5 6ac1ca4286d8d5bfcec6e2cde7de7743
BLAKE2b-256 0b6cf33f28388bc8b7ac01e5bf320420f2d6c467ce8595153149186388832f05

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a26026ec9460a231980b6f36808235ca5905890b91a0921e8d18e6784b2e65be
MD5 3d210858f54944b901659a955a1accf1
BLAKE2b-256 3b4836734c9a5d83a38f3cf2163ca8381820d0c7d170ee283d0b03e1ca81d012

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e6e9923de50cba9c77f4b240b71ca27fef708fb208303b94f9851fbf5e61c8
MD5 aa1153a060eb93a9472ce2cd4312db3a
BLAKE2b-256 147d1e89fa35145ad36f068a857e9a093f603bf43a518348f502fefa5412ccdf

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a0b81171b63cc6705fb149f92f47664336fcc569bfbf0a26dfb13dae967d3c5
MD5 55e9c7867d7210c3b4af5a3a07a8b8da
BLAKE2b-256 121b1a6061aefc54001260a1e41a27a6e91a2bdad6ffc4407787a00e5df3849c

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e7c330d3ce7284217f2b287e624e2a626e374976a062e37cc44bc7a34c73917
MD5 d5393ca76222d2fd5cdfb08d211d2fb4
BLAKE2b-256 dfb5706e1b72ce23942775dfdaeccf87fb9362d8a7f2e7bf190276b4688d785b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bbd14424700fa7c62fbca864685a934b2f9939897ac249f9ea13d97b040a687c
MD5 3d7c3f02ca94ecc6c65ab2b678a034bf
BLAKE2b-256 63e008ad1f337ed948fcd3608e0a51285bb18f1e666fc3a2454c69a1d2e9d7f8

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b9c0cc7a78dcca5d1994f87b2454086177defc5f94771c8a57920e934fe1ee4
MD5 6eb852a347fb33ee99c1b8ce73c3e992
BLAKE2b-256 cfeb70a89584ee98813bf8d2bdc5d0514cf06b8f4519329c0dd13d533a40920e

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0dfb1148ceed385ac250d6da8ae246fc64df3bff62c1563a3d79b2d0e7b9c509
MD5 84bdf61d2dbc1165bc3236ed0a066fbd
BLAKE2b-256 377abc8a38ce92b75f0076a2eba7e177a783bf0e87f22697c2ca54642645d335

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 852231d4196f70e766afd21b730f00525106c79c94485f04b92382b6d095967c
MD5 4f67458bcbc160d1296fb31814f0753a
BLAKE2b-256 711a90dafdba0d218e2b9cac9020942c021ba6b5cf963e638622d1cf35d713eb

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68ef6c781eaf9d6a4b6f43b57fde3340f6e5308ccc02aedca11420f9609e98bb
MD5 5a416f42ccfbb2ece1b656abd940e651
BLAKE2b-256 b597b3fa04f90276e2822b58ac98681375895a3a396cc420931895196e7fb0db

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4fe69efef728c88427fce555b5ebbfadcd58041042f701110f3daa49ae9187e
MD5 e6450bb1e69e289ae149b1132a361fb7
BLAKE2b-256 0748d2ab936c1b671601a35415f2b2adff0d588e71fe383439ce19b07f142487

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bc8c066c57f4989d3993a7236ad9505c8e2b2bb1082077498495ed7e5902add
MD5 ea93cb250917197e5fba10cc27b41924
BLAKE2b-256 86f84879f23cfb26bdf4d9f957bfe470f316948e11e2117c565b1666ddcd28b0

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 caa1f34a7f2be5c97bc3874f9a0256be85947c056d65b2f9294431180c9fba84
MD5 af5a4f98167fbf9bab3a7d5adc667adf
BLAKE2b-256 3951261b1d8d7ae6683b5d2b43dc9a32486cb8a79d69a753c80a8c8ac5dbc35e

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa6ad0e65e84d2dddc1199c9c9f1af813c76be931fb08669430564d8d1746f8c
MD5 f57aa4fd6a0039a3a455f7a94e2719cd
BLAKE2b-256 a7a6b01774042f45a6f17f9758c574af8ccb464db03310516ec4fb8923b9bede

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38e11b35fe10fa66cd23fb3a52c8cb5745799c7f655c399b69464b48130366ab
MD5 18e019f8e273d8d9ac362231e7b19893
BLAKE2b-256 4759aa50e8f702c44a636a705c52aaaf4c245cdb5a1572bbc1bc6decf281dec7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4504b49459874c6ce80542693e9159393330970f07f394a1ffd3cb47ef6a4e2
MD5 79f6705e84c85ae7122261160e574571
BLAKE2b-256 4047905ca95fd7bde55557eb0bc3062b34f7442107beb6ae18e407fde30283e6

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde82a238615488f8f0c6eed1ff1de6e2458f8b007c665583d56372bf036b6c8
MD5 3fd9ed6cffbeedd7eb4d3d8d7d460f70
BLAKE2b-256 efcb133e816b469471ea9d41d617ca894d2da9e85a0e9a189e22c447daf28cb7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85774ad8fb7b2f091df8bb4c1d606299e39a4f40b53d50fe5ea1245760b930ee
MD5 542ec47ae8ba9c80646fbb1af397f9c0
BLAKE2b-256 3f8a01a02de36e9eebecbb19b557a5c3e64b0637782865f14165a2add917b812

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5aef65de1c4082e6f14555b0fcb0a7da1df754ca4d29bc6a5342357859092a4
MD5 e138c9aa59428a3f731cdd40e06776b9
BLAKE2b-256 88ff780611a77ceaeaa34bd48a6121699a4aedc23654a89da645d5893a9d2532

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cc98cf8ea715ce34d73b6281631c1d3bd2ed41fa552253775fb83c12f2c58d1f
MD5 320434dbfdd107a8edd62f3fe0e96617
BLAKE2b-256 bb30b88f23acaba8aa6b92a86a0381b14cb2e928896e9d2427dd070362900108

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47f7452c890f6f4a66293540938181efa20e52b3f4aaae5f6fafcbadaa3bee97
MD5 74447255dc19f7fd5a968b5f1b474dad
BLAKE2b-256 704955f1d67004d37f0d69b8c252dfb04f99a2258255e4140e7674aeec111ca5

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fb30a5925354bb6a4705bf8c4b5a8047644f368627d333469d4ca3c7b57c592
MD5 443a4fa4ccc4f4db43eb45eefa100c8b
BLAKE2b-256 53fba37837f4d648c9b1be735c2b6d6483716b9a9835baa6a7f93a0c8b952120

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 664184539e56114913bc74eb37eaaaf65dd9e3dc80828d6718be85784f950839
MD5 6574d340fdcd4b650396b693fecd2439
BLAKE2b-256 7f5cd509e59994c11f612bef0ab00da25aebf8e38ef313281b6f46601a0e2951

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7150d1173c29009dd0d4ae3135964b54893257687dc5aee9eb498a7c5749bd1e
MD5 8f1ed2db634c9b6a80ad80b5a1b8c69c
BLAKE2b-256 7bfbb258044e94eb15d0aa52ce5c24f3620dbb29c6efa5b58d810242ba8e6dc6

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a056915794b16949d5fde06215b95dc4dc46c194dc1a0cba6fd50c7bbc4d973c
MD5 2244905b7ec2a1d1c5e5a46bcdcb5da8
BLAKE2b-256 e96df76627c2605f740996566342a5219b09e3ab5b3ac7a3416a2abb16dafae7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ae759e7789195ad7a8ae9be7d177ed7aef4b238459026b661a09e22063bf09b
MD5 e869e939cf1397ce0d9ddba5196ed755
BLAKE2b-256 88fcb1af5288d984bdea2c54e65b69f8da91f746deeba95f5bab86283bc9ac50

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fadb9af5fd7bb246ad61a78d0f988a852c59b63a2e14a74b7e5defc619d93e3
MD5 15590e40808657b80c60ba6c3c4bcbd7
BLAKE2b-256 31e20ae1c2b12c8dd1397b832aded24deef870436d434bbc5d4514dfde357911

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e05ab82868cb7c6929249bc7274824268ce83e6bc547db6684427b36889393d
MD5 1e803ffe9f5342d7277a7c0bd5a02893
BLAKE2b-256 ea3264c6fe7d51f7b0baffd4365ae30b91c5b85ab921dcab79d811cfd9dfa24f

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aecccd5cce00061bd415f518e8a65d57038a22a0fb4a0ead9275842a4fed2c7a
MD5 5dd083df21a7dc8a5bb348aed02b65d1
BLAKE2b-256 fecb11735bae47c9fe1366e3e475fd5c880917ac0612fdd5969554349762c309

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e0fbc415a92c549c35a5c25eab7e0b3523418adc80f5a901a978fa1c92a31895
MD5 2b5da9e669ca568c3d6edb781c79729a
BLAKE2b-256 cde069b0e4a2cfe4c2ab2008e3463c5dc0275e28926e2c7a843afff46108de64

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f4129251f5e910f1e4100ee5c812b9c1c9ac72221c54d665db98c457f51624
MD5 5dc1f0794a4473bbf59d59a28b8ff4a2
BLAKE2b-256 072c7907703b8e1a70df6953961cce61a1b2a80edc9676b62d9719b526b644f0

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f681b2317ea727332f8dbe13129ba12ef3eaa19c4fca4e8669ddc6e1b5568453
MD5 f01a017b7bfab32bcce7f64c9a8937fe
BLAKE2b-256 a4fb6a63282cb3340345df159512586578013813e2fbd71eacb98cc0e5bb7a55

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b3dbaa6dbfb30b04d54162937a2ff8922a0cce9aaf937be60e49af69bc21c93
MD5 0f727a8ee60c30911d04f9ddac1143d0
BLAKE2b-256 0f1eea7336dc4d0ab940caaf14ad9a0adf8ae98f0433a15a1e91bdab714f8735

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cd01a507764d896aa9758fcd2e0a7ec09d4b74965000376c4de35a42a9d7e55d
MD5 858b2c9a0f7bd505e114bc7725d064d6
BLAKE2b-256 efd6afbf2002037702f242945da4d428651b4fae84f11234beb5da4ddb0f27f7

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cb3dc8052f93df868b6f6bbf9470388de47c3072075f9bfd1a7054a5d5604ae
MD5 19535f34f1dee4cdc95600ddcea6de50
BLAKE2b-256 fa98c4c21edc18f0ebb7f5f66b0f2fb5de43ce33d984b1242b7d5b0f2adad320

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4c574cb4bef9204c211dec3fcc58f37c4186f9c4f08c757577ddfb52ac4b233
MD5 6e02eb0c618062fa006fb6f758046269
BLAKE2b-256 9cb735703cc728cd7b051c9882ab8f68b939502b6ffa1a196ccc6a1845d3e6e9

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afad660a4ecfecad5085dfae23f5bc3e8e5599d270b448a0814771580b4d5a6f
MD5 da4f002dc8c08e9e8f442e9f4e348dbf
BLAKE2b-256 90488598c19f31f0be34382a4fca113322d4163ed230018a985bf86b9fd699c2

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc76f132710d9b1f512c77b0a5075445bdc75932a28dc4da85553357f4e44c41
MD5 7b2c4c315ed04d37d4df92cbf756255d
BLAKE2b-256 7724b48b4fa45ac1e86950ba68fa693a563279bd992f80c0fea2ce0388898d97

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49a8ecb8b49ddfe3fbc9c987159804fe49a8a1eed1b6127ff95fd0b766e309b5
MD5 02dc096835328d34dc872c2f88cfb91e
BLAKE2b-256 efda7a2ee73cea33fe726852a71b03432000bd6db96d83dbdc9665805362a95c

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26bbbf42188700474314198e6267b9885edffde34421f22485d42103ae5e2534
MD5 c0d52d54fbcc1e1a67e7e9a4829e7e05
BLAKE2b-256 3b022b8836522fa211cef2bd5bef5c1bada33d70444d7277cefc7dd25c715847

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c95b2221afc3bac7f5d0eb807e3aa98cfd6fba10075f2e4b30b350224fffe06
MD5 b0f9ceb1aed685cad2ae39f289d1e94e
BLAKE2b-256 d603d41321cf0f96c9706aec84549f2b789200bfc1a4b1c3329eaaf6655b5995

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf605b1471e0cacb2b11475f106d9be550bca1c04dcfb59558f87b81d5b8808f
MD5 7d39978dec4e524111fe310761c6c3b0
BLAKE2b-256 776fb9c00a819cc5ece828a7348ec0b83d0ae82e67f79c334d53eaddb8758ccb

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26e9b26bf73edc0664402bf11b8ba432e2b8d3660191a709412bc648756f018b
MD5 4f37d2474f2980f77c344515062b7076
BLAKE2b-256 40a4fe7fb7994903e9efab5584ed08bb9057c0ae28b3b0bb9c19f30b3dc7bd0e

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 835f21cc225791d7c0b9606b1145ec7c9162270b723e688b71c77f1d811d3e59
MD5 c748217501da28f06b80ff66fdf18a2a
BLAKE2b-256 2c74365ada07680e9bf64d813797367134c1fb055aaec193fbc2e67b6f1582c8

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f4ebb8eaa6aea3ca732dd234d34b1e15735965393aa4c563fc047fae6a6f6d4
MD5 ce401036451a1fe51efc38f8f5788fed
BLAKE2b-256 f62dbc0f25d8403316a6b46aafb3d7a109ab57fbd508574f47e9e6942a8c336b

See more details on using hashes here.

File details

Details for the file zeusdb_vector_database-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2201cdc2c12584636a25b24d5ca9db49e3e6b355ad23cdd1996055c3bb750b72
MD5 1de5f7c48574d7979f74811c78c9febe
BLAKE2b-256 9d1b461b93544bd20394ed4099d571877c28f7da588f8e6e196344fc8e078a58

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page