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       Powered by Rust  ZeusDB 

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

🔥 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)

# Vector embeddings with accompanying ID's and Metadata
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"}},
]

# Upload records using the `add()` method
add_result = index.add(records)
print("\n--- Add Results Summary ---")
print(add_result.summary())

# Perform a similarity search and print the top 2 results
# Query Vector
query_vector = [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_vector, filter=None, top_k=2)
print("\n--- Query Results Output - Raw ---")
print(results)

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

Results Output:

--- Add Results Summary ---
✅ 5 inserted, ❌ 0 errors

--- 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'}

✨ Usage

ZeusDB Vector Database makes it easy to work with high-dimensional vector data using a fast, memory-efficient HNSW index. Whether you're building semantic search, recommendation engines, or embedding-based clustering, the workflow is simple and intuitive.

Three simple steps

  1. Create an index
  2. Add data to the index
  3. Conduct a similarity search

Each step is covered below.


1️⃣ Create an Index

To get started, first initialize a VectorDatabase and create an HNSWIndex. You can configure the vector dimension, distance metric, and graph construction parameters.

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

📘 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.

2️⃣ Add Data to the Index

ZeusDB provides a flexible .add(...) method that supports multiple input formats for inserting vectors into the index. Whether you're adding a single record, a list of documents, or structured arrays, the API is designed to be both intuitive and robust. Each record can include optional metadata for filtering or downstream use.

All formats return an AddResult containing total_inserted, total_errors, and detailed error messages for any invalid entries.

✅ Format 1 – Single Object

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

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

✅ Format 2 – List of Objects

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

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

✅ Format 3 – Separate Arrays

add_result = index.add({
    "ids": ["doc1", "doc2"],
    "embeddings": [[0.1, 0.2], [0.3, 0.4]],
    "metadatas": [{"text": "hello"}, {"text": "world"}]
})
print(add_result)  # AddResult(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

✅ Format 5 – Separate Arrays with NumPy

This format is highly performant and leverages NumPy's internal memory layout for efficient transfer of data.

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

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

📘 add() Parameters

The add() method inserts one or more vectors into the index. Multiple data formats are supported to accommodate different workflows, including native Python types and NumPy arrays.

Parameter Type Default Description
data dict, list[dict], or dict of arrays required Input records to be added to the index. Supports multiple formats

Returns:
AddResult – an object with total_inserted, total_errors, errors, and vector_shape. Helpful for validation, logging, and debugging.


3️⃣ Conduct a Similarity Search

Query the index using a new vector and retrieve the top-k nearest neighbors. You can also filter by metadata or return the original stored vectors.

🔍 Basic Search (Returning Top 2 most similar)

print("\n--- Query returning two most similar results ---")
results = index.query(vector=query_vector, top_k=2)
print(results)

Output

[
  {'id': 'doc_37', 'score': 0.016932480037212372, 'metadata': {'index': '37', 'split': 'test'}}, 
  {'id': 'doc_33', 'score': 0.019877362996339798, 'metadata': {'split': 'test', 'index': '33'}}
]

🔍 Query with metadata filter

This filters on the given metadata after conducting the similarity search.

print("\n--- Querying with filter: author = 'Alice' ---")
results = index.query(vector=query_vector, 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'}}
]

🔍 Include Vector in Similarity Results

You can optionally return the stored embedding vectors alongside metadata and similarity scores by setting return_vector=True. This is useful when you need access to the raw vectors for downstream tasks such as re-ranking, inspection, or hybrid scoring.

print("\n--- Querying with filter and returning embedding vectors ---")
results = index.query(vector=query_vector, filter={"split": "test"}, top_k=2, return_vector=True)
print(results)

Output

[
  {'id': 'doc_37', 'score': 0.016932480037212372, 'metadata': {'index': '37', 'split': 'test'}, 'vector': [0.36544516682624817, 0.11984539777040482, 0.7143614292144775, 0.8995016813278198]}, 
  {'id': 'doc_33', 'score': 0.019877362996339798, 'metadata': {'split': 'test', 'index': '33'}, 'vector': [0.8367619514465332, 0.6394991874694824, 0.9291712641716003, 0.9777664542198181]}
]

