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

📋 Supports multiple distance metrics: cosine, L1, L2

🔥 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

ZeusDB Vector Database supports the following metrics for vector similarity search. All metric names are case-insensitive, so "cosine", "COSINE", and "Cosine" are treated identically.

Metric Description Accepted Values (case-insensitive)
cosine Cosine Distance (1 - Cosine Similiarity) "cosine", "COSINE", "Cosine"
l1 Manhattan distance "l1", "L1"
l2 Euclidean distance "l2", "L2"

📏 Scores vs Distances

All distance metrics in ZeusDB Vector Database return distance values, not similarity scores:

  • Lower values = more similar
  • A score of 0.0 means a perfect match

This applies to all distance types, including cosine.


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

# 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.7.tar.gz (31.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zeusdb_vector_database-0.0.7-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.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.7-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.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.7-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.7-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.7-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.7-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.7-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.7-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.7-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.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.0.7-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.7-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.0.7-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.7-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.7-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.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.7-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.7-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.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.0.7-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.7-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.7-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.7-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.7-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.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.7-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.7-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.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.0.7-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.7-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.0.7-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.7-cp311-cp311-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.7-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.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.7-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.7-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.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.0.7-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.7-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.0.7-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.7-cp310-cp310-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeusdb_vector_database-0.0.7-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.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.0.7-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.7-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.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7.tar.gz
Algorithm Hash digest
SHA256 170cb709916cf309cc3077a5fb2f8d3039e499e0fedbc382b3201d7a5f355d42
MD5 72894f3790c82a00df0b508565bb9f76
BLAKE2b-256 d6cb734716acdb4254e91da79033f15169fced91a149ae9f0958fb722527eee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09337a9c9b5985f20df9f73c461167598608d8f599ce6fff07417581cb33efe8
MD5 398889761d64fa080fc4c3cc1c004f4f
BLAKE2b-256 18372578e4b427360fade4d7377727966b563434abe04a5a4f1c96e407050a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8212b6688be7621b6390eb0bd6622391f849c2f43c91b6d94b51a03e900a3f1d
MD5 ff3636b0c9efd07080e4feb287799434
BLAKE2b-256 1ed126016faa9acf3ec08eb83ad8b8c8771ebad503b0f6b74eef1be882a2ff51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1caedf8b1832da1726aba793bcbe21dfed3cebd7261869bcf3264385a14834fc
MD5 4ddc4bbc135dcfc324cbb4aac3ec28da
BLAKE2b-256 921a44b06a760fdfd04b5a54e126850614e2e7ce875b4c0689eb28fe91b54030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47692bf8c38297b11f14cac53ed042554b6b11e3d68e28f5b0cba0120af16400
MD5 6b0dfd261294a5ebe6b7540deb090c88
BLAKE2b-256 a1504bb328004b3dc893c7f81993de02dc329ee320cbe50276e0650cef396574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3522cd0c96ca1e412dedc5f2265065c7b6b088ffc598eb3d559d26a3722b6b0e
MD5 e39480e9cec35dac9f5fce1bed6fc32e
BLAKE2b-256 26efd7d62ce59d61ed5265bf497745ee69ccfaa29a7cc3159c6a14180ca5e4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dcf4e79268ce40078e2555c14e56f96ddca81b402541649c7447e816ae8e93c
MD5 fc2bdfe7f9e1794dfbcc6e5e3cba7752
BLAKE2b-256 c2e08cfaa656307d1d8c52137a4efef52aeaa283549e3d9b6af09eb490f2060e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44b997dfbf01fc0c5bc46c5a0429d5904d645d3682a72ab2fdad512014681322
MD5 32ef2694a556fd3f86d1bb34c51c9177
BLAKE2b-256 8f198912226bfe853d97974d722b382948b228db73d6351442422d07e59ee95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 440a7f5a9b3eb4029cc0529fab0ff0f8d9e627e0e1872d6d6a5b03699acf2016
MD5 2e35e9d592ccb5144ab8f9423fa834ca
BLAKE2b-256 1083449c2ddefffa185fe16fa6fa363f32e82d76ac5fe2d83d78792d8102eeca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77bb716d7537fdaeb07b69f237ec3e8fa1474beef8c3f747dbfae4b24f342d2b
MD5 7108b33b22ed9ec6e90e8c1def70295f
BLAKE2b-256 5cf7a66bf7d24a335d9936db3714f5022920fc12343b644f6a4cfe22d2cb83ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0eb732b925569ae0d8bf861275a0c9027bf8a7f3b9eb380d0300576bbc71c557
MD5 0d900a49d0e887a09accd28bf6780ebd
BLAKE2b-256 a51eee2a00fc5de75e33f52ba3d9c818acfa122c1d35fa8fe2847c920506e22a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37dead95e318ee15bac2ab2cf366ec31b22c767fb7aee01d3587734bf08ed596
MD5 81c28317858bc8cf2676ac8bec9f6872
BLAKE2b-256 bae80ee8bed985760b149c914df00b0ac80809767ec0eadf342547d179361866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 094d5b54d0447672b37a01e558450417c1416d28dd55927e2c0562d891911d18
MD5 40392a95cad06d56764c30f08dc94f4d
BLAKE2b-256 097b80e2af67a9509c05a163c950daccada10d81cb4ae0b9325d6c5ab1b5bb26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6db267d7c204876a62dfc3e4790b2dad747d7443ca780a702448a9811c89cef9
MD5 89b5997a6719e3665bb4279784512ff9
BLAKE2b-256 0378ee5c8ffcee612b073275d2213d8f7164835222b6139f44def4ad99bb3532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2b299072a46896abd464cf939741e42a480e19483dffe08d475b514fc7e9a53
MD5 f15f994320581e39c32cbc20a7186d20
BLAKE2b-256 f4acaeb5eff39431ef10e028c65b89bdf093cfa4dfe54ac38f65d6d75043ca3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a3a66b6d526a5a2548e8127f546b66a0c1e7666fafa698fae0592d2fc22c887
MD5 76d7c10763fe78c22c9dd722b3323408
BLAKE2b-256 30e2c813cc3b7e2a7c61bec41b611babbe868c6eb192b717841cd552cd7ada7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3ed0489f9e3f5b9888846ed10e2765fbe4ac30bc5252a6aaa9c06df8bac5f33
MD5 8365e04af23a0496fe9eae74f25038d4
BLAKE2b-256 493875bed36db6964bd9ed9be169cd77c25a51ad4e29d53ad3d6846e308410ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0de52706b0317261cab9ad7c7451da1e8070cf2aa151d391793f1f4057576c8
MD5 f2263646ccedd2facce08ea7951c2a08
BLAKE2b-256 a735716f47d9280d58f881702aa978fa7391291a8573e7e8bc274ca76fc14a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d3e90e6e1fe335de95edaa91b0d744ba0cf24a8b8db67680932ec2cc0a3a03e
MD5 2fc0c73fe8697db93687a429368f74b3
BLAKE2b-256 10cd72e65573e48a2be233cc55fe3d727e6763188c65670a422c20fe1434b7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fae0439dc1cc8f34a3fc4a72144d49d6ec81533e99435ef55378cf79bd530cc6
MD5 dacc9c7aea55354a66b92be7ece83c13
BLAKE2b-256 087e83bdb6576f4f83abafde1094f640fc556317c5287f74cfca1a83597cd7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 20c0f24cc0933f9e34253f0e289456fb734a382ca1a3cce9ff724823ff4644e5
MD5 8078afa879979f9aa34f80a9ae523c92
BLAKE2b-256 a6e661116e187a1c9195ed6dc83a2c8f7ae51178c2edf837a6d22be11ce8ac1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 319540988e682991dea245b7806d7ac653f86e7907047e12049563a0a5f2c78d
MD5 51716cfb3eac13287b884850e79cab91
BLAKE2b-256 ae29551a24cfa23d0ec859b2d467056015f592eaef1e5a219e1058522b6201ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d7a579a687bbf23fd53febf01f77fb5b33635dc6386f93d3536c892e9c24b27d
MD5 966fcc6d56f4a4e984495dfd2e9c8b02
BLAKE2b-256 63947caf1ac67298c7ead1ed4374809a59d9126bfa5e77491b7edbe28adbbe84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e89a1780a5b0095ceb6ddba62494febf9a855c17294d9d32cbe17e1b86128b64
MD5 ff8097cf75471f0d4263aa6402a8aa53
BLAKE2b-256 7fc688ec914d8bd825348acbfb570eaa2372406b9aaf4e916326ecf2db316adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f21b15e26f8feb4e135b50cda761f29a41bf39c79391970dcb445163825698c
MD5 825851eb5eabca668c63486c6e12d821
BLAKE2b-256 d42b6045022250286ad97b6e058727a4b62ee18cd4f58ec2438151e142e5d050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bca1d055e9e6d3548fd75b871a542463577898583c3475e2895805e346fe5b6
MD5 42d5ea48eb2c73af931b0324a2fa0886
BLAKE2b-256 38de605e9873de440bd8464f09e108781bba4845097ad53595cae442e23b041d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5932ef8b508ea3e38cf431a46b640a3c6906bdbbb74295d8440c160b651f0fc4
MD5 f716efcf7fab36cdf61af27d87e7998d
BLAKE2b-256 023b05037781a47fac3545a269b0147f6610676941067160beb40b59e2c19714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c84836f525b65d13a2a2f795de100663cdbafcab31a148d56ea0f7e3c4f07e9
MD5 f53c3c4905263eab71d092319a2029a7
BLAKE2b-256 ad9cd6f72bf15520ffbcdd1bea3c50adcfe8dd8246639d66b3636d4e4279071d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e25b01e062fed41aad21297cfa628ee7292b12f216409f57cb08046611995b5b
MD5 8dd07f49f8a0ff8fe40c2fd4c2c268e8
BLAKE2b-256 7badc65a85e53a15553fb4f8002c5b7c1b9bdf9ac60a32a10d7a3691080dd1ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dda23317f1e2310e8b1474bb15ae67ee4c5af9518b97faa116683813f6525672
MD5 1f7157c0f2516975977c9faaad7ef748
BLAKE2b-256 524239a28b7e7edad88c33fb5bd652314581d45660f1beff0e5e190290a90510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a00431a934d93a5a2b232fa2436281213ba360dea0793c996afe312d9adcca5
MD5 ad94d165b090a15407e9376e5a275fbc
BLAKE2b-256 3516c9fb70ec13eacc1fcbf29b61e146a29ade448fa7b62ad167aab2255f0a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ec35a6463a7c86bc7efe93fd5dbca99136750149696ae2e3fe237164acf280c
MD5 08d80bf416c1899a7e51b42c9a7340e7
BLAKE2b-256 29a183f9c41f37315d4feed85a8805f810c055a81c4a13224a89bfbda481322f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef4e29e9e21966f3ee9a316c8c4018922b0bbe6584bb4da4af6dbe5978fb3ff8
MD5 fcbdb7d54b446058aad90bcddc80ce85
BLAKE2b-256 97d88bea4b936840e0cb474241ffe48e6ed77829957bad19c62a4d360bba5fdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f49190adae817be5580e72d35dd880059fe293da40fa25053a31e9c94ef46f09
MD5 44c88016d4ab9b2679ae6448f1a451b8
BLAKE2b-256 96e1890c89897ec4d960900c404f3c2e920c6429db4d7445cba025b844030972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 496ea6e35c56569ce1de5c32342d7a709e1a48484b54e597a6a714d022257630
MD5 c37dcedb4840a030bfe02b18543f1efe
BLAKE2b-256 2af2d159d7d1fd1cfb30bd525269954c1eeb5174358a12bbbbcb5101e8c8ebae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d33136a5f3fe23140d5f41ff31e8fe14c3c2d9920bccf7f5fa7d0a73e39c7304
MD5 24c6b22212f40ed48d1b8b6a38b7abbf
BLAKE2b-256 605fdb57ed555d727f1e8ed33670823f7794018b5e0444a706be9d003dccf363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e3c32cf09bbe9cc29d04a52b58404e198f28552e90bd79869ea18a135c869f7
MD5 26be93119bb669db5a3811576f811704
BLAKE2b-256 326c0086507ad2bcee39d36a38bd3ad00c1bb93aef797211cceb6cefbfbf6e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4662cc11349fb9015cadd01fd00c0c45c0d36ede38ab0af9588a44bbae5f7f68
MD5 5f3f0b37c703c513c20948b955e0ac26
BLAKE2b-256 cf0fcb0e5939cc38e625fdb6baccb393376e719cd01ca4cae6d8c73e48d6ef14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88a809f7c36c019f829b1a610b2eab4212a073ccd49f40ad7404a6562167854f
MD5 3c54bded267f3327459384d5d8ba56de
BLAKE2b-256 bd0b62f1eb7cceed27159ae20af5c8f4f214aee84c17b2c9c282df56733a20f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f103f9a603b660a9dc399f6442095f2ce47efb8a9c8b56ac138e71bd9ea24e0
MD5 31cc2f060e6904a003b2d107e290bdf8
BLAKE2b-256 6b9eedae8529e82ace2b0fc33a8e989e76aa736376b047b504e8813a02425073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc4ac07a7a0b9599b5149c66956750b96cabbcd6ffc23cd527aea7adff7189c6
MD5 a40689fcc031267d98862968d4cfd7d3
BLAKE2b-256 92235e6251724f1125c1368dee072fb8c540bd6f5004acbb8a95a38fd6b6f850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 968d6df2493013f7fab4202bdf661cdcba7c8889de5600a981f3b0592db5e273
MD5 08cd1f2b83e108907a8f15cf2d082d85
BLAKE2b-256 8a7d54fc6c3a78df3c831846e96da662ec2dc2d86f0a0ec1ac67c978c9011ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1af2314954512c90dcd7baef10f526736f6d28c7f4eac143e57ff27547f4de47
MD5 bc9a719a576b17b2fc917dd20ad17220
BLAKE2b-256 cd40eccd246027486268ade1ab2be6712a3fa9854151ec14eb0440db75d7ba45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66918229d648b7603393c4aeda36e7737c4845fe0a2762d08af888c150c228d5
MD5 36b2e22f5a436023f6d12db26abb42bd
BLAKE2b-256 582fa5042612cf5008501072d4380b8e97b0e804d931625561c7f0265aaed9d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16228d963c1d0cda76658d3cb964ec037e350c68497dd39bf82bab1b7ccd8ef9
MD5 32291f9683e3867b3f4952609941deeb
BLAKE2b-256 f4826f27def00abf020048e3fa35abe935ca62fc2661682305f8b62a315a9b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d84d77ecd1ebf850f6410c15a303c30712862cea29a92e7759b08db8ccb303c
MD5 8de274bc46ba088def964933d67760c2
BLAKE2b-256 294c63ff947b780f06f1e181d2fb25c065c645cb36842c53c4ba5b07178167b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27497fa4ef050ed2bb35861df51ffcb9f1533e9f53e29a6b18b25c297dd5dfa8
MD5 20a326d991dd8b14943fdddee7cded8b
BLAKE2b-256 bbbaeddf71c1e3e9ccd134cca86db162f89f954422d413fae505781815638214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d83db564b20a30fed3fbb72d46666b2a90fd71651f8abbab95cb1b6fcbf46b54
MD5 271002b0c4c7bf4dcad302622bc3fd1a
BLAKE2b-256 497c4198bb5a41d9695861355a0a7da6d745c7727349d4022fdbe5426daa02e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd265d672bc52fcb1a06d45eba2b97721967ae1617945eae03699180c65d09c2
MD5 712eba47df6856e69725daff40b4eaa6
BLAKE2b-256 e78aea2de0ee640cbf5fbbc03d32eff46e0e42406c3c6d0a3ccd02d55954e685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 916eb7f36647f3542c6f3034ede1f4029fb80fcda743b79a80d20d770e536df1
MD5 7fd62c6e8755fce6a85c84132b9b02fa
BLAKE2b-256 5809aec36845ba08f8b1ac9490de7e6adba9ea5caaf8e354ecc9284fb852a063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5ed1d81a143c82654297886df521b9ed8dd2f649f5e4e49b5de58a808fc4434
MD5 f2bdee50b99c8b33f5180a0056686d88
BLAKE2b-256 42bd455ba22a3afe80d54957f2a7fd34d7087fa80fe8dd656e374cdf16fc1504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8db62803484ea673b0398dc29b51b6bdf0f0616ecf32cb62d56cf129d491cb22
MD5 b6c6be032fa198e699a7a70753e1335c
BLAKE2b-256 3c850971f519c6498cd4a807772c09e4f6d41ff02fe58757e2eeee68dcab1723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 491fc5643c68753282c2c8f7de950adf2af6400a6a78949b56691cc5fc9d5184
MD5 838d1c956aef039762c4c394a2e2e772
BLAKE2b-256 e39b5de681c004efc60e2f200be21644ffc3081db1ed3d7a7705b06d93fffa74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be9343a203170a5243e790d6048806cdc56f410f5aa4054cac9c4fb88c89c5a9
MD5 eae529def1093430647e06c58c8ff220
BLAKE2b-256 486af1a4a41c2585f9c7b180c05bda815c9b8aae1d02ca67941118c6f31a67e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49ae27e997391f12ceafbb9dd918037021bd18e391d34a69efa93d85b18f2bde
MD5 f93e393057b8394a23cef4b900e3a17e
BLAKE2b-256 dc3446cddb1ec60593d73af22c31e699d223b7270559ae6ea1d3db88e137e82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c7db1d324a2f9b2c8aef3b2530bb249bad58fbcfd9ffb51510f7222787445f0
MD5 77403ce07b75144005304edae90af5bb
BLAKE2b-256 bd4ee6c5dfa2e8b46cc0115e7a19c1b0bb76aa15c6244369701b2b2473d2874b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a680822a7a17f375b0adbf9573d5125e3d54c5e74bb60d3c2c8824a2797e92f1
MD5 35a7a6d846b63234ff9fa2521fb8532f
BLAKE2b-256 0af0b4e888fc0deec1a752475f1674f733df7146f0e4747017a87c82d2aaad72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf6e33180dfce22f7ce8b2acef63c122a5a59d47933145a1745767ab394254c
MD5 ced56928f5e0e0803252a86836e5adbf
BLAKE2b-256 5d8f0c3babe49e90325dbe44eda42963660922054ca7e9796f856dcb07090e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2aa1c3e39a35724ee45e97eae16b1617f5e25b270e238383a93da1bccbd21bb2
MD5 48d646fe80b7ed6b85f043e11e272b70
BLAKE2b-256 50d811309eb0cf423a78b1a6f6c7e205f87f16dad3839ff91c89ebf8b859ddfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b166ee2933e0f4ffeabc14402cc3b4c84797844868a1eb281525861984c73b9a
MD5 d57148250650aa712bd05d9e4b94df30
BLAKE2b-256 5eb1d66c04fab1eb16dc1c5f6a7ff0526e5449c9913c9c93977130ae2fb9bb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 07b6aaf6d898f946a6c89c4ad965380a71f77b2c534d3ccbfbfdb1d75e995b07
MD5 3bd4d1bb32b406968b42fb0fd13b5c67
BLAKE2b-256 c1e35493d52e5b555a07c7cf4c4084372bcb01e44e2567ef42b86db5712e417d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17b2c490691b030adb8bf860693cbf97218d96d3398afa4e670bf20f84ac3f03
MD5 5dc23d507ad50c4036c2faaecfff43e0
BLAKE2b-256 6738acde01d5f5bdb1e5ec3dfbe7d10df4a1cad7b2fe3a1f64f5252d66c1a700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 976f31ac6f1ada52f35417401141381dae9f286ecf6f56a84645dcfdc7cdf0cf
MD5 69853b356bfdb0716b78f37bf945d02f
BLAKE2b-256 008f3cdb744c0ec7061bed349ad83ddfad67d3cb6ecffcf8a5e84e93019d505a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 112d341dfaa159446b6534552310800de54c9972d3b9e14dcd6fbb1914cfdc9c
MD5 181698b380c0bc540dd70c91c94a8f29
BLAKE2b-256 a1f061ce9689feec6c6b2325ccfc2baa95f1be97a36b6c5760436da907051095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4f5fa04940c3f68d0575d32d477c4e1cbbbfd666a7a260fa3a37e81b423bbc4
MD5 5a76cc8d1067e9cd2947448002f2fe85
BLAKE2b-256 ca12efb4653a267bdf459f733a411749baf6d01ad3d14c69b1292c9298735b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c18363975a4b37efe4db05c2cf2420f36806d374f9561c7ed235ecb434d2d1c0
MD5 f87811991e98c46fd0321f369c1612e9
BLAKE2b-256 5bd9738d6e98295b39c14479b4552bd4c7f4dec45b7d5d5ec804dc4334f73b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33d44a45b0876a31125bec0e7f7693a9f068c2f203e08512c29d7b78a7227551
MD5 8d9287d38ec024f42568e738f5a93f27
BLAKE2b-256 3b81b228b17ad7bac2408436f5a13d7fa4652c37c58043fd8b14badbb99e7059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64c74a193705b3b4ef92d0230998f6b3664230efde456dbd89ba320fed841487
MD5 2fb7eeb946b69bf74e69193d304444ce
BLAKE2b-256 c2f959a705e2955572bf763f26b2aabb9227769c964a5e1b07f15c8f92baabff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e156152f992991b8375abb63665ab337cad1d979a1325fbb6ad446962e2e3068
MD5 d2b9ae8d82a4e5488a5f0320cd14dfe3
BLAKE2b-256 069566d19b0a77bdc14eb8bbdb2f2256b1764a1883a4941cfa904efe14402941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17da40b2bad816e5a28de7aac23f96a00c8934c2873475c5afdadff78319cb83
MD5 113fcaa5d31e96d1b5f80af45430d1ad
BLAKE2b-256 b490ea46de3144e6b798c0ce3e43eab7fe0c4d828622e1184e567ed146474246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ea9db95755cd53aa3d468034d6a902ccf74b123c9a01bcdfccbe19791198c121
MD5 8b1a0531e5004ba19386205568335cfa
BLAKE2b-256 bd9c272caa311befb752cd967a59c0ed85adc49baa26727976794109227b799c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d21285f79a8087cf8bf5aecbd6977d2f535ab16ebe151d32dc2ab9c855b5c92
MD5 c2759a8d634040fd9230de9d7a0de340
BLAKE2b-256 7ef05d640d49b0ef95f5c87a815c765beb4ef4820096342e8341814f8bc0d50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 444a9b51843aafaa43c39a36f1367cf2aa538362222058bfd17a14fb9d64322b
MD5 1f56e8c08cbc3474030ce644ce3f54e7
BLAKE2b-256 b2f1286aaebf59486cca73f2a770f3972ad89e8c577376a0ce62828736e305cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 727563320d5bd626b703c48479006314d7896f8225d26381c495728e0afb034d
MD5 5be830d506bc62674c9b14058e71fa98
BLAKE2b-256 9b92a709386552e425a4ef296bca2e6c4188f3ccac5e0137d6e934185d3bf778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7dd3381e9d9479713e7dd1183b7f0e53d8c44c298ca67472a2ac5885a7151db4
MD5 2ce38552333fc784b605791e805f9e2a
BLAKE2b-256 8e05bde7c24dae4608568323e4d3cb5d0f5d0cbbbc6b694e4a81e5f16a6f2ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d47f65e1c6ffa43d19448ef64eb686a5831b1ad068a6b3f03f1bef9a5053398
MD5 3fd0aa70d3de514a8afb1cfe633a0ae3
BLAKE2b-256 dce749f2f6476f9264c8c325c757bd0704080def63be71ce4013ec6901e20ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42ab9723cb8f8d554707c7d74d722302882270d38a637e54723938c4ac939240
MD5 62d84bf65a4590befa990fc803a88a3d
BLAKE2b-256 b3978eec00622ec0500757edc411f97dc50f6867dce69d7e3e264b970bc4d2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4e9b870925741c5d0ac047ad7bf48d88894b10e0c8083a35af81fa1bc7fde11
MD5 fcfcc79949998c6bd39fadd25fdfa635
BLAKE2b-256 366ac71889720c4858b51bb44b52ff3ca9a091163b7e8f835356a2aa06a81362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18348b07f15be7015bcd1cba63b98467114140a90e4de079dd41e6ae94c556d5
MD5 fffc4aab8232a6f56ac36ffbe2b5392b
BLAKE2b-256 561036bbae7115c99e068f9f4386ac2f36e2ae680f1005dac93109a8608c4c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a67b2b29717d00f52de89eb2dfc4c94e288d08d312e7512274f9e6d5c6c3b43a
MD5 07afe4a9a91d735da0cf4a4a0eb0fc75
BLAKE2b-256 410ee14cb0007ca7a72958dea793b450a743aac3676397b106c21b2b8caa8e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88c75254c49c3c20f92df618456df4a10ee224e754653af4547bc767afcf51bc
MD5 94a8a305ade1f5f7f4129c88e7440404
BLAKE2b-256 14873d193211da792b0cc4dee76a56a0243c188acdfc3e781d7d989ab9810f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82109f3adc71a2e272a4f4e1683eb9f87a640477cf4eb4bdf884d5f36ea8e05f
MD5 de8260078a844b672d7013f8ece38060
BLAKE2b-256 ecc60c09040295d29ec317c8c837bb7af2e9e803a7d1a6161ba409f9a23ac951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1bf2f69e02c695f2f91899d2d2501c68d6a74885b9135ed59de78d02298ae6e
MD5 d863696caa3edf25e1b34597a6e74a04
BLAKE2b-256 a0485655ebbc2b246a1d504b365deed2da895f71398997236d9f0e16536ba30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84b12448a0063069912bc00727d688db0d021b3ac681b25f72f17e7b5e84e16b
MD5 ae607ba55ecf549daabdd2ff16fed03b
BLAKE2b-256 940611539bbeb346349f34b900a18f27215b0a8f6e1d9d7fcc0e8a25225afd68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6859b77f70a754e91de195cab72976d0f204b4cb003feb2fb9d9bef531b93c74
MD5 cd505335138310c22f8f356bd30482c6
BLAKE2b-256 b307ed89d4855a72a4ca8b22b5051902f2010cd8d201e93caa9ef878cd810504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fffc3653423f4d382e18cf81beaa827bd15befe95e91e0352d7365e6f27b5600
MD5 735863b47bf5e0103343455540c99042
BLAKE2b-256 b7885d3cdbe93cb9a37c9f7e66b696d0331d5f2f20f8393410006329bfe87728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90fab29941107d7b0c6f641aeb75c95cc309c0de7cd03e89e17bf8d6fc46e385
MD5 a386af8b8b668de56b26a73d73beb09e
BLAKE2b-256 f34a850eb582d6a7195c5a1a6451e46b1bb8cd4e670f4fd3b4e18afa4af65419

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