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:
    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.2.tar.gz (19.2 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.2-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.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.2-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.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.2-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.2-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.2-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.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.2-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.2-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.2-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

zeusdb_vector_database-0.0.2-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.0.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.2-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.2-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.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.0.2-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.2-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

zeusdb_vector_database-0.0.2-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.2-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.2-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.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.0.2-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.2-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

zeusdb_vector_database-0.0.2-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.0.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.2-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.2-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.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.0.2-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.2-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

zeusdb_vector_database-0.0.2-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.0.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.0.2-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.2-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.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.2-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.2.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2.tar.gz
Algorithm Hash digest
SHA256 33a2b807fe05f1ea7a2742787cfd752aaa5e257f49533e8e37a4b5aa97d4e5e9
MD5 1c95eb0983b1898d66db9ce2a19fa1a7
BLAKE2b-256 c16b4a0aa5c58b528ad530f69e4b82a6356b349d6ff38fff208ca9f4043dbdba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4be8440e2d4cf85b83eb9eb4dd0df12e8da66cdbf1c66db2d0f3e82593bd6cc2
MD5 1ac23900bda59830b1e6cbe0d7a57bb4
BLAKE2b-256 0fda1cd4afd52ddc721793549b4a68110508988cdc018eb98e5999db716582b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b87fde7ba9a5f5c47e6b9118d654809974bbc5519c072cdcedb407d8ea87b8e7
MD5 a35aa1f92418e2ba740fae616903ca53
BLAKE2b-256 a14ab56b38b035b8191c47fddda14dae6ebc3d0f19d1ae3ea91a80551d0e2d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dad7cf0f7049459de0828a10e0014f6cc0e76ea2be2092c756efc25ac8b82b3
MD5 8d3b81deecc72601ab14a6a49c827987
BLAKE2b-256 9edea99a84339c43a8f1592bb2665506e93dd1a335c1f96573380d66d5ca389b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e72edb729691e07924361b51c9f91f71a8d35916a3a43101316d730e606c22b
MD5 195737f73929b084cacbbd7b541ff853
BLAKE2b-256 a86d4cda51f7b4908e29f4f1c8bb75b3411d06a0a927d48e601a7cc79fc51e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c032c7264b774405cdb55c04097c54b6f664a6bbaf4c64f574928a3e54b8faeb
MD5 53b6ec495c723c76c71370d755b5da16
BLAKE2b-256 28fb489026fe4e98edd24f0a040912ecacb9eebb46f67ee24a1f0a73d7f356bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a9164246fedb5c16e26c0bcf4b7d27638e1f9cd7c0b80904ee700807946f5d0
MD5 9d7aea91f78bd88520f859c35b61a8cd
BLAKE2b-256 5f3e85b59be7be5f346eed52420df0baba351fe4192e60888c0a5c1f69d0d74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 980d100cd77d40690644c5e20b0a5b3688713e8e91cb8ca38f17eadfa5d04295
MD5 4e10d4f0d507f701261874f25ae585c3
BLAKE2b-256 66265257c229853f82987015365a86ea82c0b05bd4d609155f8462e2163b5a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaabffd3322a12502491b7af6f2aaa02ac6e0339c95177463ba81030f586d339
MD5 9dd148feb5c22a25b90b7892e5c5ee90
BLAKE2b-256 8cd2f02bb8b6b222066711e6ca33926b1585f710f762528547d4690dd61ea68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dd1b03b485357d672b4027ac78545c758da1e1a128a5665b7420b2ba24c42ca
MD5 6ff9aa348a06344e170c5e3bda075a58
BLAKE2b-256 35b4e0b5e209371c26ab6389f8a1888299cfad608459962b206221ced48d81d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ff96941b5ba74644707855ff6dd30f52c6f002227a3aedf7eeca31bd82d1e3f
MD5 2192abd928e119a52324edcce3125359
BLAKE2b-256 dfe8511a256641a6441e0cdd1bb26c3b9fc4ed77f50b8180ce12c93311a28ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7344778c5baf955671922ab1f241828fa54924a0828dd8ad089956d31c80f6f
MD5 833daa439022f41a0340120f123c1968
BLAKE2b-256 e130097732d4954c7c9928207dd77318f1f32957b8955a717b101b18165333d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08c286f6675b1237da1e2769c7dbc5967ee51700a2840ae6bccea1ae3ec64c3c
MD5 5af7bd367f7dd86278180c4198f78fab
BLAKE2b-256 ba8e783f20ea27c748e725f97ed73562072c34f2376dc940a87c2671edb88041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27083ad91a51a6152387882f2213326162845f2cadc69044e53d2c34efc8f92c
MD5 6c5414b4fc28ca42840751a0c5fa0cfe
BLAKE2b-256 092b1ff89e65ed0cc156d3fda2921b4e0eda8b4c4bf1deebfc183cee2b1cbd86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc75699329499ef7b135cbfee0117ace359f160168325f2c554cfb7674ddc0aa
MD5 8df449a90de7b4405312b0175938fff1
BLAKE2b-256 d531967767ef9872ad21a0070bb56bfd6b548539231b307b0446357b1d2538ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39cf6f61f2d5a0f573f0bbe819d9775e05dc4bed2a360403b91cd8782676aad5
MD5 cd6cb1f6bf6657e9e2259433d8afd37e
BLAKE2b-256 361b7e05a912b4407059fd9953f35830995f52fd0e24a5444eac73e00e71d364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 369d16570cdd491406f2b32ddcd33223855966d1848767e011417fb3d9d62919
MD5 abf7c374235126a78f9c00168fb79e8d
BLAKE2b-256 d6af09f115425f095010323b798852bdc484638fbe2ee986bc671a0543657473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5672806a207b58ada48e9cba63e46382a955fe3c39684166fce919eecf6d5b6
MD5 bb80259227780179c8d85e5d7e18cc0c
BLAKE2b-256 e30b65d1dd876bc29d657f54282d843d8071c794db36ca8189a01bd5dce2ae6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffd1aa96a685ed1262ad42f9fded322f9a5900b6b5cf5a84206b052ce4df7656
MD5 e6d3afef7cee9d51c8fdaa407b71b686
BLAKE2b-256 e085f9301718cfbd657d9b704e9482d2ccca719ebd3ff7a359bf58e6c7139fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c0eeb7d8212f269391125acd2bfd16bdbce9917ae2237dfd526a8b526c908c2
MD5 39f84799135e42e8521900d8cfb12264
BLAKE2b-256 9f628dd9e6fe61f7ff19a431de06c5564c99c6b786c306da62d0afbe9b00ed98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7e6a13521fcb5c21b2e18c7de548079eae43378f75707ab66cb5f624bbe84226
MD5 3bf50ab382d61111d65d0628437c9bb0
BLAKE2b-256 6e8ff358394e23db317163544f57921c115d738dfe002c58219f515bc8d1e65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 003d4e9b5c3d5a4cf2ef0bd0f63373bbb906e22e8183f5fb872dc23d189fa18a
MD5 78e98ba06909ecdd7ed67c526a6d604b
BLAKE2b-256 d140e54377ac650cc3eebd5544af4e8aadab591d672b7b58fa1efca47f67125e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 79b960375c8ed3bae7a3e0a3e98a0cf1161d1c044856d052ee6a63ffb7418c98
MD5 c56a2811fa2eeca158468721b81f2c3c
BLAKE2b-256 499a25155cb6ab861ed3b4d31aada29f9905fcaedc92ab4a7231890c1a5db7fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 512981fd0b2b9357916d43c503741fd45c948cfc0e162f3608e44b8c59f1b775
MD5 6c520f93fc123c2b2d9828ed81aa8796
BLAKE2b-256 6edd4ad984ef9c01ddeb768c5d676d3f380ed00cd5f9d564e6aaec7e2d27a8d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75307cd227fe64626f3ea9d48cd52f23cb6857502d650e401e86b3b84a7ecb92
MD5 1a85abf317fc1f23e9d5485bd61b08db
BLAKE2b-256 a827ba07341cbd5e15178f6cd35fb4086f9a5dd58fa571387c784706db90ca30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84713f28c9a66d5afa1e52dd7c2f051fe8e91140071c816282c7a9d9862d5e3b
MD5 fa3914e1545719fe124e4a6acfbe73e7
BLAKE2b-256 538ea7b4e5353c710f441a3e9ae0bf229100653cf1eb90d17c4a90954d4b521f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63505cff9c9d201db0b54ddea3b03dcbe2750612cdf85a28f5c4574c53c623ea
MD5 71b92277b07f9131cb2ef2fddc2cb4eb
BLAKE2b-256 ce0e9394c8013469a83a985389fd06e2d79be2be446a8dd2e39ff2b45d3cb455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5bc76c8b2a21bf2124939c31c83b11ce241cd7b599c4d3f6fa8be6910b7acb8
MD5 26186b4e8751b587ac46bd1a47e6dd1e
BLAKE2b-256 cc47cbe924a0c8741f219d0f53ab7fcc262dd75a6d099c1790a14a9e85ef6fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ff533675fbeeb385d4afdf1e6f6ee7b8bb46196e220b417c962dc41136cd7e7
MD5 c518f7aa166ee8509c479f8d5dfe023f
BLAKE2b-256 ea52f5762c1b7107177b61854fb2d5f221f021e9e1a84d0524578a721a274fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba2c76b74425a236eddca75be09ee578d0326b6f7186d994804b7f85efc444d6
MD5 ac25fecfd4900799384fdb0a7199ac25
BLAKE2b-256 82d5df5162fb26beba197cccde2eeb625458849d30b76bbe7dc43781c3ebe63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ad6348ed7473a86ecfc3e1495ec697c3df69087fd2730feb04531282136d222
MD5 95b1e38f6ccd5c7eb84c158ab59aceda
BLAKE2b-256 801dbe64a7cb55b652eae6dc23b0cc29245d2ca6b3c1495609c30ee1b0fc60b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a7af2f7eed0a85cb394fbf1f26a12582a4868d2efa3dcf7992f8f738319b298d
MD5 82ca3885d89c1a96141f7d4850ed41ad
BLAKE2b-256 3ed5769c34ff248fd8ddbb4e5ea6d6d2819e212861769e86f35538ba104ddd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dd6e9d063bac1520c7a8e9095361e54ddd406986b6287c5637fa643f096742c7
MD5 bfd4e751940752cd20880406b8662178
BLAKE2b-256 407b508812c87983cb39d2f41694f9ae05f25f374f1a790206d5961c3f5bace5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8fd1c3c120a70aa0180ad66d0d8e0efe5d67f6eece5ddbcf2e9a8f816d1d5b5
MD5 a1e33bca8356c1a7a505a8d280342255
BLAKE2b-256 06c01c4ccb9736d88ef302b3541c3b1a3c66b98d014fdcd124497dd67343e1c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67ac051a3355ead5efd1298237bd67f1852f5b8a2d8d1a8a45fae9cbeb98e2db
MD5 63d6cf7d42ba0a1557d056306e24198a
BLAKE2b-256 f56801e54ba5e6e34dfb3bbce570541c973de50255d8fd9b90a5ff85385f4628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3e592b946a9638365dff367869134fa84502240e40518e03bc5557969c0df65
MD5 676cd6f436ad2e48df8f1408cb3d0cb7
BLAKE2b-256 00849c9a4a0fa7520c26641f98920091d089e331dba55abe2315a736765a6dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7ad25a6b50bab713a81f16d39ea1a94579553450041617d021d2cb46fa18295
MD5 430d1adb384fdc811e682bd1da567889
BLAKE2b-256 fdc779b6e4db56d4bab6be0a3d0992e917477e58e315c98d9478ed6fc585c8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41ec79c0e68b75e9962032fe12739a2a788f4e993dd0210a3c30e7892e058878
MD5 3112c4018f1ad02bf6779820fdbeb93f
BLAKE2b-256 77065039cdba5f3d28e9452bb273f58fad91e17f15ffb5621d2a1c34d65ddc62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0143b81a127fff05d6f196b9963a83bde93d69274787dd14eb3829439be6935
MD5 24caa6e71938a598da1e00b8a45cf9e6
BLAKE2b-256 0e27aeab67c354ad5e00abb561c6c2e052ef2664f7d57b85ef896f83ec6a01d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 540b76efb026538735f983b8a021bfdc4e91d982b2c2587fcbe68082f1a9a1fc
MD5 95467a97cde1e30a3b10281e64f9cb5d
BLAKE2b-256 e649df8dc727111e24fab8ef8e03c79dae924d66089c487677bab6ee11eb7155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45978fa0d969da3918edac60dfde708537ebaf872bb37f9269b7bc4cc90629b0
MD5 2e9a77092b118d88e326b508acb41d06
BLAKE2b-256 a3e4a71812142f26369cbfaaadc9d39d36a62f0fea13f97a4b1110a6447cd04f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aef301c40e97820a668be1e8972e5e0a7f20827b4297d7cebab3ae754c85cbde
MD5 24c35fffc474e09f239de26605f494e5
BLAKE2b-256 0af624ecae407f96bf9ab7d786a254be3256face5dd293eac66c5fcc84ad7974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5652b93d4d1ddf35e8ba6fd13182c0704cfc0829988ba6972fc5c985a8fb3b5
MD5 912df00bfbed246ba5591b1c210a4ad9
BLAKE2b-256 aa160760fed13774b27e19ab904e3108e7b7d3894099f2b39524f01c2f70a392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10234c0ffc0122ace366afedec2ae7e442ea13e7a395a6a6d06660da212f5dfc
MD5 aef1c3b53379c09311d59e4b660e3f28
BLAKE2b-256 4d5d54e3204efdfdaff08db4d71c66e65cb3af85ac4241fd6c5e6f842c0e9314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f3fd2ab53596ff88738140f236489b4c682608ed9922cb8eceeb2d9fc92760b
MD5 a27f1f82a0b71ead21f1840861188d6f
BLAKE2b-256 2fec63cb03735cbbd513ef4dab1caf1ade3c9e717f4eb7d0d3028d3c0498eaf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f45084cbb09f1930b443795c7c90544e6708fed4bb998050d06d3062cc695123
MD5 502aab7e0146e54a1cee9344fdcc4b57
BLAKE2b-256 e550101cb5b1602a487801d0c4145bcb190087c1bcce662e2dc42bf8100b3d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 937c0e086f9815f475a4ac8f32674639891a4fdbd22facc78486c6be82e780b1
MD5 15c2b5a473d64bd0716e07ddb1f20943
BLAKE2b-256 cd7e3e5478d28d7838f50a523a117090e7590915fd7e8611a828d3ae18e17e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ede544fbe653f2acd1510012638f58faf4da698a0b0dbb03408badd666835cb6
MD5 eb9a21fc020d53ca09758eca2e8f1e44
BLAKE2b-256 c9502b84b85c030199a85b46a42e0120f5cc86ae15ae67c33ff69dfa23f487b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 893a59d5de8e8203c670db37ec2dd5345149eae5bdc1c57b1beb10bf5d846893
MD5 17f835b6beb009758154c08e3213b031
BLAKE2b-256 2d44a98954770b6884db42ef3a10638741b152ee8daccee28246278349e829f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f132cee1731a6b27503b72d29b4f60518b9f759083ddc10e64c31f561fa8475f
MD5 d340b599a1529aeb21de90902ea35215
BLAKE2b-256 c13fa86cc183b33caace137e115c34ab380e21e0b8c6ad0f3eadfabbf2c1855f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38de68c0a3714285cae57659d0fb529094e71b288a0d417ac37500dcbad10458
MD5 d47da1cb2536689d91ceacfd57d7b221
BLAKE2b-256 e37956250396827fc66ef529eb473c285c5225e54beec7443d0f705b75e99a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7d9cbefa4e6a9a052ae892b1cde3231d1977561346ddf90be1eef35aa51a186
MD5 5ec4bb1ef6e7b99f8d7d1861b9b6d4ef
BLAKE2b-256 c0912366ee2e96166caf3445475594faa70611326355fd99c38625f94db4df60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e34626642da15dc88e332cf81b41b1eea75ac424898477a699c8e8427bf6452
MD5 924aff15f3566c9e40bae64918e295cd
BLAKE2b-256 6a33a86c3d98ff67ebf51a36e30a474ba635f908c091990b632063ee34483316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc3ff7758933300116132a114513a228fe8b991040c892495c6a93ef04b24c13
MD5 12cac3484c3d17ad86e95fe1c766ed01
BLAKE2b-256 922482e9476b51927322482b9dc70cf3f5aaf8266bd9c4a90b60cf4936e2ed6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b109e30b7a7e8e86f5705e1311d32d588329b4d114420c63b16ab1b2ec1fab53
MD5 0d5dc9972201462707e6f284b5b2d9c4
BLAKE2b-256 9c6ac07c60a7a480619df380e42d26d35c3b86050dd6dbf1e78b9c6c3eca3dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e013dc12cd3842554ce1a94bb1df7231461285bb0a79efc2eaf2cd3326946811
MD5 163c3f458a30f8f0e45c9e72dfe28952
BLAKE2b-256 c9472a00a1e87a5c65a23027736b02018d679e9a0bb66e52b3dcdf23078c380c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a15a6573b6bbbda86c93a62453cdc4279ba532af393c6c16b64bc59c7aa2f2bf
MD5 73e886bff8682b76abe1d4e4c2d3d7f1
BLAKE2b-256 5a72d5c5fc7a957694c28229b514ed744d3525e4d605ef94d169f78e6208a25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec23bd551fc89d2f9cb09b8a2928f45b731c66865c410d43e23070919e1c64ca
MD5 8abea105e6c3e55e8b1c726a243ce568
BLAKE2b-256 f7418d61a3f1cdab1b98b8ffdc51cc07956f2cb4ec7af577649b9a241431daf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 644a672accf75f5b6872bfb43be66b15601ded44e1f86c7c17c57d8f44109457
MD5 bb32f10bccbab36e5b323453d1c21978
BLAKE2b-256 58fbc6a426fae457d113e3fd275a5a0f797c4c01e377d205cca4ea92f90794dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f89edf698a8477f22c4eef11615a351b412ace96f83686560fa6bf6ad4f8b54
MD5 cce0413570d9109c9db091b64139c4a9
BLAKE2b-256 a476987fd1e079db1f5e9e9fd574417070c716590a72532070fe75363cdb21b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e90b95aa0daa95c3858d015125fba0caca1ee6c499a0b03d81f2821c66471525
MD5 4daaf2a92c0b0c2e2765f7ad24d7cab8
BLAKE2b-256 ecf2ed6c586d20e0816ce6659d6ed331ae65b0067d48b723c9908354149f1f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a24620e23e799df8bf9e81d3a884cf508aad75f8f2bf4a4880430fbb7dca92e
MD5 6728e7bbba2ebaca1bbf876b981d7db2
BLAKE2b-256 5b4e670ef3fc9ce8616f6ba19e586309e289de3290078bc3209c379efb5f5e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac7442bc26845d0a49a0de78d182e5453f9f485029dc26bf8e6bf8fca93b79e3
MD5 32eebcb660daeac30976880ac9c82e0c
BLAKE2b-256 199190684fd6eb3b92cfc93f9a477f5b9cccedaf7740ffbed9aed2667c4eace0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b80a05c69a5e922539048805699bc07fbca494a9299fa42f93e5a2d09efdf1f9
MD5 64c6003de53891ae3958ca259f3c765c
BLAKE2b-256 597ea0dadf068b6f68274429346b68a223a849d34228262485f408697f2d1f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b0171f287fe0d0f190403eb225c71f36127bfb6b32e40db20f3ac995bd3f940
MD5 a094f091f61d8aae75d7f133d3c73f60
BLAKE2b-256 029a7b00e2729a6d3e5ba4dcf334f83bd9d2c2415b53621a42521ffd000dba55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7276fc316a09591ca9458d362a34f01b7fa9c74a8cea80f4ad2b58cd0ab98b08
MD5 ea19c0c5d5bc547232f020d0678a8f7b
BLAKE2b-256 018f95641d881aef2b05eee18f08e64b6d85389499738a0be5a9894c11e77e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a50d63c0967823a2a11ef55a5a5218272de583ab4c775f1fef10bcb3c4f5048d
MD5 5c891faefb45177b2bd4b349fc76cf9a
BLAKE2b-256 2102ec816e00ebaa3b92152dadad7ffc791154668469fc4eb4fa5c0b71ea86d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73977ef18adda2e7a4fb6877ef88c9073273a2e6ba2a631f85feeb03bb3dc502
MD5 343c1eaa767810fcf45f6ef678c47f1e
BLAKE2b-256 30396b82506f9c786c5d1a1da11748c69ad0a72eab190fd3c5986d75fb0d93a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7a5b85e5609ee0b98c737ec6af9d37b5290b3994da02460e24928633564549a
MD5 6709aa0aa3047188fc94c38066b0ecdd
BLAKE2b-256 a14b06fdd65a1f48e2535e9e63a4b48141175608621477850d2d72c19f5827e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449f6172c960a2ac0bdd0a3ae140d17d5bc94208f2cadf54ef0cdf826cbc1d51
MD5 8e9f87b2f62618784c327156f4283a74
BLAKE2b-256 18295a57414e15c8cfd2b6ed4d8b3d967e73558c16e7f60f6a45af505d8b3ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d2b8759b6f6c5103e2cd1e4e68240b8d5fdd7f26021bcb884c845506276acc5b
MD5 98ca7ebb5b058bd0a9df53df6060c57f
BLAKE2b-256 488179122011d8c5bb420b3c69bfcf70d1628fbaaaaa7b42cf553b408fa17bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 363a89ddbeb5e3db9f879631378835f61dcf123d9a3d8a550a6b48d297cc20b1
MD5 61b46f7d7c1267a7d733cab5857a363f
BLAKE2b-256 bdf3acaa6aede80e49c33a460059cd606eca2c8cd03ce435c657d65267b7a5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32decf5f5a32de0415808e8632399e572fcaad69e86643ae8ac75e1dab7fda2b
MD5 801ef83bdb4c73c5d86c8e01dd45acaa
BLAKE2b-256 290ed4c2562e7d834d2890653965f5e1a7f02647d820fe45c52d73050b467b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4cde8d7f4d6c64dd2f1701e8d385c850caa7f8746eb6fe5706f784dd6115348
MD5 9fba5d62012f7d88675bc4b2ec8f690e
BLAKE2b-256 628b76f64f936b9f63b097a6e4960acd19f958081455ded7797cc118de0d186d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6695561f955fbbca4f06caeca3b513476e74efecfcb3c413d6adb0b259650ac9
MD5 afa312d33b33939b26cea298ffb786a5
BLAKE2b-256 47586685448d4dbb4180aacde17b39505eab3007c6f36904a9dc3d2aba05a0a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ffbc0a5e91cc3688805cfd212ad1bf268a9164bb45b303c3ab1065f38e87bf7
MD5 8ecfea79fcb05bd6a87fa361a16a2d21
BLAKE2b-256 ac217bf1a99834329ff23f7086ac7f7d24fcdad8ccdf3fef0dc7ca87c9e4cf88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de1de9a6b6a13c86cd0b4e6808fad7d6a891d66b61c6f043586861b1d4b61964
MD5 92a5d9c068bff778c3c78cafea68fef3
BLAKE2b-256 8fc4c6da0e5bd8991b9c495828084dc24707381eb59833cbc37df560833f9731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7134462299e65cf0ffcb9914ab0cf89fc7a530f20178fefa6177512e35acfcc9
MD5 bac55c7cb7b5c8431a9e898b09ce4f6b
BLAKE2b-256 1c5925a6e6ab6af3827f59312c092ed0ba14be5680361d0c2a24408d1a18f720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5369de8db37735f8dc1a40bc58fc15a20a88ae75fa4591fb17d6068e5e1bdf2
MD5 f1f7c53c680cdfc059035be59856a232
BLAKE2b-256 c2aa914d21cc2dc208be8fc2cd198275e838a69c529d44d0f0586c5b1e235106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26e25e5a530cc5e5d38cc18b241175dcc2709d774f289d12a0589d7b6ad22ed1
MD5 2bd58c38cb804bbc21521f2013197fa4
BLAKE2b-256 feecec57f1f6ef3e6b645a4f3d69fa12a31892f7d64f069ea2e172a114dbf537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c51ef992c432b46f2c060c1b7887781e4c1f77eea5f721afbf1b26ce8b1af782
MD5 20224e7782450e2d1f7eedbe15ce3b0e
BLAKE2b-256 6a3eba2bae88934a39c3ebeabd13937c4b112206aff2aa68daed404cc9b5c058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2cb571122b6468a0ea487428c160396e417dd785efd5e07a238edbf0d34e0c1
MD5 1a918dfd766ca32e56d6e86b74e27b90
BLAKE2b-256 c966702056342703888a7a42c99541afa71751d0050a225be2ff1a58c87b33da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07563a285f2869b2663d60855fda675bee3ccd89bda9d6a48e1c2cf06d0ba10d
MD5 f93c7ed4965d167b42f3d4f3e91f9d9c
BLAKE2b-256 b52a74b79ef138e5832471545959db1e1c1dab831e08b3f4d30654430f6620b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79d6545d25469ee26055e3c99c5302ae1a87348d26b00570e7b0f1fb84c6decd
MD5 48e2c22906f4ba9362b1a029434312a3
BLAKE2b-256 ac562a5e2837ae2a4693e5315b6564ad92f259308af8f387ea0c2db010645ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1b195c37cb4536ce0708f412539df8c2604ea171a3f1c0dd57b1bcc7dc5d85e3
MD5 14cb88aeffbceb1baed7503712165c91
BLAKE2b-256 f49e8cc1034f23176d37ce5d26d683ab660be982ba45706a7ab8a42511e0ece8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55c689b4445eec90d0fe22deea80bce5b8c6619b8794c63a187b6e411fce640c
MD5 80e4658b454137154c944c570229c4d8
BLAKE2b-256 40777eade83826678c237226823383b7fa55b0a5873cd171aa031a1087c75344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d504ef316d5c87b24aff81c84eafc760cd21a9a8f214be33d87c9bdafb6e01b
MD5 075091b37dd0bc7922c435855720aaaf
BLAKE2b-256 814f20a6bfce983e6891d6f4ef1896055b913398c2c18ddec4765d9be39cb7dd

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