Skip to main content

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

Project description

zeusdb-vector-database-logo-cropped

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

📥 Supports multiple input formats using a single, easy-to-use Python method

🗂️ 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 using the unified `add()` method
records = [
    {"id": "doc_001", "values": [0.1, 0.2, 0.3, 0.1, 0.4, 0.2, 0.6, 0.7], "metadata": {"author": "Alice"}},
    {"id": "doc_002", "values": [0.9, 0.1, 0.4, 0.2, 0.8, 0.5, 0.3, 0.9], "metadata": {"author": "Bob"}},
    {"id": "doc_003", "values": [0.11, 0.21, 0.31, 0.15, 0.41, 0.22, 0.61, 0.72], "metadata": {"author": "Alice"}},
    {"id": "doc_004", "values": [0.85, 0.15, 0.42, 0.27, 0.83, 0.52, 0.33, 0.95], "metadata": {"author": "Bob"}},
    {"id": "doc_005", "values": [0.12, 0.22, 0.33, 0.13, 0.45, 0.23, 0.65, 0.71], "metadata": {"author": "Alice"}},
]

result = index.add(records)

# 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})")

➕ Adding Vectors – Multiple Formats Supported

ZeusDB Vector Database supports multiple intuitive ways to insert data using index.add(...). All formats accept optional metadata per record.

✅ Format 1 – Single Object

index.add({
    "id": "doc1",
    "values": [0.1, 0.2],
    "metadata": {"text": "hello"}
})

print(result.summary())     # ✅ 1 inserted, ❌ 0 errors
print(result.is_success())  # True

✅ Format 2 – List of Objects

index.add([
    {"id": "doc1", "values": [0.1, 0.2], "metadata": {"text": "hello"}},
    {"id": "doc2", "values": [0.3, 0.4], "metadata": {"text": "world"}}
])

print(result.summary())       # ✅ 2 inserted, ❌ 0 errors
print(result.vector_shape)    # (2, 2)
print(result.errors)          # []

✅ Format 3 – Separate Arrays

index.add({
    "ids": ["doc1", "doc2"],
    "embeddings": [[0.1, 0.2], [0.3, 0.4]],
    "metadatas": [{"text": "hello"}, {"text": "world"}]
})
print(result)  # BatchResult(inserted=2, errors=0, shape=(2, 2))

✅ Format 4 – Using NumPy Arrays

ZeusDB also supports NumPy arrays as input for seamless integration with scientific and ML workflows.

import numpy as np

data = [
    {"id": "doc2", "values": np.array([0.1, 0.2, 0.3, 0.4], dtype=np.float32), "metadata": {"type": "blog"}},
    {"id": "doc3", "values": np.array([0.5, 0.6, 0.7, 0.8], dtype=np.float32), "metadata": {"type": "news"}},
]

result = index.add(data)

print(result.summary())   # ✅ 2 inserted, ❌ 0 errors

Each format is automatically parsed and validated internally, including support for NumPy arrays (np.ndarray). Errors and successes are returned in a structured BatchResult object for easy debugging and logging.


