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 or updating vectors in 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 parsed and validated automatically. Invalid records are skipped, and detailed error messages are returned to help with debugging and retry workflows.

📘 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 upsert into the index. Supports multiple formats

Returns:
AddResult includes: –

  • total_success: number of vectors successfully inserted or updated
  • total_errors: number of failed records
  • errors: list of error messages
  • vector_shape: the shape of the processed vector batch

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

ZeusDB Vector Database includes a suite of utility functions to help you inspect, manage, and maintain your index. You can view index configuration, attach custom metadata, list stored records, and remove vectors by ID. These tools make it easy to monitor and evolve your index over time, whether you are experimenting locally or deploying in production.

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

☑️ Remove Records

ZeusDB allows you to remove a vector and its associated metadata from the index using the .remove_point(id) method. This performs a logical deletion, meaning:

  • The vector is deleted from internal storage.
  • The metadata is removed.
  • The vector ID is no longer accessible via .contains(), .get_vector(), or .query().
# Remove the point using its ID
index.remove_point("doc1")  # "doc1" is the unique vector ID

print("\n--- Check Removal ---")
exists = index.contains("doc1")
print(f"Point 'doc1' {'found' if exists else 'not found'} in index")

Output

--- Check Removal ---
Point 'doc1' not found in index

⚠️ Please Note: Due to the nature of HNSW, the underlying graph node remains in memory, even after removing a point. This is common for HNSW implementations. To fully remove stale graph entries, consider rebuilding the index.


☑️ Retrieve records by ID

Use get_records() to fetch one or more records by ID, with optional vector inclusion.

# Single record
print("\n--- Get Single Record ---")
rec = index.get_records("doc1")
print(rec)

# Multiple records
print("\n--- Get Multiple Records ---")
batch = index.get_records(["doc1", "doc3"])
print(batch)

# Metadata only
print("\n--- Get Metadata only ---")
meta_only = index.get_records(["doc1", "doc2"], return_vector=False)
print(meta_only)

# Missing ID silently ignored
print("\n--- Partial only ---")
partial = index.get_records(["doc1", "missing_id"])
print(partial)