📘 query() Parameters

The query() method retrieves the top-k most similar vectors from the index given an input query vector. Results include the vector ID, similarity score, metadata, and (optionally) the stored vector itself.

Parameter Type Default Description
vector List[float] or np.ndarray required The query vector to compare against the index. Must match the index dimension.
filter Dict[str, str] | None None Optional metadata filter. Only vectors with matching key-value metadata pairs will be considered in the search.
top_k int 10 Number of nearest neighbors to return.
ef_search int | None max(2 × top_k, 100) Search complexity parameter. Higher values improve accuracy at the cost of speed.
return_vector bool False If True, the result objects will include the original embedding vector. Useful for downstream processing like re-ranking or hybrid search.

🧰 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'})]

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.5-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.5.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5.tar.gz
Algorithm Hash digest
SHA256 077b3611289042f366c994eb84eaaf778177899bbbf38350c53f0063fd612825
MD5 5b9245bf055648ef071cb5a9a60c5767
BLAKE2b-256 10b08618f8b4a24ac22c5e816fb93b76ca49bbf917f0fdb68fc0e55240ad775b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64db93cd911ddaf23f41bdb10630501da7697fe173d5a58a9e54a7bf0fa20834
MD5 d13c003292b1bf2d4351fb5cc1d63eb5
BLAKE2b-256 6aff3af74e8788cdccdb9e811294b89ca403bc6e53a561a803f496bba15cf7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e43871aba7d69a18d6e6e6b820b384e1c2831d911f19ce05dd6e470b3d7197ae
MD5 0f5a5e50b61ee0720775c76ac9ac6e4a
BLAKE2b-256 9c187abc8e76cd4845bdfa34f214aa98c6bbccf4a1f524ffcc89927c8aded4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 535ef85aa87104060e44e231f7c1a456c6d12de0cc4d4f2d08509e4df39e158b
MD5 0c51e474bb08be610e58c054a7f6ae61
BLAKE2b-256 57b660242ce130b4a505193480ac10de2326605d421977d25abfc8d7664c3b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a32443b33e43e2b1deb2b4c716e1cb7f39398254eaf7b8ee7f232f7f41de14f
MD5 8b893ca6c6993b891abe777ff5813ff5
BLAKE2b-256 7e152f72e129d16044a947fae176c50e7f9a5cf0310aaefdc1bceac6445aa8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b67401b4781b73286fc9ecb0f6f0c31e28b6b22481fb92480f679c8b28dc433d
MD5 a173dcc3fc8a6c80d05f22b7104d959e
BLAKE2b-256 78373abf3241a6ba901a6333457dac79e45da33b7580befee5582244f6efa19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16dfcf744963893c9a059638432448825746fd1e2d174b0f6dee0a7d214ce5bc
MD5 6f815171feb2e8af4b1b7ae42cd01fcc
BLAKE2b-256 b8823e41093ee5381e1ff139b70cc11db83816a0902a9ce8c97003a9414113a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 567dc997317a7f560fe26547a575bb9d01530aa719820051de51cbe144cb425b
MD5 30e85747a87e0c084fa97d24224bfa35
BLAKE2b-256 0f14102cfbf68c1cc791e564bb407124ca652cf7f3a20e23538f930e327e0b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4a4220b3f060e63381a1e1b9865a068621e75c164e50e4471aee0c87a16d5b9
MD5 e455326cb52b19903c302c52b415cb01
BLAKE2b-256 1e77280ed7b5a8c19c8d68ac4a96cda1c905a9a47c78ed51efdd049f9f1daf81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3553420a8274db84f209343bd89f63c14445afe953e425f6a73f97973a17d9b8
MD5 9ae3b1bffd84aa624fa76a71935d05c3
BLAKE2b-256 e0b5eba1584b7fd5474d85014f5c827bc06ca6bd51a64751aa5053a9e0f82de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8740d3b43b4c78444b81d819cf870f2f9270ee60ed2b7345948af74a5023ae8d
MD5 5bf4dda633928f599aa14647b6437b49
BLAKE2b-256 ac2d2b213fb9c81269e81ec413279a6578a3e7dead9ea2976e0fa00eaa4d7396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb3e378bfce5e3719ab2402386fdb7425ffc4de787f6a566e0cfde3a8b215be8
MD5 0a40ff5899159ad3c4a74e9c20f22a25
BLAKE2b-256 796c2f3228464a9e76732d16c5a9688a997bcdde745c13013c439b1d494d0138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f0d990f181e559c94c93137ebfb73ef397701c58e2dc1a2edfb9946e761c6a5
MD5 621132542e8a006597d3f13c9afaf7ef
BLAKE2b-256 a3ec7214b9c57f04a195e22d2a0df185a398e279e8458f5cfb3cba04ea00b5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee4f643ebadf5883f053db26f5733ae91f27c3fa3cc8a3fabc28d7d13b4cd231
MD5 1d3bf31c106f6cdb5d38322ba3a69e57
BLAKE2b-256 cc73eb574c2132a5f27db04aa0a040458fba2583dbb12638f3c4760635da6558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba4c98291624fb261fde754f0b2deff08490176c77d55662ee7a9354e7ab3ee2
MD5 6e9e8ac26f93797407238c629415b159
BLAKE2b-256 ba210165f3f8545188439504539240ebb11cc079ce942c6d45f98150fe0ef0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 621142d36b9a843d487e95573e6a8e569e5411f8fd0407a48b8f10f374a0ea43
MD5 62f9fa7011ae73b552715f120f60131c
BLAKE2b-256 2492c7483a3d296b76cd75b3957a6bb98401dceb45567867c05afa8ce6778f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 682eb149ec799f4c723aa12fe6061599a8414bddd5fd30e331db420e33589534
MD5 0b94f6e9e5839b7cbf92caa864d33a73
BLAKE2b-256 466d6e30579b391ef659cffa98bc717bb1475c1e8f430e39dbbad4c75d0da730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baaac86bfc1745a564715f28858310ae03a4e33cea1d3e1c903b50dd7520b704
MD5 543b5010db179bd5cb7dc6ffcfaee882
BLAKE2b-256 4d8f6eeccc208a47d45dc96f537c378b41a8298f1e1248907c4fa180f6d64750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02a7073b31bb8d33407938250f00262316267f4754246406dd7d5ca30349fe41
MD5 93b573571e0444780bead8f3f0209c43
BLAKE2b-256 620999d59492be1969942933a8898d940114b1e364f6b45e0b170e549bdc1ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e403e5851ed227c493a4ae75d6cb478f1bb7cdab0aa46575ad9383151da1399a
MD5 32929f3e6008ea758e47b7a13d7f799c
BLAKE2b-256 184da0c9f88afa2ee3ca20218142c5e625ea45672a803b98020baadd9d5e9afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 145ea4124e751d28914321cd240ca172113f8bfae2891dc239233f4a539b49e4
MD5 9a3052a13c167249b00e8c9a24a24c9a
BLAKE2b-256 2ae819c57f891f99f24d25c4a0d53e6f40bf72ef3ac790ae75485de7de6a56be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c95c97454c844b80b04a171374bee4faa7af0efc8030c1a344b57fba0da436f3
MD5 2057dd76a167c85afb1901a82a9df819
BLAKE2b-256 acb171bd1552cb1c7efd137acd8fde0e59d03bbcae352bac8d0fa322258321cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34224e1ae423c4ebbeff3e7657dd20c6cbfbd8b830167681e72ae106882a5aef
MD5 cede3e630898666a9be7a5645b90055d
BLAKE2b-256 03868b55b2e12df6810676660fbbb73adac2f3a00b5e9d1acc9b8325b61c1555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c90d91ff8ffe801ea1054cd1833f02f301ddbb32180f3c55c410227d1e8d715
MD5 5549f1d7ccfd2f81798c99783f7f5244
BLAKE2b-256 1787d053dad0b743a1055c375c22571a1fdc48c52a1b77bd3a96d34a432cb355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64821731226d6337c668aacbde225b0ab3c6e04da3799a02d01f07b25b4ae73f
MD5 a5d2c7a06f4a321dcac3d2c9eebb2703
BLAKE2b-256 04e592d171c717e3928e8468986ef794ccfcab230e4de936a55053a4d8a62364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec6d2e0f245b89e7473cdb579a6cd05599e25e709d87555f2ac36ff61f64d3af
MD5 b1f45eb5535dfcf43f42b4b6155a7f93
BLAKE2b-256 36d209273e96fdd3469014e682789762c1bad033bf30e8f93aaedefe094919a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5daa4fa020d07ad12d0c16b3ff20d473b64a8d83ed3f1fee0e849d8e0737e2c4
MD5 e45376eeecb5bc00ebc479b148bf83e6
BLAKE2b-256 3e0d32705834ea263d92ffb6c810253e7218661f3cbd44fa05e8190f750277d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c94c816073d025f321bbf76636148ef7fe6d3a68ff86c5e9768fda8173f7064
MD5 45b77a5ba879179fdd810f020d43495b
BLAKE2b-256 42820bc0065d564fdb26266a72ad599c419a2de6fe6b5c230941293a7a5259a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70451f644d5a2e0b9c1db4c218ef2b4eadfe4d8d1c43638fbc9575dfa96f7d1e
MD5 3b866c0ab0af7b445882c806c4f434eb
BLAKE2b-256 6186de47a1ee7a60eefbf1aca7f2dc3be06e88c759ef6b7da6791242574fcc0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5db265285e8137deb49ac611c7eda9e6f7445682b879c71e3f4c14e1a61da169
MD5 078f4c5aa3480585cee9539d17bb1f1d
BLAKE2b-256 a06f81a04e403b7190a53f8fb793424383f39c0490a80c25be1249ae165d02e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a48b91665949725b8501885de14cc52bbca0dbd2b43941227c81126db84cff
MD5 114d9ffe5b44c80e9803c336ea018af0
BLAKE2b-256 3ad81478604424dee23a2c4830c74ce733e5ac1d8b014955d25d7c3b651cb34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a0eef1e6f2181b305a6e0135a93a27cf968ab38ebb0faa3609b71b00dd6b77d
MD5 f9134f891fac58499621d41bbc675d5b
BLAKE2b-256 49627ac40e26259ed4dede50ed00d21892ccff51df6998113802c61ef1c02a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0863760c7aaf75fe3df0aac0ae5a358c58e8544f01d13a2246eda9ac16017834
MD5 5f04e23622203af228e52e119806c666
BLAKE2b-256 4a2de9472ac0bd5ab1b7d898c432f30cd9747d590fde2366a61ef618b4e1c169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5570d36704a0c1a0d89517efe746eaa77234dba0b9bb57f7114ddc6af89ecd60
MD5 e912edbd19f0935422eb6d28ba8a02ec
BLAKE2b-256 a37b5db2dc561b01016e52d1092fcfb01874f7efae839bc08f4c5f060dc9224d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4eddc6055d4f11ed64f9bd06d9f84c738b9158ba3141148886102d8bc4eee405
MD5 19cd3861e48f9ff440120c433a0a0037
BLAKE2b-256 f17600efafa82b79f1a6501896cc20aaa3efaf4f79c2ab8e5b894ace6898b195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a75aa7474e0cfab06a2e9256223395159d104b50cbc4765280c36748e108d8ac
MD5 b941a56c892aec5b23966c31a32cbce9
BLAKE2b-256 957718ac483c6d37cf4c0015c3e34aa682ff7568705f881b9b5bf843d4227bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e554b520accc70a481d28dca587174640604ce6028ad5430e267151588534ea8
MD5 46676b49bb1edc45dadf8f33c9320196
BLAKE2b-256 f2d4ee4ebf62ac81c7c4b7058907bfa5e46d9ee88c5aa73014a0ecdb9fae867c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef42084528d7d4addb19396fbb649e13693f8f1b184b1bb7f529bef0b5cd16f
MD5 ae5f46bfa22cdac66cab9d12ea70028d
BLAKE2b-256 4bafaa8104d30fe6e2129f007e7a8dd35572746cf4b1c4e2a56e2f5891abbd63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 632eb6ce8b574d567eff8d598898010d2e92b83d74f7fb307d01f74798b89cfa
MD5 6a91429478d41d8a9b79ec39f75ead00
BLAKE2b-256 0c1b505dcb7eafc099ae040e814073baf244a1f0a63edd037da39ce831006259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a37b4b1c7e4378517710940218889b4ab25cdf5b58b2a3580f4972be36cf30b0
MD5 8ed754ad6511dc6a908d23db562479f8
BLAKE2b-256 15c0c3a30d14dcacd4ea8f6839d772c3285ffc8ad991db433341ed41ba07c55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ad0771dfa691c78b543a14e8b923e24c00b3ddae043177753a82a85fe32a43b
MD5 945a0cca0599044f56f0bb20a75da56e
BLAKE2b-256 9c80a5a856ac33fb108a6b9269c3ef81cd261cd3b7568a2fa14daacd4c2a7339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cd20a2e173f09c36f2e3ccd2e9ad57a64f70e964cd607ed592f59ae6a7e6ba3
MD5 b36a91871529045535132037e1da7e1d
BLAKE2b-256 e0b4283f5d32541fa5ba07977ef24cc14a216e41348f03bf54c5d8a7191ab4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e3e6fc4b0d05975bd89b90a0806fd3b640a3c49aaf12520150c64933c142423c
MD5 ba1bda84f22463e6e858987927cbdb27
BLAKE2b-256 022d86df28ee4b39303b6461d03e0e401fc600c788e502d5225a927a2e266709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c7ce8503d7db2957b6ac1474a7d7a05c4290aa931704839ec96d399dac53cd
MD5 71c4e919d0cabd737df05523099b4a9c
BLAKE2b-256 daa1c4f1fec592938f5ae166c1b88afefecc1ddf790e4e789c8c5f343707eb4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae9ba9a100b478e27162812de314cbcd05b0c79812c72bdf45eb97b91f678a70
MD5 b390b68d196cad9dd96f278c813722f8
BLAKE2b-256 4ba67fc615804309ab7127059fbcd38605e404b5b43774d4f314dd7a31163b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 07952707dfb9a3840ac9ddf2b31f0d831076f38a4e1e1830377bdc469a785618
MD5 3305f9615303709496db0b18812a9f0b
BLAKE2b-256 8962030fbcbddb8857e2bb63fb4c6cccd132fe5969ba0a8e21ea2a2fe0ca0241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7f8a42c9eed9c0e06b415614f6f47786a9f3b678726b2c48881a8f4cb6d21179
MD5 d41c7bd9cac5a74f3e5c7ebf3ddda967
BLAKE2b-256 75ae024608840e1f980487e4cea43cdcdeb307eab7fd4a5f855a7f5d6647cb41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a329d5dfa930f20179388d0f5794570cdb85202e9b035152a8d6239284b8262c
MD5 6a263597bb01d2a43d80dbb8ed371921
BLAKE2b-256 61507718b123fb3a87556cb253a9c64417198392b22cbd01b4f6b7889bcbfac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbcf9d430f96b274a67835386a13be5f19a1f8b499ba9bf6944dc623810b59ea
MD5 6d89d7a275c8e5e5d5a73fef20e345bf
BLAKE2b-256 e95d0e7eee3be8c8410761b55fb9ed6ed969bd7e2d1f10e8fe276499b3c363d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b99e3633a88cb6d64f60e037ee2f698245ece755a3b93c1c412193c893480c4c
MD5 f0233c8d5c41988a41a92286e149cf65
BLAKE2b-256 f152c5009cec905e148b2c741450caeb562058c01f1411a84ea097754b9257a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34dfe807934350262bac662a10e429f550bd7d8bbb87e20997eec7d6e9e07153
MD5 fcb3276e3e9a83bd2af83a1f572fde63
BLAKE2b-256 20cfd322a9b7f3ea79393e94d05c63e907fa88dfefd2ed199fc500c916b86280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6605ffe50d2f6c6eb7e089e7b709261f8b3d512c8e76e3d5be748dc7d9b5de0
MD5 c0d1923a9e673c38f245aefcaa88309f
BLAKE2b-256 f24fea3d5e8177e35fbc6a5f445849e7bcb9864d2febc955b07e21cc48d52c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41479730fff6ac88c50839aced9a4610c067fd6e5cc08eed0eaebb460c054ce5
MD5 94329ca01219bb66afab80b9be2c91a7
BLAKE2b-256 e307dc029852cf35f6771f1d9682f38eb9d4599dc4336fc42f4b557b74faeca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56d4c69c9b97f303ffd162c46b81a7e3bb21dc4a3fad5fc6c70b5f9c51265fc2
MD5 f3565df36b0d2113d9cc00c0baf1d20b
BLAKE2b-256 fcbd89133de077489f5722ce5f0d0c8213e2e790140779737613de4186fb6a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f0b5047fbfb9fd01e5a6c539ac9006eac651418c3bc1dec3dfd4a83bf328c31
MD5 97353377fbd9ad3324fbbf6c9939a9df
BLAKE2b-256 57a98d2a002226352da09d36c5ff0f8dd074e67044a86d9d10ffc1fffeec932b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eb92f01cf79d28601eaf22bfeba9b340c3af72ea4b0b4241e29197911dff08f
MD5 9227f37bc2ddf865556a158e1ff9d68f
BLAKE2b-256 d1dd2a61641627b4df081ab39ea0c55ef83a861e42cc901bfd798d97210a24fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bdecadee66b175c79dbf8134e58f55d11452bb51027690b333319570b82e7be9
MD5 29d279a381ef919d56ed6e7c27f82f2a
BLAKE2b-256 ecdf67e48ee4ed4b92cb1b6231161bb9e3326c0bf83f1a04814e7c687abfcc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b460e31e6333d4401dc8d0b0a1d730a8f7ef257e9a6477dc1af4a5ea2862b19
MD5 fcee7df6eab60aaf183ea7279734b120
BLAKE2b-256 86ef83fb784d2e71dee3524d6e2f91014595ac07baa65b3e51d92cbe843c45dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94cd82462abab0c996477287e833fd8d40299b8608b39756ea777337ffb63b16
MD5 dd45de9a263d6e02cde5d26707ca4aa2
BLAKE2b-256 0f53fae5bd03dc9aefbdfdc19ad695ca5c9e660a78a5f41b692dce9dad464cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 65152978e9a244a1a0d348660a6947770f0c8750154968b44258174e46c15647
MD5 532929a9bd6b5506e2b4da364b022112
BLAKE2b-256 3f3280d50dbe3a1915278c53241cf118fcb01603d3b4d3ffcb054fa16325f553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ef0a2e4eaae6d27e10633873059c2b7340b2d62aa9417451a3f8b33e3b2d5aa
MD5 c1e379b5bb977da7f447d0bfbb02f215
BLAKE2b-256 46fa6b5d681aa6c54b632f3dc3dc1598eba188c935f746f426b52f0a7e2a85cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed4e2ccf824c795096c89e6eb394543c52306366dae9dcf31a4f2a87304f5d95
MD5 4b14e4467461f06ea2f66d1a1169cd87
BLAKE2b-256 342d90cad25917b19589f957d0c369dbc6a4b85ae6d64e9da7228846330a951d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 150a009c8a24d5feeabdf9321c87bda67f837d0cb700a39f0f945eb74d59ff81
MD5 9f85ff0fe0fee052d022f84eefa83142
BLAKE2b-256 921b015110cbccb7566194cc00de664cb50b94e1468cff9cf024827c8284e1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e51e36f53ff124cfe8477c6f2bfdb3550437aacdd4388ed1900bffa973192f05
MD5 5b53d15c217bd1f8e369e58aabd5b3c5
BLAKE2b-256 754e7ef4c62ece54624abf37b5fec3e1f16748bfe02f23080df95a9d8bb3bfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05bf70ac29c2cbc693e2d33aa6b07b96756cc1ce2c916ae9dd987fc89b6e448f
MD5 46af17e88cc823cea0f0601fd2f03f27
BLAKE2b-256 403897b11f1431484361a3c3948220275831703cb9a7533f9fcc6980d9fb210e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f1931ea873580e330618cda66a7d93e5093d6cda5ea0de3513426ae5010a075
MD5 3b8a7e0b1cf918691d3275ac4f95b0a3
BLAKE2b-256 c93f575ae057f2dcb92aca5072caf347644e35764c775628508ff0b1dd01e547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8e4a1fdf73bd1de44e6a58b70afc0f8cd50cb7455fadc0512cfa6ce429b2fd7
MD5 9833b01fc1d940076576d66da0ff6229
BLAKE2b-256 0107841142a98099adadbc5c870fd69ca914fd42b67c20d4d505c64a1aa1d6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85154257ec2f4b7213079d59172c1e1ca757247db433f77e7f74f00f970ed74f
MD5 c0425c50779f540d0b0cdfd55668023d
BLAKE2b-256 60a1466eff4e688f5308f77f21b2555d6de119e81ceec1a600e81d93a79cdeaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e134fbdbc684f6bc8ecab80e8694e2774d00f5b4ef5bdd3be64c2a41bdc1af13
MD5 0f6db55b839703a684e70cf918049170
BLAKE2b-256 4837ae6d3d384c025724cc0a8b0d4b653e34d0f68a42a293e9a1e9fc8f28c65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41afb28864370b8fe7ac0fe7d081f066b06a4f641431a102dc26a67ee815ffd3
MD5 67a9b2cad12d719e7db20cef5aa51d3b
BLAKE2b-256 301c5e4975c838ecc811fbcd418e485cdc06dbad54cd809dec0be7358b2b6736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 128908a54f5b1ea06e7597fff1f4ab91f5beacfbf6944e81e0753076c39fdb09
MD5 d6c6102e91bb81123c56a82e617cc9af
BLAKE2b-256 408d07cac898b06ac2cfc5ef062bed62dfe38adb2a16c128d7c930d48e54f7a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35f2ae71aacacc186623d00ef764e044b8096fbc27e13cfb058bb6ab805a409f
MD5 4a815a517467c8e4ef660286ef24a017
BLAKE2b-256 7647ad2e6ff009978ed10d1198590061336422108b04bb2a99e8ae059666a59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d56a772eb64fc1cc9b705b4c0a297b72e75bbc4aad1a3429f22f7a302f591656
MD5 05b473b24afb153570460d3051d98699
BLAKE2b-256 6279fc1d2644c85fdde4cb97c0c71352a5b35daa03ff07eb027b81c631433d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 15fe63a8083c3d56bc66ac30aec27f3ffacdc0a25fb3332d99fe4f09b21c5d05
MD5 808b7d86abaf29463b2fb18e99c9fa51
BLAKE2b-256 5936b1aaf3ed6bf0d16fb57f2878b420e6ec49a45d35cdbe0d6d3466017ed5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f3923c169b070259ee2e7886dd110d68b2998d1d564678a7057e0d953442b536
MD5 174baffe1553a606d8b779754fd3d1e7
BLAKE2b-256 7c6a8c8c3d2ea98f24a76a9983d6cbb659042d01c2e7bc75b6b500ea11f30c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6e9664539e621a98c819948e7202095fc7f6b89d25be70759f93ab8ec0b1f46
MD5 94543b53912b22095d1e24f3d378bf87
BLAKE2b-256 982ce82c1efd2f52cd549445a99cb5a3d60109c4fd1f240717d9847f8754f771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f196ae44dd8caf45549308328ce08b5952defb5ce9c5d7b3ec6bb632daeacc9
MD5 26dd96671f110cdcb379f8c04230b2a5
BLAKE2b-256 8e5cdd336ca31b6ef526d3691a6699ad08656e7e70d2c6e31cc3af55495ed02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26d47c7d57ddadd0733951ac671f50aacb7c972b1fb5934e302a236900968400
MD5 eac84b159a6ba11b87c8a5737aca3a9a
BLAKE2b-256 8c71a849f139a803a380f24c6354c185bc16e914a07f110a013274ff892c8a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64412f6b49604506a63b99fa21d85d59109bbf5f84fcabd511de3652754eb13f
MD5 00a787d23bfe9f4776746c0ff20ccc55
BLAKE2b-256 b2b7378c9579518477de18458f4d1a449b99ef470a15744be5aa41412e1f639e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d041665cd75d4d725c33e277d12df5e2f097bb242081d2943afb62e196ea27c0
MD5 412b9990995019aa3142c2e752be388a
BLAKE2b-256 44d7399c655165459650109531e0de36e4814dd6a09d6ea181b548a89f292b0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb7b98e23ec055926aa0a60d839a8a4f98c648c22f6d891ab5333a18e73c0fb2
MD5 1886d9b5c824d5d2b6dff2b4eb41bde0
BLAKE2b-256 a8ee87981c43e7d24bb283154b6e5e3e467ead6ef848add051003b1319e91d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a87b3bb29c66105a0c776e42599bdee00b90a8ec37535d2f6ba0bac534fe85b9
MD5 bb02fb6c21e755daf12814ffaff4352d
BLAKE2b-256 36e1053d6f0644ae1c419081334564a7b9f3c99d58df099bf87d3ad5c20ea817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ae444b146b289b13bac636da46ac4029612f70365ea48529cd22a01bfc842d1
MD5 a03410d56e736a298b036103bd3f0b99
BLAKE2b-256 9c909042b457cdd6e0d0da5a1a6d053724c17e59d7031b1d4a971f48d5833bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d72a91fff396e8124fabc3dfa9bc7e71e099512b0ad0a7d2627c22b7c55b6550
MD5 09146eff22e97d1a255b04371366149f
BLAKE2b-256 c619f8228dea46c59db74e12b96f75d5f6093a7bd89521869e33301b6cd3c4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ffa49ebf78e94e7821d07aa121d0f75442abe0aff4ef17610c2cf765c2648df
MD5 27923dca8faeabe8d72aea47cdfe974a
BLAKE2b-256 a7b7d1017673ee2ae6d408536282d63ede8e84e639932b4bceebfb11485c6d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2edb7b07ea20de5f923aa2217aa935a89bfbd8fbbd5512dd966a22bc6c6db0f
MD5 5ed950f70607eb838397eac76a511100
BLAKE2b-256 50794c04a3bbf14874ffc49177e06a218cbfc03ddd2b7117fd3d0648e7a2f66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6397efe99bc7ed2910cda14488eef222d6e7ebb4409fda6a8c60f96b7abd230e
MD5 784043a42d79c1cfc9dea7fca1e67734
BLAKE2b-256 dc48e998e38dbf54959babdfe5caa9ff9645c975a3e129d7ebb8a3f93e78cfed

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