🧰 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.3.tar.gz (23.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.3-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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-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.3-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.0.3-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.3-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.3-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.3-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.3-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.3-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3.tar.gz
Algorithm Hash digest
SHA256 a99378e3313b69bdc0472705f3c3e8ff22dd15ec236480fcea19563d1347617f
MD5 508caf97a64e3fda7a8ac2c8b2ef642c
BLAKE2b-256 fb1937cc11e2031f8aa89ad2eb49eff9340536a3d9b6c87aac3a6366fec3c15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fd8c0fec984fb051927b9755e24c920d410b4b4f10f176f0f5771c236b928bc
MD5 a03449e8208b99434d3f36bed69f7c50
BLAKE2b-256 8295d4b12952ffddaca00771b9f91ec3f06f058250e616f209d426b4dc84bdd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c07b9e05778effb72dccea6eb84eff24ee0f531076e5962fcb83718ed28315ad
MD5 c1cf70b199303360864c93e10704aa9f
BLAKE2b-256 286175281ed2236be07cc4905024bd08fed0baa6e54b4ad65fa17e4ec6d7fb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b1b0310d4bec0c37dbc7de36eccf18a8fa21206f4a9269ffb06ca4d5969d24b
MD5 fb0ddd575c461769c2cd0f6040dd6468
BLAKE2b-256 e102024a6e11acb62ebd429ec8adbee5d8172acc68de6898133bcc819f76c989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84780d0ea55d0e4fce87a555d2a76d937972bb7a2311a683131bbb817233a786
MD5 a9b9ad0b20aaa8096d63159db4642d41
BLAKE2b-256 a7ba1b7181d049394d87444ee7764402b0950a0d57c3f328e2a8b0a105578b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06fc4e2374fef329414371571980be3b93e0afc204e6fa162174dc14e17f7c32
MD5 c9f6fa0f26a9b2ab655ab80206461947
BLAKE2b-256 e528ce4b0d941777d4009060ff06b59a1556fab0a2f22dc998b85ebe5f9b81b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6f9e29697ba1833b1b28270c8a7b7f7f35568d136c608fd9419c689ee901e0c
MD5 370077afbe528540b8a2de679ce79cf4
BLAKE2b-256 5817bc629445f6f356eda4f31dad7ac29d38320cce5e259c38b3afa0db70096d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c118473ef75313e12bf663e491cf8c95a6e032290ef639eec1bc58757ad0b20
MD5 84d17c9a8843cf3a8008247ed4dffa8c
BLAKE2b-256 9281414bca99f969abf318a9f19b9bb8e0f4ebfd09a766b891ba8240f9e9609d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 170486ce7f076f8f8e63fbdd3f6495bdc8ea630639c1f2648cf5ad04b29c1d66
MD5 57c87c192008bd261bd8695c92d4dbce
BLAKE2b-256 cfc32a5f9d1c096ee2a4c16a564505ebc8d46510e5750a4b95bc9bcc6fa8439e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 879120c5ff46b99f1a09e18bd6420508ed966bd96108827825444ad2c50c0be5
MD5 1ab0f617370c1facd9ccaeab5019617c
BLAKE2b-256 c173210f19311dd91c24559214daed3b850921b764e191cba319d7ff11e76504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 df76ff1c455ffa4b5eeda81c1cad846ef8c0747ba7a1559406862d5733bde307
MD5 a903e7cb1195b41eba7640ec939c63c8
BLAKE2b-256 fc9a1674d55cf399af8e536eaae6c69fb8b598cc20fefb26500dd05c3d604ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34c563940cd33f54cbbca66e2f244ecb2f2e4a44f186134962f85e7a6804364a
MD5 873f049a5890b6a40f05500209cedac8
BLAKE2b-256 bcbec2017aa1ae63cbd8b510e4ea58db05ff0a5540459b05da386feb361939c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d9189ab38fe15c96a1dd2dca8b04c0d4e67d820e8e8c3e964b05a4be950d2a8
MD5 231162c4a90f1ffb2e9d2d2afd521f1a
BLAKE2b-256 24547b7d0c1544da2eb09c5a08336ece40e74c3d133a7ad057394905e7641649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 623fad7c26ddaf86cb7e7df82fce039d61fe02d82b02e18995e2f1b99828aef0
MD5 1d0f309c7f1080c8fe5bcfc21bfd1a86
BLAKE2b-256 8a1f58f1fda976ce518c71118998d80877247d949a6eab78dd5c6ad6e8cbb8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8964a32dd406e0a606b4a11af3cc7f4a8c255bf0ac98ff88a5224a23c69bbbf9
MD5 b443fbc1e422f0d0312c315a6639f7e6
BLAKE2b-256 9bcf00d2259020e86c87cdbefe9838b9a355a281bc70436a12f43d5f1f1bb31d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b1f290a49db7ea2c7939242eee8a46eb4fc9ac32d50e96dd247d6f9ba494822
MD5 6a5c0585cd3df2a04e2f464e75d05da6
BLAKE2b-256 2379ab126ed9a8ca87cfc3b3f3869cfa32e28d22466b91f565875e1f17d425b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36b10ef5d9b8f7a6a0a47118dc27ae7ec80829a9674de28263a70786c3fe72d6
MD5 b4b5a782be157b3f79f96f7a378d5fc7
BLAKE2b-256 895709d6f301f8efd4216a7430a07683b14abbdf1c131486cfeb6a5a5f445a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2f2996a36b23b882fa833863ab45c5183c0afbd99f06470f22190cf394044f6
MD5 e554e02186f5e78c5342f4c1925a9744
BLAKE2b-256 18034d3e76de25e62e6583e2f235cb4d4576b6134e3b67070c92856b3ad8c366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e35ff02213f744ada5a0fdb010f4c588e827c169ec6871c67045b83794aac531
MD5 9b6ccc12783dcc94f0a86ce92203b093
BLAKE2b-256 b18a3544069f7b534b63d9db1189af16b2bfb03403a69136f53fedccb7143274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36fd3849e85554460a4e036d9cb82583ceb1687b264be6537240c228b3f5084b
MD5 b3f13df1e8bc4183a8fbc0dbeced3ef5
BLAKE2b-256 3214c570a7ccd5c60535628f76c449926b81f249f7dd2404470fd2c4e08ba160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9cf0aa9d88fe6c88cb3758d03e1d1fbaea29f619ae37735835f3e60b97e7fece
MD5 263e620ca7df7eef2184d09df14b410d
BLAKE2b-256 09a8193bba243d93658cccd7dcf60ede823c80c28815a8909e68ad0089fb7552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d1bdfc1f7c270eb40238fde19020ade733dc1969979bdc6d68534475b3f735d
MD5 018e9a9b605205a6c6afb9625947e959
BLAKE2b-256 ef671e940a02d954c79aa5098c250c5d226061cd02e0c83afe7869e566dc0412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bab809800404585c1a878c4be8d4ef8ed9ba0e334c158ddd870aad50b5f7d0e4
MD5 884536d6f8f71b694f0586f31c917beb
BLAKE2b-256 be8dd2c3568e21eda7983fcd7b5d536491947db541b82ca600e5eae66492e2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 116a34594965d1053681e32cec26e739a207b3f4d8c784661803aeb1b9e61429
MD5 cb43a898333acfbf2e3fc96210b54e9e
BLAKE2b-256 1f78583958684e1ec148ef89187ee1b8399e77d23ec77344b43fe39ce7b030f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ef141e071b0099970628ab5da3c6849ad96e2e83844ea4b91c19670b18da35c
MD5 5c8ee093d07728a4ce93acfcce2d8d3b
BLAKE2b-256 6a076c7ceed23b9b106029e19a484bdcd2ecfa4c0c78b18f323751b21ca7d826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6eb1b34a1010dc4b65278e1ea7c978df24db5b22cd3ddd707f706b610b84bc1
MD5 2220c3e339f915655de02bed1e351512
BLAKE2b-256 bc2b4c845acccf5daff62221fbb5bccc462674852f938ec70f176f5eca0f49f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33b28cd6ab29aa00b083ee971660b20080b289772296088f78243ab5a0c9c49b
MD5 708d9e00c7a64424474d7437fa056e02
BLAKE2b-256 c1b2c0722295cbf165326d62cedfefd03b08aeab8c59fb98ad8975cda57c1f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0912e22f0ea392910e7e66ee0301409f4e81ce5140b428e93c897a7fed911ba2
MD5 eab2661d1c2dfa4b8d180d6c58250ddf
BLAKE2b-256 18bdb66c18ba8ac56700825e43ba9ab985d1d3a5979433cc5b3a75e0e44af5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b572686496432acf56dfe840f6de3d57bd8394a679cc5f5460bc4446e187dbb
MD5 42fb7f3f6fe1edd7d6a9496b5e5e2751
BLAKE2b-256 c52cff96f51ff3f4dc5f1e827b253a8279a38a6edd8fe10b29ecb6a68d41e69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffaa57db03a8c74965f48c1f73788537939bcd1d7994398c395ed12de12752ec
MD5 dbc3ed8a148dda2b50af7ab4b6fe2c8c
BLAKE2b-256 6b2d4919d6061bcf32e013dfe753be332da8454ca1fd299094a9413220a70c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c6557fb6899f0ec22151cf9beb6366537b822bcb6923ce54f2d5b3045260596
MD5 e5bf667bff90865a7f13ef1248961d4e
BLAKE2b-256 45551047792f755acad0ed1f02e8d34897f2eab217a1f88bcfea7616e0db2430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d73e98a10213132eb1b53e7fbfca5de9c52180ddf575abf50b8fe949f9632e66
MD5 3b0733e1819c49dac0aad152066c2b59
BLAKE2b-256 1ddd36d847819018afad5b23add21ed7500c26f0783801c897b211676d34e6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e884b98b8205fd3ceca80692f406244c82c35d9206f8fa4df92cd81b322e6a76
MD5 4e8f399879d232fddba4ea8771eb5a5b
BLAKE2b-256 b20ae4311187255d7197327d0ec033051c6e3a95e0b6475a825366398a72f0da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11c9b8fa3144854b2866e43191b3f9b26ce8d7bd6de9904af21e94b98824ce23
MD5 e1ff35a491df9c2cd03d14ea67d2a791
BLAKE2b-256 c6866196cfb33c87703b9094248c506ce04ac3a9d25b2421a212cd53e022d722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c7ea1934953db90fb89059851ca8422574f7d6199d9f92c31c3538b9a50ca46
MD5 f1923dfe74485944ee8160ee1a2c3e2d
BLAKE2b-256 1b1abac8920330b97c6644bc66f5dea0edc0787a433144935c37e26678468373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58c3b8ee8853baa317c6334863ac50e5ca189d607eb669279476dc9872c0ef3a
MD5 9bc60a92f0aa5fb95f321e69ee7a79a2
BLAKE2b-256 6ba2782b3959e1a320719c76d7dbc12a4ea481734501854d49dec2ab7d0b0568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 278394ede5883aa87ee9b03922e7df3970ad0ab91fb8ce2472eed2cad663e110
MD5 41e216b02adefc9c5481b8ffbf53f81e
BLAKE2b-256 bb3fa7668b8d47de6f8a4f62a939113d037b83c377f5cf2f98fc326c98cea4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10ad6a5bcf1f77bda9bc43afdbb4d83cec4ccf5fe4910158119eb22b3e608b61
MD5 a71d8143877d9d07acad5992a776e808
BLAKE2b-256 f76143dd05641663b143ef69502296570e52f86924a1f146eb7fc0bf78e920f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f99d9d6aa5f0f0de575c4cd72578997e8ba1ae712dc422c0ec58cc744e81909
MD5 ebb305b13d4d180213d820ccb8eca686
BLAKE2b-256 db33bbc0a0d3794087a370a25fa5b4d0254a7c74b9a978509296c228cccc2b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a8ae5854a2b63518640b6ff565935d400a3da466e06c091861fcbd4cf3223c1
MD5 399b84c4cdefff475440205c6b1546e4
BLAKE2b-256 c31e1ca1deaad46ae5d1c4591ad84dc0839a4f7fbd352dfe7740215e72e27a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07ddfd85c2a4e495899ebb38b5aeb477226a7d617240384a030a31090f0313a7
MD5 ead90743965ee50abe3d291f1ee36053
BLAKE2b-256 f55373d928814af380c9f73827be273d75e03558ac8fbe51ac766dbac17d009c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ea70dd98dd7dae11db9a208f8eed051ef7e004c5d05421698bf8ed5da516bd2
MD5 bee8bc822921ce8d574a9a5061805e70
BLAKE2b-256 fbd43a3eda340bded294337e267d1ec71106ba7e6ea7216c76f2d7aa1b8123aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cacff742891bd7c3312730663c20036b8f2220017e679cfe348195a33b7bad33
MD5 946a0fd4e3bea2facb31281c29d6f6a2
BLAKE2b-256 0ddbd509c61a1be5acd5a6d0454f16bdb83891086b079dd0e22cfe8b7334d702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67bd2a1a8420154ab89410e8f0bf26e92d830cf3666fc5f82a6697835523ddf9
MD5 a24e211f482722639236699ecad8a3cd
BLAKE2b-256 9c9787b54cc4d4354a3914864928f08d27e1ed8c3bd1cff3ecc43b591dca2211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06176d554fd29493e0b6f04a61528813bf1adb589ea3d93207fdca0b5258ab14
MD5 0c322de70fa6cba0d9cbde28bf1a0abf
BLAKE2b-256 3ed94c7e83b8fdbd05431d06ebffed4b6f2358dc59bb40ceeb5491948739d68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f00ff4cdadbdc883ebacfd157d1c1bf5a48fc556d849c629581af3533ece2697
MD5 32b4cd35f7d51793d31a7813d5f6793c
BLAKE2b-256 9407114870d2ea5d10d26bbfbaa9d2568fc0102d3c3f999cd99c1e178e642574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1d59595c0a0ea96e96109a4dbb76de1a96c25ed405a84ae2bd490c205c33eda9
MD5 9dfccc38a5a97a126cb21f897f138c3e
BLAKE2b-256 8d7f969eadb5e4e5fc4950157f281961864f5a2d8dc3f5a6b270a333542e9356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02c904dd24e38aba4183f09f86b0c7e4b11c48fb7ee3daa5de5670c4c008d8ab
MD5 c45ad4ad1888907b703ed584e1b20896
BLAKE2b-256 be93445a37487b9918b8e24e76abfaea80a7b94ffbd5aa6209d728799a81b822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f29e1de14ee6dc0c3445448b8b0f5caf09e73a940416f1673acd7a3ca0869572
MD5 7daf6ce88aed94b14aee6e5101212aef
BLAKE2b-256 684c2b32f8516bd51459e0aca48aa1ccdde0e4e0df37283de0870e74dd805561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7027c05b1c95e14fd1b03410484183bc29b2d25d87cfbe54eb0b5832f2667aa8
MD5 c73a5c0a82a7819a520ddecfb8578775
BLAKE2b-256 28c2acb28fd740bba4a6b95a120b17cca07b7f7af382007debfc4489b2cc6738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9da21078e566d86acd6d848cb2085f828efcdcc11ebf8ec0d81d59b2faa09081
MD5 8a536e3a21342ce0f34b90007172397e
BLAKE2b-256 702e431b089b0f68997eee98f4a2f5d66a6aa836b03afa30d5d673c0cbf286b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3652ab0ab847502486a44bfebf3de2a1048c02ca23d60f93caa026043a19e29b
MD5 c99e579f2156cd5430eaf2b928f5220a
BLAKE2b-256 0ead6f46ae1449459ce61fc752a66f93e008ae94020b4578dca881189a6b1729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77aa9b91e9021817d677505beb6eaea45d1b92d0a63a8c19cbfc4f5521dc6cf6
MD5 256863c42ea3fb28dd0f8c1e7bceeb48
BLAKE2b-256 ff198e55fc2750c48e94b375685db367a959ad846e4c97a87ffddc7b46e3d462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9592af9157d2aa1bf0dc8efe69dc5eedd5a9b518769bcfd2114a99f5af7afe37
MD5 fa18609b6ed597e6bda638e6d4cc360a
BLAKE2b-256 183a1c0975a1d26f028230bd62645eff7ea195d88af3f22fcfa36ada335e3c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 059257cf4bd32832a1ddff800b3ea523a16a0a757abb658b9c4b40c0d53d5541
MD5 05e1a87ab7e6c19f02764006505d072f
BLAKE2b-256 8c78d3eb39346de5a1b1b0430b2349a8f844abc65696e2b659c0dbb61992cabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a549aaa678cbb2ba2bf6610c592aa15d98ab8302c66cb142a3293162b929bdb5
MD5 9b72264bca66335d088cc9b785a6e0e1
BLAKE2b-256 b737c367656ee444094736f519658f22c2e3aa1065ccb2e363ae387e05e1b5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 02c963ab8b0f0f410dd547ee299f1f63793f5fa0706f5ec668e3069ee9cd094d
MD5 7231e0674d9a402d7209239e1fb716b1
BLAKE2b-256 e84883019001e92c2f0c4284b38a4d9a69cdbdcd6f48c4be26486157ce239d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e03b70b24273746c2c44a1723f7990f272f248a18f3aab701f44cb260e19c23b
MD5 80171fd42c520ed3ace9e0a7ec50321b
BLAKE2b-256 3c3ae0e6b69784d2906817f6251d0aa5c1e0e381a56055d7f91e54404c77da2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22588e50c8e229e9adce952d03be4521af193bdde64d0a571830024e30ee0c27
MD5 3d0126440057654b549a4c8f3b9add9a
BLAKE2b-256 b013fb0fb1950dfcf5f1adbafeb1f834e505c8f8d1daacd146bfbaa28dbf9a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0125a243c5cb6785c48f7f8bfbff7aa2766596bd806adfc9f40496ca9df2244
MD5 972091eb2c52838ea84cf3b958809d6a
BLAKE2b-256 187c97c87d3a7025a05ffd659f8b2a547e8ea49ba66199533050501d5cd88506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 96fb19388905a1161ca6f2a4e5874b1abd70c0d28d26226645257e600be7ce35
MD5 b688646efe81eef73f5c66b5d0029380
BLAKE2b-256 5c759b9fe7165271ae103149ce505f5de452c503fb13dc0b6f684d8ee359123f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14a0ac501c8cbf9e0b4c3963d813ca235000eb9babef7ec86aff61e5589e5201
MD5 e90d66169f2a4b1ed4b8cacbe8ac1ab1
BLAKE2b-256 5f4b0e53d5d2b3a49d28b8e9786e6cd5c84630ea49ab59492b0bff03a45c6261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c674f8621fe08256629981a4613743e844e5cd645a4252ce2d8bbb33dd11cf7
MD5 3ffd47a3d2e718e5cc9b2db0d837b9d6
BLAKE2b-256 708f2ce9665bd65ff8a7a66babfcc471584fb6cc41f51cd6e74d69caf258b89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b652fd304eeea45aba64f247d1221643adb81a2f25c9a38a2a6fd8b704c53fcf
MD5 63d15cfb4cd05808d152775ba87eead3
BLAKE2b-256 1d2b20ad1b2d3a7f732a269c00e3ec9004161232a0737b85b5ef057235b9c5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdcb819f243039ba252132820c10ea1fba8dfb8e6e698aba4472af6bbbdfccde
MD5 b2284474f8b7e921f205f1d9424bbf8f
BLAKE2b-256 e57989c6cf93f5a3de2b2afa62254b472d1fc06630a19958215faa9f58430c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99f39a177d38092098372e04769b6e2d0ad51fc9febc0840484b0deb8da42862
MD5 63a332c1f930ebdd8596b07e1561f7dc
BLAKE2b-256 5afb3b781e73a62b77cdcdddfa8fc2d3abcf1263abf306aa1264682a311427b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c147209c628367ec2a1ffc865055e3203daa0bc120f004cf0cfd56feb6bfccb
MD5 885a40ee7a6d0e97127cad042846e748
BLAKE2b-256 dc8d856d8580ebef5eb3080431f0b151c5ca0c3a7eb79e2ceaf46ffd8284cf1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a246714a154276d656d335b9cde32a1c16468e9b19b1a275c21d0765bebaeb8
MD5 d2de186a2ca02a5a8cec1f9e3b3a5f96
BLAKE2b-256 c8711461bb1e2419eabfe0a9196fc2ffe0e4f02144129884239f505492c47f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5dd5c2c15d7d4a3747ddc1ec6187e438669942064a9323752e2c49b6fb38c09
MD5 3a21a2e5a99b8f2235b8452d20af7d06
BLAKE2b-256 2e01985db4c826f2f6db3a81c85487379f148c483645f32a8c6a552cfec7b436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3c5bdae9320d4a8291021361e8027a1eece0ba1f25ae57716f7494fc55deedb
MD5 ce3d39354c7209b8c8e4f8dcd8ab18fa
BLAKE2b-256 afc963ed396b926b457ea716289d789f4c56cc6d6a96a17558c2d0afb8f0621b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a5a578273f61a09d95f801529abb3027ad71d78455a9561582fee57947afdbc
MD5 e8996a5e1dcd4466104324636f82e396
BLAKE2b-256 986f72d87ab43a0addb5fd868a965a691f42318e216cc811d3b7341255c82d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8797693300dad71eac5323ff8d720377b9ac9a361467ebd19b6d17b68c931d57
MD5 7c3953200767f836985aab5d1a1c09f1
BLAKE2b-256 1e02854b4a3068091b30b02aa690e8223b9c4cdbe2842898e32807e1952883ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb027eb7aa8f17c2f13c0f5f5d5a67c501cf698ce98c899e81c304d3479e4b1c
MD5 cbd4078053e88f0ad8eafdbb15a84e74
BLAKE2b-256 4008a2985e6ff0610701fa8dd2b2c7f6fdf9359f6ff4f16d2271951cb466db85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5bf021d5140977126bd2505c5dc90219c34f252762d02f827a81613ea2b38a4
MD5 d92f365ef07403c5446c7a223e6ec399
BLAKE2b-256 26610c0e546be87a38d227c4a50970a018f09e0025171c6e0db90721cd169427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dd69f78a16e137310f133579381f182c1fd9dab206f8ab7f0b61589acea8260b
MD5 376f6beea8c312d0a40ede06223351d6
BLAKE2b-256 6aa8514716e244d9518776d41cbf9e0755e2fa4f77d39c028f3ff361bb036de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c77f74c058bdcbca58ce185e1bc0d509417279e5512a1087aefcda221a771aff
MD5 f46aa2e11a2935bcfcaa9b0fa46fcbf8
BLAKE2b-256 4f548db26c39d1228e1856bfcbeec4f79eff94b0d08fe8b1cb10949c2e29dc8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e389da82c4f4acb76d8c4670bcd116aea639fa9afd786fa6c09089a684ef707c
MD5 a068faac24cb1416308ae3fc287a5206
BLAKE2b-256 c6370b4d2c6a5e922818336145109bd16f4ad31eca97dc675ae12cd0e204abc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bb17e2738c315d55366a38c9e8e2476842f7d029dc799b282abd3926ac4c6c4
MD5 49af1e209a62f63ad7edc04fbfcfc3f2
BLAKE2b-256 4273aec68724372b6498823ab8b757c2cde411de7d7fea59e4ac9d993f826d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1993e742d312aad5b0fdccc344cd686e565a72471f80ff6448f6a2dfb13f35bc
MD5 d69f5dcf4ece671856cf4bd6dd818ef1
BLAKE2b-256 509fd76189ee499fecfae72f4338b27098e7648c905044eae76ffdc5de12e16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e33a592be4812550a3fc950f38717778aef8e3c19fd92943e9d4e15adf57678f
MD5 cebc7d98b06189baa559c685a15103f7
BLAKE2b-256 bf3c3ce2dae87fb965f4655b24ec04b2b11cdbc11d7b27baeac1b5bdee61de51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82e5f975a0533bee35386ab38fa4ab44df302c34e318040df6dbac4b171e2d97
MD5 46c08d5543cee7a4fc07b107083bcdaf
BLAKE2b-256 0c9ac6f5a7b59b68f67588bc185b93e4062b7f041899ffdf76ebe47d2249bf31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f662475fbf5dc3df3ef4b7dff0b22f3750f637d4a45e93f36db114613eb6e5b4
MD5 b670c8290e834896ef322f537908f6ea
BLAKE2b-256 0e952cf31f092fce025ee9b44dee982e016e3a87e1d0226c575d6dc55021218e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 743a0ec33170b8a9f8c8af5366247d04b399313e7448b8f89c65290f90791298
MD5 ca904c81da7bdea0a52f5d442110a1dc
BLAKE2b-256 6948354696eb5d8e65c8b4f23b9617a55f0d9158b60d8aeee170215d28686e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 767aaee11f0b187cc0efaaab43a7113d5935c94ebab3a315783c3c130fdcba2c
MD5 d126721795a5f265f68c11d7bb9ee4a3
BLAKE2b-256 41767933c8601177ccc7db202e957a07fc1c19cd2e2e5a445c265da21e166dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 42ce163ad6e48c98cf0d9bbbd9b1f8ea9d653961fafa6221f5fdae783a439260
MD5 f013a0db8b0ba8398819e48fd67d7953
BLAKE2b-256 602277f96874e6490b795a63a9637554031d707ba5c91ff7de963cbe144adc07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad4d0893af6973cf877e47db84e89470360f76132ab78888cae9fccdcff2e664
MD5 5e0a4008c890cb525cfe5d5202304dae
BLAKE2b-256 4a28662ac5f9c68d8211549ccb090515baeec24c3628c46a513b3444e287c74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d25e882d70292b520484981c2734595d053cfb73befb6dc9a404bcae5cee6375
MD5 bc07eb89b2dbc33cf9689d8d84576411
BLAKE2b-256 40ec73ad70a46de852b1b2c8b8e389887735d61eae130025ec698a68b779a8f9

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