⚠️ get_records() only returns results for IDs that exist in the index. Missing IDs are silently skipped.


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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.0.6-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.6.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6.tar.gz
Algorithm Hash digest
SHA256 66e6a0231305e6edc12ee03a4e91a5cd8584bfdcffa0a165dd8e53c93b32e4e5
MD5 ad01b41700230b7d791c08373fb99b58
BLAKE2b-256 1f162e91455bb74fcde2ab095ba2c822bcb12427bc2a91cc7fe2ddda4129bfd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdf3583503270429d5aa16c1d3ac81bb814e0bf8d06642d56edb420fa2e451e5
MD5 afd4da975bf026a650f5412c48f88656
BLAKE2b-256 a02965334077ec12fb5c1169f11345237cadb44cca7e4a7829dd9389a9f58e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 247b1f963d8116bb79d60270cd3077b7d18f8308cabde40a03c69af9516e9087
MD5 631553e414274987a96032213e609755
BLAKE2b-256 a45429126b5e31d8d498dfe99a26366615576db4e0d422e548fbea570198c223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed72412e7a825e53e9ae37ff6e25feead9d786c376e54ccdb494b75b07052679
MD5 899affdf5c185a8dc8cd6c6b49971afc
BLAKE2b-256 f89ebdbbff9981e64ccb5afea46547277666c76de65dc6abd85c89757421a017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e14a0c706726708ec2acb5200e6fa105ce97fb1831f8691e84220833a157fe6
MD5 503e9b603169e270fb328637bd71ba60
BLAKE2b-256 42098bc76df8d96ca1605f8ce526399575c97a42fcae92a256513aeea36365c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4e6f080f26a457aa4689d5de1e54feedb5a17ff05da1e2cfcd8c395f6e38897
MD5 731f5f9bba4ed6be94b35b2806c986ed
BLAKE2b-256 e5aaab54281706b4d4ba8942b3c95171e5d384c27480e4abd122fc74669683e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c2c1fceb16d46e9cad32e67825f2447f09089c9119c4b140f4f3b512bedbcac
MD5 5beb2b7afb3b0a3f82a3f142a2422f49
BLAKE2b-256 dada6626a82179c590b2baacb3bb07bab073de0ac09018206203a486f110a0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79919001db3f05a6ce5848af1b7ead1fc7c2f2f9f0a40b4abc998e4720c75add
MD5 accc24ca379027c103886e1a1a25a31e
BLAKE2b-256 5120d23c2795f29d1b978b04b9ad804fa42e54617b9dbbd5676af396fb679a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9073fde71f536eb8ec9a2b95b110df68afff5904bbca1204fe6bb67d73b2149
MD5 b156856469c344688af6dda66f83a6b0
BLAKE2b-256 a55c16053119851b2ecb1da3b93c6fe6afb709227e3f423220c837ace5ea30c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21df532559916a020b54ed7ccfbc8906727f0ab51bf4689ff80ab7853f211154
MD5 2dc33d0631f117f18de8d8888120421d
BLAKE2b-256 c3ac76c1424ca19af3fc0266f665aacdc03bef69490aa75ef12cecc79ac4f77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3beff3bc3fc33ac52ac9f35f97f491b1db296802b01dfb392752a34d014a3cd9
MD5 81ad5f15bd75d5424c17458d759231f6
BLAKE2b-256 7068e792c6d3bbf400c713e9b5741cb42c6df1d0ad56b6431ae1942787aae873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db3e183d9e0e7d8b500dbe881ab877ca56cabbe6a5c4a1d88e8bb29df2143ae
MD5 88fa66536bcb15c2dc2727734521613c
BLAKE2b-256 9b0e04408ba3934d83fbf2f91bd5bd2d21503a3b2da929666e84d1c38065a17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c9c620b7b9da71acdf6e27c3123550d9582048c6cd3ee583212efbf91ad6e3b
MD5 7dfce438b2f19377446bada97eede534
BLAKE2b-256 bc8c582034ab83450f729b06460b17b7f5d6a9f4ca196047f5edb695730fdc29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b06e1e6ed02a91511c4caab4164b2814e6f92739ba5aa3126d6fb3fa13b350e
MD5 2006b9d9d35ec0c57b170ec888f540fd
BLAKE2b-256 f5ab6311fdfc56855c19e230f71908182c7febfef4d21749487e1fed843c0595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f7c6cfc1e0259d3de2a29b0855ab3101b42198aaa79a950b60a8530a7feba30
MD5 6d9df5e428159a8b49c980275a6343ff
BLAKE2b-256 f1a12e7c69bdb7e3e1047e90171519a42fb650f55580f066f91a82dcd2bd4fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cae7d03104deff3cdb1d816af8fe46ed6bd908250b8e73d3bcc2835e1777910
MD5 5145060c7c144f87fd65fbe0f779556b
BLAKE2b-256 0309739d37637ca9d91cac715936b89f37ae99b1782b9eadc36a6a1250859a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fec49014d3609a2324a40682eef570d3e4ea1aec26cc86f765938dccdd1a5bb8
MD5 3815c731632fbd559969268801e20070
BLAKE2b-256 0143467945e5e705bbd763d827eecb4b0b521ea9033fca52a30477152be52960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c17220746e846ccd7c180a66bcf10160cf573afaefe1a97982842d13b97d042
MD5 5dcf5df7235905a32dede02cd3559431
BLAKE2b-256 c0c28aa06edb07154a5646e916a0f4c87652c838c10a8d0edb5e1740ee471571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4232b367641fa1212f53a76503dc9a7e996ac387ac31ae6c54a5f0b4b2aeb24
MD5 4f7219a755a8b20c4ed2bc98b1936b7f
BLAKE2b-256 a32b51578257a45a255f42815296533b3f41fc571778a314dbe7a4a3d834e37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9b8188638b0db9cd328784059868c0665ed624ceebb4dd20cc02025e9a3ebf9
MD5 68b624cec10bc71479304c6134718567
BLAKE2b-256 6c929d5edd649d4d3f0bad22784d28a7ef23bb37391cb65480ca68c98e68237e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e59432ee313f8fe12330f2717df5b432402b89c719ae2a333159d47bc850c25
MD5 0f180a59193e7731c99812b518796ab8
BLAKE2b-256 94bee94b7ddd58c60f625b0c78153be5e078174bf97f5f78576d570ce19457dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0be1f9561d9da0d72a2e7250a8452b30de90c63620996c816b5ee8eb84919b3
MD5 2d854337045ee11c0139b2ce7b2d2da6
BLAKE2b-256 db67c49dd51ba45c2d4a227c2700507da82fd7f6e9d72c3b8c8fe4f393530ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dd7f637a2e64750b437adf1852d8d715ce8f574e233de6f97c830376418ccedc
MD5 2a7f0192e575030978b14425ddf227ce
BLAKE2b-256 c52d668f35d589deaf48f176109dad318bc2bd3413de914abeb287dd217b4d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e4689a92a054736ae0f8c39d49aa3f419daed2c4602ece1260f5745f7445853
MD5 0ac55663173e672f391d06535b3e0cc7
BLAKE2b-256 12c4b8ad02c02b1d6e397da1561c60b8ccf2955545784e3cacd59d4f5962753f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d76e79230c29cfbd27dea741b7e736814f84e1cb17623a0803d9c8f7de5516dc
MD5 c6e7a1167e071e6542ac475fa21b5ce1
BLAKE2b-256 fbb5788715be718503017106b8c9e5e37d4cc0dc9294f4adc5526873af5ac8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ecb86ed3f0ed34f6adc361466f5c6f10ddbdc2654e114eeb4b2f3264e144c04
MD5 f85490dec3803758ecde54e2e4b6d4a1
BLAKE2b-256 4d4377a460ce7c79d318f877fbef76ed4d7c029d67b1c2ac4e0504eaa6f2ad7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec9f3c4a3af927752342100a58c82bd71167dd5121a1b8dfb54173102cbbd1d2
MD5 179cf3da4fabad5622830a15148be51e
BLAKE2b-256 2142574a3e13f61673607ff37c18ebed125ac962b86cdcc53ade7644eab3541f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2369b2ad31d0ca200670ce3c26dd2d95ff8272a1b8d0721d47789022696607f9
MD5 481323b0a0bad102bb4ad82a59c52450
BLAKE2b-256 a3307a799fd5289def84af28c858b73c85a8ec7d9b9bf8c130a3c2a54449fae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9670614151324644b390a00a267d49f3392eb9bc07e565cb11686d3781801fb6
MD5 32f9fb59845c9c8699addc770e5c1694
BLAKE2b-256 76bec908185d49397d818f57b701864366b55c6c7e762c0ebf00b3eab5a06066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 250f13e8ca82d81c50bc9971e9210876aa1b6862a144d9dc85f778dfba2f1b11
MD5 a1ede7177eae47ac15010880dd7c37ac
BLAKE2b-256 49668b064ecfb3051dd6937b94eec742b1056c662dd86ea45751a6d8c5593823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2caa934a70d8cbbbc1c905ff3f0335fec98bb451251c152ceaa3ef2e799c648
MD5 d8d4013d718f53770547c3557c5e4498
BLAKE2b-256 c0debbc24ca1ab74dadc39cbd71646b3304f08776ea72776199f8b6487de2ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d1d2e58af70e69fbf61707ea11675591b5da44b5215470eab65092297b76482
MD5 9ec3563e850d7d8fc70cb5eef9bf1ae9
BLAKE2b-256 2d4d5d7d455d4b3a0fffef5103ef04f99a325433d263dbd807b4842526e2ea43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d19d197ca7e5224a4dc96c0308f7bbe8b3dccfd27616bd040b0deeefc8ef0e61
MD5 f8c134605d5c3514e88a12d17ea10cc3
BLAKE2b-256 5698d6671812cb23a3404a6a9a678c0ab3f7b683d72da81288b4b0e860ba13f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2797e797c4ddd667ebdfacb6e40bfb4a3f30a2e4ab0899e7d692d296fad37f6c
MD5 0da8b4656a438c74176981cf6630a2a6
BLAKE2b-256 26a6868654275b9e9015e0509af59a95b73048dc17813d881e01d3ae8bd50e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ee4363bb571a124dbc1e77340e0c58c7b314598642f4ce86fc1695139f1bcfb
MD5 46a2f75df6bba64e22f220a4b2bff204
BLAKE2b-256 966c6d67c51d27c215ca4c27c63b7e9f8f442ee650c3397b7b4697aed2878ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7e43dd3093d75d30c05ede836984b136e2f7f2ab6a5ed9aa15d21fab7deb450
MD5 873412b8a83bbe0a6e96e84521e49cbb
BLAKE2b-256 357dea92d17d37cc7430ce4c6ea02b5a2a7d987866043d2200d30ea8d824a6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb9c7ed515628a625cac92e60f99008f0104cbba559947068ec8fb8a05d937b6
MD5 2037680683d10482dd4bfefb242633bf
BLAKE2b-256 61694c1b3cbd7190ddb1e3d517ebef3c0af374b185f9e701ab692516ab93e426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1a8afb63833a20b899bb840aca08dc814e33dbdc7403a316557b774407354c3
MD5 5c9a36533417adb605ac40dcd324491f
BLAKE2b-256 722c28c73b7c7cc6b44527595ec487b00e07d78b5f8e4adccbc4e7d6a7d5ac08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d15e1a5d2ed2b17eabd01afbf0be29b3a6152cc8ab93dc86b0b4768c0d1783a
MD5 23f755ec01bae866172fb0f640cade09
BLAKE2b-256 336b23926e2ad469ac36d8e1e2fc22174f1eb27f367c2f13a7b947b6018e9bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 733f9eb0e1cac5eea8ef6aa2914346261494469e8bb2bd90e819e50d7b6152ba
MD5 ce35f757eb350a5503f27e3f7c34f72f
BLAKE2b-256 9dd97d81ca8dd632e6f0d8f55ba2fa47d2e4006ce240cbc0c18d638f01904e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d9d40c0afcea3dce92acc97a59f06d198aea85b4a69090669bde0f12fd562db
MD5 8b21a0b855c68618a18ac0b0b80522da
BLAKE2b-256 dd2da848b4060e1e1c7778e122a799ea89892478e494cc240d18ebe8a6fbe7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a92786d90d9d132ce3424c7e0c9c4e98662002ec3c88533ee44924243f45015
MD5 c1aab969ea5c2deeee5c8a24afde762a
BLAKE2b-256 4abe28f83ca19725327a7e4a7d803383d6b343c3dd0bd7e257f183b21e50dfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 033a935ec45ca231ee91454c0896df87c5f864bb3219f7e2aeb309217d150e49
MD5 32194851dafbce848a7ef3d96115be5e
BLAKE2b-256 a193d5982a4a7391577957147e4f4ccd2b5e5c44aa2f4cd2b90e7de7dea3169a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cae6d3385f9a00b754f3334f09a7bab2a2105ca15f51bd759f664521d79903c7
MD5 4f98d8300919fd2d4e6c057faa647453
BLAKE2b-256 fab8a166b48ab657ee7d9553cb96a479f1ebf923c274dbc35d859d689ebf24c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65fa671c3029247221e866e866cb03b084bd13da338e1d06c812d1eb961721a8
MD5 42e9236c7918159696f0968896193e62
BLAKE2b-256 4cafdca29f436a8e91979423edb1d387fdfecd6f930b236ae62fde5e73dd238b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 752cff1c5dd8a882a657d83ff4f6efeeefc945bacf4151884fb33417957dae6c
MD5 10bddd89666fae344f8a7109f28b03ac
BLAKE2b-256 64e8e33b48e79ed0fbd0fcae81b7695ff91cf72d9e6f10b8a0e85840d5569774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f0f56ca1bcdd74073f550b00222ce9845492e02164d1214b2bb088d8c7370c99
MD5 9cf6f8a57f2a297734dfd88cfd1333f2
BLAKE2b-256 acafb2359774b1c29e6697c164eb03f119d46a8e6ca2e9b28a2ef039aa89edae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 016362c5514af268b4571152d41e60923c213552dfb52d1473581914f6961a77
MD5 2fef274e01620d53ac5407010677f4ae
BLAKE2b-256 c27b46f8df186f279ad13853ea0f017eeb4dce4e2d4b82aaa8f79b7c30967acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ca93ac76d5a886202d2ab3f7ba0814a12486bf871bc6768c9f51b959a129e24
MD5 a8b38867b3a9e2a82694b9f9ada39ff8
BLAKE2b-256 6635e5e4715301f0fb213ea3e4cd4afe333a670fd78e35699998e12ca1b4390b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e41d5139e9cc6aed4def4311e728a292b05a5810f06272b4b626f2773c19c1a0
MD5 4f0b109a6d0f9bdf840fc896d947281e
BLAKE2b-256 1b3eb96ebfe5c31e1739ba712eb6661b6846e068a428c6a6c32e05ddb8b59975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e198d11fb4e84c9f6c64bbe3a488c7b5ac822301b7738f659ec767c9636dfd25
MD5 a00206f9b6a00005db2314eaf60c7316
BLAKE2b-256 843ba5bd96075a5e1dc9bc094f67d255ca06cc085a644df3279c70d84be85de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3be24becefc7a8feabbd03a5a6d07d6a1f89cf1e67dbcac079b7f28b0f5e3884
MD5 0e279eb4e863dbaec3530e6865ee2378
BLAKE2b-256 39f677c54320f165e29717f928bf329c9a4f6a3a884e3e900565d30bcdc450ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc9214f8be73a0bdbdc1a806c8c2481b1ca335eaa41c8c083009523967e286c1
MD5 6be7c5ec0071c5c6d14e880d871b9276
BLAKE2b-256 36a2df3c9c2e3094fcf93f3f04ae34e00fdab0e37b117f6b74e3e1eb02221827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ad4ad67b2047185465ba78c417509c25babb27aa1bd32e83c297f8587b6bf41
MD5 960a7cf8f061864d69b50e08862242f7
BLAKE2b-256 d13283becae36716cfe13902937b7a907113b677c845b768256511245a61cd08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1112eebe9b3bd2d1048048ae94ad1153c192643ec3e309cc242911feb9c243f2
MD5 a9441dec05601d13dc5198889ec38b23
BLAKE2b-256 76c8cd648bedbaec90bd9ba0e4cd7c4d6f8aa36a357330f1c79c386879635bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d714da573e9d8a152b4de037d3a4ec359222240143dce2aac9dc1315b2fcfd
MD5 a13ff581e896fae69192b727880e98e2
BLAKE2b-256 831f537d57ca762a0904eb6ab1fb733b36182a71f5f95c37b9a41f354b6d3e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d17ae96b60f7e44225663a77c94f3235052c78d01b46e96b5fdff70ec29ff19
MD5 20a5da8daf25b5ce6c37b7d0e81c6d44
BLAKE2b-256 5a7eb1be1a4fc091de2c4a879064bd5ff06659f8e1a9e343fb1c667ea5173ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68fbb6f5c375456323fce07b159178f3a204d9c64482ff71865acc04cbe9e049
MD5 4f7bb6ff7522d296cf29905016ce91be
BLAKE2b-256 336ac0f77f06d6714d92c25a34326aa763fdfc61640b556424d072bbbe2c544c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4688eb669822031b6639a4e08a3316c23a6f22f48f55ce1dee22983c3294f1c9
MD5 c340459e23ab1fd0a45a9047c3326512
BLAKE2b-256 7174c8de0094d5e3d85f076c0af02f3adfeb6f7ea81aa8581a01e41fc9ab3014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75f1342f62e55439501c6a67a554559f135ed219caf9658147674e06f93cd95f
MD5 ae5a8b62cb0bc3213052abebdb36cc50
BLAKE2b-256 40bd7e93cf9027411406ed2a63e601f675089d53ce6c7d99f12132d3ddacab36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2776898e24de9d4b4d62ed7ee51963e4c26f62e902dc3008d06b7fcedf56b817
MD5 400501c5d1392009a2f050e3904a0da1
BLAKE2b-256 9781b5ef10b6db3b43cf4c119d545021e0bfe4c3cc0f71f28f82f7bf9bd6ceaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75e25ac91f3e48857a1eaa80223ebed7659b3a01e15ed3146f9956e3394dfd3a
MD5 55f5be0a77897f25ba00e3ea0d97a232
BLAKE2b-256 a76786cdb84432850bd24eac2cc8cc84fbb91331129027ec1183b2cc5561f795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be76d308fde50b3a478af97b35bd98f31aa42fae4f30dedd207fd956b0447f2a
MD5 dff90a28a4da944ee07330cbb8b174f5
BLAKE2b-256 b1e931e62051afcef0d0a672779c10587b3fca987c51412139b43305d02fa40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68d1b4a152a36de61ad726ffc6fd4e81ee9cb61cc27a48ae25602fce5ebcb5eb
MD5 6437e6081478a3116504b539dd0cb171
BLAKE2b-256 c3c43111a4b47186b8fab2eef19a5ae86c1375d063570c58f76e98afe6d71a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93c409be069724ff816f61d272d21aab1ea97b2b7a82f8c860bf6d4fafda987b
MD5 4b066dfa919cc7e5a92ab72bb6d7d4d2
BLAKE2b-256 6d31cffd5880452414e4b46e2e518856092a3f09f7d7b520feb2792163b2bebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03e746f5ae1ca3732784f45308c200120acf10707b1afb0d33761f2f107f9a31
MD5 5a74b45aa250f3c7fd27df68792b75c5
BLAKE2b-256 f85ce1e090b7ae2fb5a808895df02a3c9e8d201d091c81b3f6ddf75623185373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 797f65008eef50143c58e6b389bee0a907b870cd045671529459792379a6a3f5
MD5 8f154f23f434a03f512a125f82b031c5
BLAKE2b-256 687139c9632c999cc6b3111e1998e42832c47624adb43996939d8184d9d1d0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57c01f6db4adb249104d63492ec7ac50532d12bb4ff8bf55d52d68b6dfa1f4d8
MD5 6cb8bbadabab6e9c57e5ac94254c9095
BLAKE2b-256 7d5b3af801a701f7bb44b55e9b4571ce7225ea43acacd67bea753cb0c1101686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c05c1324606b554293a71f24d52b7ebab3ececfb425219fcff2b1d28626395f7
MD5 a680da7acf0642487d0de0c4454c8fea
BLAKE2b-256 1235ccfe2678eaad93c770853cfe9be22a6a302ca56bf966c5292a947d1ebb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15352f44119e4e52b20579585cc2c88a63d4ce5ceecf9ed89587ea317b3f1b1a
MD5 7715e733ed981f06088ea8e6f98e5967
BLAKE2b-256 8fc9bed97a04180eb0363f55b6837d5884afa260ff1a47c9f6bcdb06b9a34fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ffbb324bd22799bb2858d33556365ac113e2986b01386f8c00e31b4355cbd128
MD5 b939721bd6821717c74da8a53118945f
BLAKE2b-256 dc0a9bd1f78d118752feab4f1d8a429507c3ad79ea6aefaa05a9d342bc9e5def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02178b62e93c78accf82948eaba9b0fb681f27b5de910e55523f6353fa6ff300
MD5 17e8f49c0aa60171c9ba9709b0989824
BLAKE2b-256 709c87d1549b9488d775cd4e7c7ec006d03ba5304e5a9418e1d24575388fbf41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c015f359434b94aea472cc322082740279f851dc7ded38719c90b52edbe64026
MD5 db3faba43539b59d859662fdaea5a830
BLAKE2b-256 3abb9eb399c7019f9b8bca7f6a72f06b3b3a31d268e924117b6f64fbf2401c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e66c2cb348c4e28f819a1ea320d340c8f91e0e9da36fb8ff3d8bba2db51d6d88
MD5 faa1d1d58a2f00d30894300f2576e3d4
BLAKE2b-256 9df89b685b2105a97c7ceb11f3b7c2290413957c26f40ecf78101e2bfac868f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 544a6939bc5f20a51bf0bb036a4fec7edafb1b43979a18c560fc7be8bdf658f1
MD5 9f70ab389b36b8f24899239b167c822a
BLAKE2b-256 37cc0aa7e4e03939cc68062bebf38c967327b2ed943ec67267f4231fddd9a0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 917f28d5d782e05eaa84ace06a36ad386c886d984696c457e658ad14442e8300
MD5 ed0530020424b9de66a0ee3b80ae636c
BLAKE2b-256 689f3399ff07ce4a5929d565264dea96c6d15edf6fe50abd7a9063549b7d15c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 398bbf7fd2cc37d9ab08dee1aeb9317c9d18bea87778ddce59659815315f7464
MD5 5fc0959b6a9e8e554470641abce23257
BLAKE2b-256 7326a05a52bebb07c3cf9390b44ef57ff4ba8745a627c9c2c3409a3c061b6dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bbf20546295a2a2be66dadf563d8eb35c282ad8293c2f3524d4e9798c48d117
MD5 036556c20e3cdf5d4e7a600738735c50
BLAKE2b-256 f4ac64c38976a0e831203f7f67e4d3f0530bb8714cb36c540e4477a55f1ded3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa26dc0f86454686cd0a4823485a0e7cdd92f33237eacac085a8e612494b356f
MD5 a2365778f5482491e15697c4d2422024
BLAKE2b-256 2a9af26352e4543fa1c2b536ee6eef92653389940bc88d4b5d299f5cd0be2115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af7b2ec145af445d666580538eff8ff0e6efa4d968af869df04aeaee9842cd14
MD5 75844362bc6bd8bb31f26da83b514c72
BLAKE2b-256 1d52d16f5abad2e7278bb040445bd0f126cabbb3ede9c30719db94e376b99605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 936f555756ef439a385fa97f14f7a9e0f5057c5a564b74ae9460af501338ff87
MD5 c06ed54967f3ce29bc9681263a540e21
BLAKE2b-256 ff3f8d2bd57573543562085e692182a2af70015061b4c1b169eeb10d75df41cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ccebca9423e13929880b7305ebc6a5ba9f0802449f26bd675cabd3cd463ae28
MD5 636aeb6d9ed3b4a8b3852b1be940553d
BLAKE2b-256 dd5a0cfb822d96455097ea96ee6e84641112266dd4849248eaad8657e327a1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bfb99ca44e44eacc7ab393301d7ae3065248ee39707976936472aa5275ff7c8
MD5 256692578c5f45f1382dc47ed8da8d07
BLAKE2b-256 2bcbdd84f3ebea8d1dd139a35961a44790bbab497e3c6fd6848d622681db07bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd0c20b94d986097040f647086c37a4c3915676c7624ebff00e0414fab100f76
MD5 20d7adde791dd36c0c565f0837abbbcf
BLAKE2b-256 94d43b9e1f7890bc15321408b2b307ec2b2c8ec6c019ea47cba349c517e17b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 daa0c240b0a52d5bdc64bb147f61a174b71242c37949ebfc90879facb4ac8aa4
MD5 caa963f62d31ed01f0d0e23873b617f9
BLAKE2b-256 13ce610ccd1fe5881cc7489f9c20a09c703360f79981f9307794365ad3b16de3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59f8784db5157d0d8430cf4031c9ca7bd77c1e5e7909f009eb37f6a5a817b904
MD5 bd49d59758ce909111d33dd7ca23e813
BLAKE2b-256 2a21d9eab22b38cfcf422b885520c3779c475bd943207a75071360183227b8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f83e5d5a104643eab9826b6a36397f2c9c244aacfb8e83c91968455376adb52
MD5 20e183764c26d8c74a7a857e40219be5
BLAKE2b-256 33b536a62d2460023d2699921a5e6513b2c7f9f9ac8d7734679385547a837120

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