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)

Scores vs Distances:

  • Similarity Scores (higher = more similar)
  • Distances (lower = more similar)

📦 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)
results = index.query(vector=query_vec, filter=None, top_k=2)
print("\n--- Raw Results Format ---")
print(results)

print("\n--- Formatted Results ---")
for i, res in enumerate(results, 1):
    print(f"{i}. ID: {res['id']}, Score: {res['score']:.4f}, Metadata: {res['metadata']}")

Results Output:

--- Raw Results Format ---
[{'id': 'doc_001', 'score': 0.0, 'metadata': {'author': 'Alice'}}, {'id': 'doc_003', 'score': 0.0009883458260446787, 'metadata': {'author': 'Alice'}}]

--- Formatted Results ---
1. ID: doc_001, Score: 0.0000, Metadata: {'author': 'Alice'}
2. ID: doc_003, Score: 0.0010, Metadata: {'author': 'Alice'}

➕ 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)
print(results)

Output

[
  {'id': 'doc_001', 'score': 0.0, 'metadata': {'author': 'Alice'}}, 
  {'id': 'doc_003', 'score': 0.0009883458260446787, 'metadata': {'author': 'Alice'}}, 
  {'id': 'doc_005', 'score': 0.0011433829786255956, 'metadata': {'author': 'Alice'}}
]

📄 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.4.tar.gz (24.1 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.4-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.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.4-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.4.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4.tar.gz
Algorithm Hash digest
SHA256 e4e8a6c6d28073fd827dfa4853ef567d8e73ff83a44dd1d5c16185835e98344c
MD5 fa65887a61d0761078d50b66f4de6a39
BLAKE2b-256 0e07c5b2c92d2b237f21676bb9720ee105dae3cb8d1964ea252efbbaabf627ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ecc6aa614e66753aaaf5c45127d98e5239f4be2cf8405b47e6cc9dd2ef297a0
MD5 807fc9261f50da9e4c2f35b06e633e37
BLAKE2b-256 df437c797a8fa8cc1169e5288ed27a1df20b82d0ef8bcbdb43955af00a914a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a0e711cb2f79785c0a176aab1287eb3b4aa6a3d1dd4c8969d7f902bd5a6c7df
MD5 edf2a6d8f345085af215fe3c5a457460
BLAKE2b-256 a9fbc356f183417d2d788d5e38dde63fc07654bbb2a5d6e0f8ec157ed18b461e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77d04cf57513eff89aece2191025eb68cfdc1138354bd24144de533e217a8e2e
MD5 f4bf00f58f790bbf842ade2d089112af
BLAKE2b-256 3437de4f6929b26c1b419c5b6245853e70f89f1156fb2aff0ba7d26180fbfe69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f1ebd28592b8af6de559231c2fd3a6e638a98d69d6d68856cfe402b3b2672a3
MD5 1f065cab62ed046d58f7a6749f82642e
BLAKE2b-256 7bb77f4a17cafba2c7573d59ed6898d70255fbbfe572d1db1d83c75eac5e5b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4118835505ace6068724961c93da128bf602a845c44b760b154f11c0c0675f6f
MD5 860407364a38a9d1a4e9aa9ae2fcb947
BLAKE2b-256 7902626f9f7565fa47564a6823730a5b169f6be30a9ec43c4d43342582395e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe8730928d9120f562a84e07d1a539851e83f6ea14ad90c23d02ddcccc188793
MD5 0ebe56510a9326a85fac93dc3e6c3f31
BLAKE2b-256 434d2d8343124310965958adbfb8d6f5631c87ee28baa32504be10296dbed58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46b615341ab260bb50de57041e779e72c23bca5eb0450fbea8b898ed44a80d60
MD5 9062409acd1d83207c13113d0fdf50cd
BLAKE2b-256 8a96c74de8278804a419e8a9db8bd5f4a1a64c90bbae0671a3826a94a6d06a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 330479fbc3af54031885eae9d43be07ebffeff3ee0f459afce7a45f9bb50f72d
MD5 5bae5c2a8a4a2c7d7daa5ba0a8ae2a71
BLAKE2b-256 8a7aef51ec0a933f61cd44d11606865379665db43a2f972eac9fb8544a473d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb4b5acf4a69df822cad7cd18c60bfd06663407f6ecd3a840e6c35a808c86483
MD5 095214afd655eea9a1fc229a0427ea7a
BLAKE2b-256 f640e527e911ad54c999902b6f60edd2d4ce84ed0029f2e78250fda0ed2672f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 60a6d5bc2044eb89df978cbdc2aa0c03ed265a37c2431de39ad89442061493cb
MD5 2e2b74c3b7a44170a184160473118aad
BLAKE2b-256 84730ea0d0edf5ae432d18fd37515a721a1e391a1b7694e561d29f680e3ffc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ef5e43de692e23e072656bf41ad49165a66471e8ed8e7f86938ced5d8b61a21
MD5 e4b16d72073c6f9a7b8ade39f3352101
BLAKE2b-256 a83af65a318adf33c6bdf6988be3531e2ac4d3480ee631db7d41520da9359624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11e589423345bf7485dbf3cee83a33de6a670b87f4ca33b61e56ef176b017217
MD5 1011354b732c7ef695db36bbeedb2ab6
BLAKE2b-256 ab24698c9fc118089849c038a18239f9243fb95e4012761ea8f894853cfde648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b664132c853fe6046b06bd6c5eb8e5a59b1946bc4fcd139a8c4c8555c4d66f7
MD5 a8aa4fabd03482e6cf05d84bb3c57a8b
BLAKE2b-256 649cbd9af4a6735b280355ba89349a280c550b5629ff2dbce7a636d7f2400768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b65b1014c198d55207494c85650e9defd9e4a024074b06a2853919d99636527
MD5 90d32cdaa738caa57b3d5420cbd77c08
BLAKE2b-256 4a3941341de91f261208a2f5e5c649dc595974a8aa40fcc2d4c08fe85064d404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85f98d2c3d22d0c7cba59ce379bc62f628ba40d4049c6786d8a4f0a809b25a22
MD5 b008e7d52011c0afc1259c163b2f34ca
BLAKE2b-256 74751620906fc86f9b0b848767370e80527febfaa8514cb32416b1428cf2501d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f7e76fee2f08656e2eeeeebf8ebd5b6e7b5468d31d5e4bf1950ad5aaa22d399
MD5 4f06a8c6632f957d6eab5c53652d6b24
BLAKE2b-256 2548841e5a6a4afc76dcd2aa1ebb6b0ddb68cb6044295a495ce53de6b6ad840d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 247f884637922c946000cbc65b42f8c2f3efb9c0be33dbce19c4b5f835299a96
MD5 b05795f52b761fa0dbf803a111da831a
BLAKE2b-256 cbc2808dd9cd7de61e1613a117aea2a9c6ffacd5800f0d9d52bce89646ed4c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a72265a8ec7d94dc33aedbc82141951e34d55358214d25b6b8b841c59a08c0b6
MD5 5f91f6bbc2737f562cab57a8e71631cf
BLAKE2b-256 57ddc71c628b0e4dff130dfc6add5dd2442ec74bbc1c71443d2c30a412b5872e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6449bc6d47c1ded71c31cf35c3e4748e6f3c225cdba9e0386323da7f4f85bdb3
MD5 db5cf73a2c8d879291deaf757a3c1de0
BLAKE2b-256 604bcb7259fc8218ed9548c698d757078101b6bc69b8950b384ed955f58afeea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07666c8877c8c2ad9a57a49f40c656210fdcaaefad7b8be43971be0f0ed20fc8
MD5 1cac37caf3e452fe8f9658a05729ba1b
BLAKE2b-256 6e07aeab039f723cbf976905b27ebb2c5057905441bf18bb8b0f83d8469e8677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a2e611f0b3c57868858fbb863796d3492103233592068b0466e3e4847dc4e33
MD5 2728c5ca5a2a7588834d28871d6f996c
BLAKE2b-256 53d133fc78f46c3e34146853edcbb1755232cfa7d2a418c7892b014909f7d464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 78f59ea8057c3df212913ab408f50a318a9477949c6e724e103e1cf04a4c80eb
MD5 0a5fe81be0c22d21b39405937c8bf068
BLAKE2b-256 1a6a375a20d85ec54b26439fce874fbee6dabfe4cac4018a65bca8fc36bf12bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f607062788e44c14f734829060a0495a5342d0944ca09a4ab1ee0857c43b8d7
MD5 d3bcbc73f39225a674001aa52d5157a6
BLAKE2b-256 c7034998f75d74f7e4d76a4e8d93ea130445c253d2149341bc85865802f7abe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4684213de7c6ba33e1114f4bec9c40266dd07d84250811b976bd0d39fe9b429
MD5 223a1c0006cb928b1766c5369774f602
BLAKE2b-256 73791c7b0cee7d7c6ae1b3274d73386e60fbec63be59785e7d14b099235136f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60d134a0d1c8c876be6752584a3f833b6e1ed3e3ce4167e3bd012c7a8115cda4
MD5 3a3f13e52d979393f16c7203363addc0
BLAKE2b-256 b3c808784f73a559ccd153d5d2f64cc9e8d09fd981dd8aa158feee416c528aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d39ef2cc28d07bf793d1eec4aa2a11ee88f69e25a4e5fb03ba35b5d28e70630a
MD5 0755507b0a4441b80fac1f6d954951f6
BLAKE2b-256 283163be95678dff17a83e2eac64cf492cc84e12bb8f2f7a01294e9ec7fdd25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b47c7ca267f9a43b17640d727085fcc095b514003d56094a9ace1fc5ec46a12
MD5 be366e6ad748d9932bfca946e3c3bb7d
BLAKE2b-256 6bbe5b3688332aaf87f76a26bc9613a52ab384ea2830a826fac7363e1f0bfebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f702cc570de1d9b461e584d09f17011e056a90a3015bf29561302bf33ae8c22
MD5 56cec884b95c1f3c530088486a713783
BLAKE2b-256 11f586b9078ef4a33726281250db7a8b9bb7b025b744dbecd4a4d37f2a7caed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37edde2de415dc1d057136e44074f7604b57844b577b1a98a73c9adb912f1e81
MD5 2f4f184d5a05925cfa7bbb52606a7217
BLAKE2b-256 37e26c34614402319e520d79e987ef3bf3defc4659a0362f7abb7d1cd59b2f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f09f0902f790fe47439180026559e27c734d4a921fef4f5353b05c1a2b6cd041
MD5 a89e81f697780876aab072ae56d42fc3
BLAKE2b-256 68c7bc45ec6360a67f1004244d0a4197a78d8138034f38f0b301e1c2fe52b7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22e8c5e4db88d6d9f647141c8f57be71f17bc05b002ff0fa8679cc1ad21fcc97
MD5 aee90916212c2a983e82b017e39e2e69
BLAKE2b-256 100c056ead823657b13168a624dbfd3836f6ff3f9f2f7396565047d90b756dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 086af5edd4d7513350051de174ecbe11b484c2e4ae0157ed831e3b913a9d7dbe
MD5 280625e89516e63f0efe0009ed4aba7c
BLAKE2b-256 4449a0622a28e7cfab974aea6e7f0b2714bbc3940cb7c750abe7fedb9925502e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 123bd275cfcfe8e82536ba1eddeffadb8df108a0e980c56489c94ee30d2156d9
MD5 bb0e5c3f86f8b2c0e01f6d05087f4016
BLAKE2b-256 55d46efc3358f6a291c01e407360f91aa15c6bc09aedc896bb3acb8fe0e8bbeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd7ca92eacbbb5277d5f1631cbad0a501589f3087c7fb28f30e1959942f7beae
MD5 9a19a9ba288f4b84fa1405b6248017bc
BLAKE2b-256 729113793c3a02c56dc179d42f8d66bded4f36932288ea0c30cc5870df977546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b0ced8916549c5714df3ce440fd5d2e26aba0e778679e077ba0b775321b2633
MD5 1bf79da7d7f8ca360fb685b19db2c18f
BLAKE2b-256 dc6c4d7dfdfaaaa10cc429d3bc72184f552d127b46a8bab5b63cd44064aa1cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69e4b0ee8cff3f8747bbcb32d31a71196a6d5585ae4dcc18f543b37e2078cdff
MD5 1014c470acc5081e00fad0eb04c46fa9
BLAKE2b-256 5d6cdd42b4a2231ccf8e75fcf846309eec9247736b70878aecb7765b8514d485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f53b1db61d2f5cbf86ef22970c34d5de226c2fc3b5a0c291f9af9298e0433604
MD5 f20488f7f578789e574df1311408e00a
BLAKE2b-256 788db7a27d362ada63a17141d867d53f2e37e0a49f7bb412aade5bf7d6c76edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dfec8d65fdb5eb18a235a37933d81b05a824d4dba66f65696260af20f06b758
MD5 3540136a774cb769fda200c23285220e
BLAKE2b-256 50206bdcb2d7dc09aa7bdda55fae31904c77baf1ad3413ec2a5c3a29232d6cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eeac7c0a69b70ca29a8ded22926d174754adb81fb345c801d0a9b0c8629ab2fe
MD5 53c2694dfb9b883e455259b6b75a5ba6
BLAKE2b-256 f5a5640789df9b881575f741683cd78dd5e3953c05ccf8c82cee9379575b640e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 335e513d75849db047b2be0dfc744af9e79e1913ddabbece4c1e1307f9b4172f
MD5 8c8aff275a592ce51b26f69148144d78
BLAKE2b-256 209b34908e8baa78048cc01065c9c19bfb291e11653ab2479565fa21eec9a5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73f427f20e7fcb9b2d5f2c35eda276c1a60eefa8a84a0429fd51db95998c69ef
MD5 e158d28366d08435aa9b17210f1b3e36
BLAKE2b-256 57d881c54035f1256bb2e74b04f10259624826a562458668794ac81a03186327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ffa489a1a6cceacd3f036cbbca79a549a4fc8a980e8f720666b025500dd4c7a
MD5 89c971a7e7593b87fb82c3023fba16de
BLAKE2b-256 d29248ceda57bd8b080591210b65bd2feadf7bb1296056bc1b461042233c15c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19efdb2bd0c453485417d26c85dc5e08538d3c9b6e749aaf4dc132f9bc258525
MD5 3d97d076eea0cfe1603c83ba17c277a1
BLAKE2b-256 f31d8bb8c8620439a50d1cb42eab2f99f3e5f8d9c12338a7c0f7ac8c1190ceee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6cb7592c1b822688b19e03b8721ca96a79f77db22a9560bc3cc0b990c84ba62
MD5 02d8bca8c88233bdeca4491a0030c775
BLAKE2b-256 edb36ebd1bc3e68a1ad20dd15ac2c9720650e83a1ea9ace3ccb4a594fe3d79d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64c4a5b6de401bfaccfa548964ed20bf9846103585ae802373aeb97cbb794194
MD5 fd390022e6c38e86c1055a758b9189ae
BLAKE2b-256 fc5aef976465538ad4c94ff676e2d507d40c3d476ee380552ebcb6e5c9090359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 37ef372d9c613bb21b057df1dcdb85b30574fec0d550167e84d490abe428783a
MD5 3e2d442a049700d96a9656fa07631516
BLAKE2b-256 54de01d1808671ffd64fd732b63307a214035482c9e5ef985bacdd197f985d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ede64949a6cbec3a59c0a64035b47abdde6c0c158b6d487c3c9a763ffcfbf620
MD5 8ae9e07e9544418a55b91a06e30223d4
BLAKE2b-256 b32492efccb77997a237e2963440dc7da5b48c85d0f32578694f9b03d374609e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed9da2808d8ebe4498c0fc16cec46f259c6e1b2a931352e26e2e8e5ec0c2aecf
MD5 293531b280a5eb7474b49232cfbf8197
BLAKE2b-256 3987282aed65d29ac29ecc6198856c12f84267e39ddf2940f93c1b0fe0b16262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93f36d3cf246c4ea47103d664042e7a6954ea71ca6458680e19d599817d81136
MD5 9dbeb7bf62d44128e043781dcdffdd8b
BLAKE2b-256 50a21d752665031d034808496a2bffeadc2eb55d62bd53018f8172ceb9777146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e609e2e81dad94163922f30367796d32dbcfe855722bf823e4176ba5666b1547
MD5 2931b363738d6e0fbeb7a4b52e6979b9
BLAKE2b-256 fdeea110a0657f0c3bfd79a33c19cb0e06cd5ce63cc34c415ed283e87afe258e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b243aedca15aa18410b38f6feffdc7ba055cd0f53d0c3cff974c6b461441fbe
MD5 69ca6ecc5c262446a25be1b1517c3fe8
BLAKE2b-256 8662b88527c11bb8294850d67cb85a9a7d46e9a20ab324d0f24438b6786318ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 933a5843b4248f17f59f258b501afef7298f15ffe6c9eee09f4847f4d98fcc48
MD5 56283c7471f08851971da2085a847f56
BLAKE2b-256 723174eac834dd966c9e9ab9e8ed1656e1e0ea50271b65a8dd9cea661e51ec42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8b951505017d943a0dbd1408c841d255292890c305c639b3b1148ac4db69de2
MD5 ca2d9b4e976db318d2c15db1802fb0fe
BLAKE2b-256 1669ec10ac8868b9b2e44b954f3c24ade028010cc9c909c592a910ecb2394ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae49df1dab7ce8d5ce48f8829c8ede367c4897dbd6467d2a8d90f06956d0cc4e
MD5 908b0409e83d46f4f2d772af426c9e24
BLAKE2b-256 d216c29d6854de86b9fe1ce3bc98a87106109dc08a0f042731c9d78a2e67c9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5410381da5da886513728e99785c2f66e105875ab4ebea1e6f5b16d5f33d840
MD5 b7c1b875d199c6dd81c7b5e595a0d520
BLAKE2b-256 507270344406308c14716d59b3840b6a387e62bc5718b9e2aecedd1ec0b6a28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3108dd1a9611238435779809b729a66eece2cf4d816ff0ee65a9842b0fe9825f
MD5 6ab2b0d7e2b8f34164b2dc7f7fe6eb99
BLAKE2b-256 183b4922c638242cfd1a7979a2346ec133a0ba28cbdc6c39026eb6137f5eae8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc638d36706e53baae3705e29f4e2420482b55daa16d38056f142e91acc46ebf
MD5 50e27bafecc5fcac3feab7086f5ebfc5
BLAKE2b-256 e0aa32c89f4e541748aa0e989e52790a25a2fdc28d83237c694aae72af2e986b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecc344eae7beefaa54fefd8a6197a2470001ce4ad65a8719163e7ed2c7d2d7a5
MD5 0d5b110ae1b77f729f8bd9eed024630e
BLAKE2b-256 6b3e014e955085887bf3f0f17866773d1a3603f9f0dc520c833cfbbcded7b1f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fa4671e65316a0007284c303510a03cb3023a6647f0a424b5f1d3b7fe54d04f
MD5 786ad43e32a688ffa6a0b720299b5527
BLAKE2b-256 0523f6affba1f0df279c9029e4f3d95a27b0d20394be72ba1e46c720ee39350c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 92fe8fa7a9548fcddc059b66f75a78d71268f90f9edfb9e6f87c826df459996d
MD5 289a0e91ca4a7211909e81d606e3bbc7
BLAKE2b-256 a91e1c66b21ec89847f54794d735410be5d354c5da8f6d077be69afbef2f8bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04ff8325e17fff5cbc0d827f082f2201e175787050688cca4ec9fe2d5e70c079
MD5 97298ad72342463097c069c3978cce15
BLAKE2b-256 ef65ea3683e5200d74b3da6e199329f5839e7058c46f0de6d64c4a64b8ec1c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ddf61643f194db15ff80b92c95e91fd8798c1eb8697edf09c0741e866e7021b
MD5 d95df62040215c07d7905ceb64363463
BLAKE2b-256 9a3f700fdcdfeddcce5924e437f7b9f82da82491917ba8bdceb1da5f327f79dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d28e8ab13f3198ad84b62e08cc8d8d4eb7d090bed514cb291b6391e2c03615b4
MD5 e98c2618bee26c0c6a8ca412446c5d45
BLAKE2b-256 f49b28446adad8da0d4c279798510ba2e52f630736c47dedc26c710bdfef1831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7e5d8aceb586538e9960ded6805796d2b8b49355827be60ec4d65baa91d6935
MD5 09945f4f139248fb845cb8a7a1705763
BLAKE2b-256 d580ec5e959beb4a916d04c90f8c1ee5a1269bc503cbe842f3e05cf33fc03349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 decfeaeb4984f5e31dfe20140c6b7d2cd285e4633b51060c5de2d25c40c869f4
MD5 bc01c3298e040448f458e26cacb0343c
BLAKE2b-256 05a2cdf3e43d0ab9450255226488e553c41840a2ed2d4896e1cb7ca2a9d75f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 806dc76a63b134366108f58c020b61347f7d8fd8923b70a2636b5b3db83af00b
MD5 5c207ebaf6506240ea41685bb2dc5c87
BLAKE2b-256 9d99565d22f170cc59e95526031fe30261f3d06a421f457dfc7deaaec321452d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3ea2eb4fe58e71d9785824f68e183ef1f7eea3456061a88cdc0d33b2753ac77
MD5 ff5262af7615fd1a8bfe04a296106d2e
BLAKE2b-256 a8901a809db210cc8d74a881153475756dc9bfb07ba1386f8f442fa3686ab392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43bce09f07b2acbbfc5aeb24c3f8d438349e7a3a2d364248ae2925c9113be068
MD5 da9d8d06326c590fc8419d6176971e52
BLAKE2b-256 2e886f287b9db1fd5313079e1a00291257bc066703cfc9d438fe8b95984a3bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa8ee5a65d909fd0cfeb3c00990e82fbe6ccdf5b359b8687e855affc2796a104
MD5 051dee83867e4ce4d3ff02b23c3ea308
BLAKE2b-256 fc9e057ce4764e1d4ec4f94412fd1c6d316aee1d6402812ac578729a4102e194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61cc362ca4e36cb5d44ab530e5a2f2ac35b399b9e0531637b3f688eb3dbe371d
MD5 2d470f127da10d3be96bea4626304dc1
BLAKE2b-256 12f8b3f3575403789acb70d1689c21520f6b97ad85f94c88b03d176b11fbe972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82511112553ce9ce6431d61fe80daa766d3ba17b57269d06986112c7e2cbb315
MD5 db206bcac719aba8799cac782237793a
BLAKE2b-256 7a4dec00752be8f1841a5c760f3232f03a7c3e083e0bc1d37dc12b1afccbfa82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ea6dafd08b5024376fcbc20d0c6e6985dfc71a523d2ef6d3f9670fb4b768baf
MD5 82533eb7f5d4e29b8293c7bb4185510c
BLAKE2b-256 930a1fc4c3b6f8f07410c242df4b272e7edcb68c6a38eae6536f74fc196d4315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5db99a8115d88bd2dda97711eb23adfb59f4774a4ee39d7d91075794db6624ca
MD5 8cc0c2ad9c79f54c8a5d982b2eedfdb3
BLAKE2b-256 17c5750de4870fc440c093eed568037841a767ec87e01d28178c6ed658b8a65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 62a9d613b444478810aa151e8214964b87ce7dd3a300224fab8feb23b382ad9f
MD5 3545cd81f7d5cf77fc8be9be0ebff506
BLAKE2b-256 88d9262eb84a04de93353d8ea798e510810ad99a770f66d9c2a8b8a39e54a176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ed6689a7e12300d38b1ff47d9f0d8909e5dd7ef75d13d4892e5aed8fb103188
MD5 b3c685c161660fed354ae4160847ac6a
BLAKE2b-256 8cefd09c336a00694757a9095498cf8929310859ddb5a804644dc2470998804f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f46ed42df5463fafeb43d4953c8b29a60ffc06360f35866de324c9e8b5b67b49
MD5 135324047d22805475a3ede682a2bddb
BLAKE2b-256 d43f2eb720aaa160ec7187fa3a99fcefd1131f09d88c89ecb063a213d32a0198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 757c602c8f927fc8e86b10c289394f3e754588eab44327b6611e2800e711da90
MD5 09550401f111b49722b06ed1dd2de0c5
BLAKE2b-256 b48144efd4818c61f9498e0455f7f0b92c5ddab4f14730d6036ec19ea971f6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6ea85fa880aa146e3b99f8440f18c4aa5abfa9bfb8d2e65814af908169ae68b
MD5 159f13f4183cab46a2a77dc433efe2fc
BLAKE2b-256 43b63e7ade6459a5981f82c611ee28b0c420af0cc8eae56fd634186be8d82da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dfa8ca6f7cba0b389f2fb759df736afc75b2200e97c9deed52e2bda14bb1077
MD5 0f4553275d2261ffe6725573cfcc3410
BLAKE2b-256 2d2f0b7390188ace42b3591f52212f481631d9665bf8135191c2091f94013c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5783df17fd4a2f9183cf4d343b3b68d51e271c4eca47ac1ec931a48f3dceab2b
MD5 282f824b99f9f8618b06673398f05422
BLAKE2b-256 a8cea2dcd6eec1578ae6aae35807ef6158f04688594ffb4f12046e2339dc493c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c95e31557d9cb2eb1b1647cfffc05c24a0e571d72e74887235f1ae8dd6a4d45e
MD5 8dca2a890f1ce2a8c28c5e1e5fde13aa
BLAKE2b-256 6ed74371f5504b4f9c4f59aa86a265641b078f6a38c8fffa7ce0be08fb37d808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a9616261074e54a42bd713cce88a27fc3140d1ef32fdcaf5dcd35bcf4b1ed90
MD5 ef3831ab85f4aa23f93d5cb76ded27d1
BLAKE2b-256 858b29ddc7e2e5860b90bdffbebc5ff9ad762dbca1387180673afa1198394ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b36a482a681abbebb16be89be566a97c08cb6e25cda48eaf60c1e362c89ffeb9
MD5 94776c2254b86b4bf1865621ab86ea94
BLAKE2b-256 e55eb5e2e60950fafd1948691b2508642faa03f8dd839df45a196d0761d8e0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 163077ad3653f9c52ecce428af12664a0d8fa1b257af720a80ccc98ef660c6bd
MD5 6c3dc53cc71548631610d300db1dccaf
BLAKE2b-256 a47d817d1656423bd316d28d7a36285f620d279042310659b8f34f0f3c45677f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50186dfb4c3294d7deab387559ca3a006daf010ee0e26f2111dd51ea57ecf8d2
MD5 b1e1551d356eb709dbf7f7d6a9162cd2
BLAKE2b-256 01877b5926eb801a30929fc3d18d2f27a0b3a9d985be7cbcce2033014f5afff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 292872660fa0cf00559dd71d19c89cf789d836fa13277341e079366d04b41bf1
MD5 df776f3cf819c2a30e71baf72b679916
BLAKE2b-256 52737d6f4348079a2882cb7e1480195af50d2a27d6dcc91d66cca2be1c5cf29e

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