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.


🏷️ Metadata Filtering

ZeusDB supports rich metadata with full type fidelity. This means your metadata preserves the original Python data types (integers stay integers, floats stay floats, etc.) and enables powerful filtering capabilities.

📘 Supported Types

The following Python types are supported for metadata and preserved during filtering and retrieval.

Type Python Example Stored As Notes
String "Alice" Value::String Text data, IDs, categories
Integer 42, 2024 Value::Number Counts, years, IDs
Float 4.5, 29.99 Value::Number Ratings, prices, scores
Boolean True, False Value::Bool Flags, status indicators
Null None Value::Null Missing/empty values
Array ["ai", "science"] Value::Array Tags, categories, lists
Nested Object {"key": "value"} Value::Object Structured data

📘 Filter Operators Reference

These operators can be used in metadata filters:

Operator Usage Example Description
Direct equality {"field": value} {"author": "Alice"} Exact equality for any type
gt {"gt": value} {"rating": {"gt": 4.0}} Greater than (numeric)
gte {"gte": value} {"year": {"gte": 2024}} Greater than or equal (numeric)
lt {"lt": value} {"price": {"lt": 30}} Less than (numeric)
lte {"lte": value} {"pages": {"lte": 100}} Less than or equal (numeric)
contains {"contains": value} {"tags": {"contains": "ai"}} String contains substring or array contains value
startswith {"startswith": value} {"title": {"startswith": "The"}} String starts with substring
endswith {"endswith": value} {"file": {"endswith": ".pdf"}} String ends with substring
in {"in": [values]} {"lang": {"in": ["en", "es"]}} Value is in the provided array

💡 Practical Filter Examples

Below are common real-world examples of how to apply metadata filters using ZeusDB's metadata filtering:

✔️ Find high-quality recent documents

filter = {
    "published": True,
    "rating": {"gte": 4.0},
    "year": {"gte": 2024}
}

results = index.query(vector=query_embedding, filter=filter, top_k=5)

✔️ Find documents by specific authors

filter = {"author": {"in": ["Alice", "Bob", "Charlie"]}}
results = index.query(vector=query_embedding, filter=filter, top_k=5)

✔️ Find AI-related content

filter = {"tags": {"contains": "ai"}}
results = index.query(vector=query_embedding, filter=filter, top_k=5)

✔️ Find documents in price range

filter = {"price": {"gte": 20.0, "lte": 40.0}}
results = index.query(vector=query_embedding, filter=filter, top_k=5)

✔️ Find documents with specific file types

filter = {"filename": {"endswith": ".pdf"}}
results = index.query(vector=query_embedding, filter=filter, top_k=5)

📄 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.8.tar.gz (35.5 kB view details)

Uploaded Source

Built Distributions

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

zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.0.8-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.8-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.8-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.8-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.8-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.8-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.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.8-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.8-cp312-cp312-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.8-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.8-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.8-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.8-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.8-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.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.0.8-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.8-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.8-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.8-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.8-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.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8.tar.gz
Algorithm Hash digest
SHA256 1cab3fae59138fe0ac32e51fc7cfbf0c8c8aefe3b38144c87904dd725b71e9ad
MD5 94e745af7b526f87201fbffa829b3255
BLAKE2b-256 0aadcb076c68582c4ef0404b1e6963c8c3609f5c67cf0b07a4dfdb41a9faec75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61c13f00c0d1f9dce86918ff9e272ca8b84b1c97e765a7e7151e00bce8b19441
MD5 9d592ba501166ab963f62644d7b0b205
BLAKE2b-256 912675ba37653534609e96a6e24bf21d1ac0beaba6e57ee8333f23b895000bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13a143f114a9ef1bc36bb58b1a1d5cb06bbf9c7a200f20ff23fe1d8b4d050812
MD5 9cc30673690d6532168e9fe71325a450
BLAKE2b-256 95cf259a45dc240d4022e3ae2d4f6a1475b9f2fb6f0c479fdc8a161fe2056a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11c4bcd26be1e6b99cd5aa3f21a659b11f0703037ace57f6a217af9aa464359b
MD5 26c2b3ac9d494ddd2fb2097d003a3eed
BLAKE2b-256 edefacb558bfa0749c16877ff1311787adac72dd89f3c8dfea571ad28a184a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c34bf0ab5f433d8debcf3350bedceeeaa9c39414bd910b45b4e2619d9428a779
MD5 aa170f49667be5d4d1d049634d47826c
BLAKE2b-256 6d1d19d01b7d617713d4519f1cacd9b02760103e58093623c810e8581b098683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04d921522badf20691cc32714bc2d967dbb1bf04a4755f5511e72da4c672484b
MD5 8477baab1b8e914eed8a0a714c23cb6f
BLAKE2b-256 b0212b1330e82873a520f9a3e4fcac50eb4e463c1df846eeb74a0fe61ff61b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e07ee5a28d34ecaf501e99ce9bab4e57d3aed5b6f381fa2587ce615b79adbf1e
MD5 fffcd37b4c4838b125e55100b51f2335
BLAKE2b-256 64f32521c992d7e4f1e56f87865390b556cc272afbfe83dd1936c94b2e2d27aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba3037dae5456e58facc1a085a5fe03022764d8f01e317755d4774fb727a9a9b
MD5 0ad029269edaab58db0f4d2f3530ae76
BLAKE2b-256 91a75393765ecde1202002aedc5479dd5721ce9d351295d38310729d388a1bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f8ff795a8112daf92ecbd217705974e11d3041e60ec3310e9a12bda2f172ecf
MD5 31124aebef7ee900fcbd49292d7425d7
BLAKE2b-256 7cb9a42ddde647120151abaf8f5a2a0f9c442fb82df6db1dbea1ba266783d280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de7bfcf147dcc32dd1de58f1ea6139e60e4f5f97d534938c55e246022fab41d3
MD5 dc293d0bb9e65d3f02a9cbbfcb2878de
BLAKE2b-256 56a1343c085f32def01512a1d08423c2ba7b455002a82b34ac968e7574a12893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b2efbb64fef66396288e6c42582eb2dd5bc903c88c4db7629657e44452c25d09
MD5 981ed98099d9d2fd8a177e016b1e3d22
BLAKE2b-256 59df7d00316090bef1a2f0fcaac7ba5fdf68e6a9419fcadc4f22f00b42110353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17140c8bd9af2eef501789e3eb4fdc03335fde81bd0db45e32f01ecbea1ae684
MD5 3691070217ec7f230fbd79cd388ce2a1
BLAKE2b-256 d42f98bb9c66f46de99fb6b579502a7e630142ce797b560792fb36c191fe11ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3966e7d827c9c6b94609c35cb1aeb430095d299d4318e12f0c356c59e052210d
MD5 37ee01ce0203aa15bf3f2970702aca9b
BLAKE2b-256 4950c0339adaed3272383484af763e3514da2582d2780df84c0b613d6dc9b0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94b654ab0177d3e012eaf45eeaafddf27eee1b05da6e8afb8ca2a2b6c2283163
MD5 ac4b751b646b129a02e4a05cf45b0ab5
BLAKE2b-256 20787e278c7cff0d949bd453c3f8134d8bc8ac6bf214d99cfcd328be3dfdde2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0182a779cb58d65cfccbfb522d54481e717f76749d6b779c5ffb67aa8facc23a
MD5 0f9e7349682c340654a9703953dd8e56
BLAKE2b-256 c2dba691c765f0ade5599b9be1d4e8f5252e3c310b0d3a074dee8dae98f5e637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39bf4ddd71000b7a6565c09c4aff4ab73c8e9e2a657252c3cc32c8f1c176b38
MD5 26e8c1658fc6abcf7bbdc1824c6be964
BLAKE2b-256 a991ad93a2c483b7933a8676556247f58daeb975ccb6a58d8780649ef772b929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90cb30b37df89e1eaf694704873fdfa8e30799b57633748dc6883b1dcaffd66f
MD5 1a5fc1c0f12d69acd7d477bae628fc87
BLAKE2b-256 8dffc8a970db470373e9eed71e637858b6cf19bd05f57e908e9995f0374cbcf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31cd612b1b164ed140ecbb77509f02d17ec2f47973ce294a8dc51e39920a78f9
MD5 23c308ef7105564dc413372f577281b8
BLAKE2b-256 ce609b517f17bc1d384921313299178443dab4651eba2565ec66914bd3d11519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfb8e4ab460dbe6f35ab616978bd2287d678fc2d34a8eea4d84f55916589e439
MD5 e4aae38236d18d4b095f6e79c4c62746
BLAKE2b-256 1d06cae9460cb45dda1f46f6f120085ff6df7b34da63165d48eb4c06753ec9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcf2be2ff9121704500a797a62e565f4c1588257711fe3fd020488dd27070612
MD5 92abec44d5d1f411d58f078e3baff782
BLAKE2b-256 418caa52fc84f9fc2c855f1e91e2b94e4dd587c289c0d55496be54daaa0f5af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6845c16ff7fc767ded211caff12108da282008251c26e1b4729366f5844881c
MD5 3e6cb7704bb58860b5dee18345effeac
BLAKE2b-256 f84abc0037ba30d1b398b45c74bfd95ef9020002e8d1473c7e84c1b9883bd7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb8d5187abc823459cda750cddef2b6f7b6d8aebd7ea578c61a79273d37bd03c
MD5 3cebe6c50d122c8231afc411db6e69eb
BLAKE2b-256 743b6834173832403f33dde8ead1189f1c77e83a3698c87be85e84cc7734ded8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1f84b0fb71991ffbe6f6b651309d718783d64e99167a85490065db2710e8469d
MD5 67d670e871920500db06fb2de53da8d1
BLAKE2b-256 9402850bb93daa701489e6c9f4d0a7f27a8c418114004b7d187400f837dab161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b7bf0040e281129f09820729a7c1a51fd55c80e807c514a60ade1834c154676
MD5 a5bff1df8b3b841ae5522c85652af059
BLAKE2b-256 f6d1c708b87f7a2eed2ea4271c91779559736a6b27553d59ca7f5dec1c0f45b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a688d119e4579751eaa79c7e2a296810b379ee528c932ac99e59ee18bbb4363
MD5 8bedd619e22641c69a02f16d2d1a7281
BLAKE2b-256 d9900b88b6566a73baa186fcb981de4bf4514b770aa7f1ec9a4519b796ab3c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8660c2e6b5ed74def07baf37edd2af081192b07d85ee6f254c5eff2faaaa36d6
MD5 f7cb2f2b7de8c7be5589925809b33cd7
BLAKE2b-256 81c4a53673807562d5ec78ee9e09e8b9a042f0734ccff361c6dacd9d03153b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 120232eddcb830c60f805b9c39fe28542089af32c4df2e2d8f7b01e9675282a7
MD5 3fbe6926a56f9f313137b75ccb68cdbf
BLAKE2b-256 9b4c5a2d4c3a13b3a663e21254beee81a7ebcdfcd04538ae0da5a51d1c3077f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f13fb8ef924c14729850b7e60a3da66fa46da6919cf39ff44e91da52f2a65bb8
MD5 65af72ae2ef6765434a82e5c2a0c2f0f
BLAKE2b-256 4e09d7aa02ada95a54a86efd1165d0bfbabaf307658fd1f0728ecdca49f69aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 993b57a1e01a63a20221ff481ddd1f7d05c8d85a5796907965fdc4462ddaec8e
MD5 87ffb80a5cc4c37d031362698d65de1c
BLAKE2b-256 0c19747715615edc1ee21f9f9bf1880eb753ab946853f88747abea94a440e024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c35a663fd78d52f6d064d496899d6ea4f842cae7ff6f51adbeade2135c935b13
MD5 8e552065006a1b3ae9ca458bffdd9f35
BLAKE2b-256 559ec6b6f2f4c9d1255e57a7d160539ec48daa9a96613ee720b44716791a39ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f2cb4c9bdc4c05919e0736ec39d8e6bf34841e3408ad7fe15f6a69bee82c83d
MD5 ef57e44dee9e2ca5dfd1232dc9a5c3e1
BLAKE2b-256 a1ebc2d8c2684656bd17da989328b769f3616337743f09795ab97a426b4bf842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cd69b4fd3ecc5c8bfa86f07e29ee09583aae43f9b5d54e17c67749d9263da325
MD5 4750b53bb81eb0670781fda7ee5a3bce
BLAKE2b-256 d9826c5da0030327ec920b2a5619ec9432683a2d9426dfe1e6e7aea0ab4679a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a779887af48cf6cd583a7d5883169c451e78736c68fcd7d777fef5184f69390a
MD5 2bbb2b615c400b27bb45f1c05343c75a
BLAKE2b-256 bb2d73a9bdbf49e068f48dc7d64943520e9c612210270a3903c78433260c092f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7982821724e580de2b238a3fae2f25c8494f887fdd01c6cfe5f1faceb8c42020
MD5 cfc0b949b0a9b0da8a1c8d7514a08183
BLAKE2b-256 77ff8543e3f636ef65cbb69362f50142ac466b91dbcd49f76602b0b11fa3268c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ca793e3eee3fc5c6c5f7f181873446dc5a4dcaac220d9505e71ccddb653e392
MD5 5b60951c5a05f80a25f8782f78ca206b
BLAKE2b-256 946627f23034a9071e9ef732bb35eb659187fd9e41613797c1f2061efdbcf05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dcea94254ed057831d62ea407f988952780e92eac1b9d42e0fd1a35a9c1b5121
MD5 e2576a72b9f0f8c03ca60d97f0055a92
BLAKE2b-256 bdcad197f1bd5f3eaa8b81b2340566e0e76ac470b4a1c1756c1cdd71ead20da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d23cf6d98b17d3f851bc2df6b45c3253a10596deec88a3be0c5c38bbe7d8ecc
MD5 293fca0df9f5ba9634b047becb53b2b7
BLAKE2b-256 84fe922805d002d35838c03d7d31d5dc8dcba154a856a7c8cfd407148e1e344a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e1befd322c5de01dc0c95db0010593b797d60272bdcf9c2f5c0d0fd3616da9d
MD5 8592b5869e70c5e09d8d9a884d7828a2
BLAKE2b-256 b54a882e41c3b49a4c36e1ebbcd26c83c66888c472fe037bffe68a0b99a3c544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33ca7856702f2fa8435eb6a660eed582a2ca309fd62e1c97e6ad67998c89ddf1
MD5 11cf1a3934b879cbf28d8ddc3aa35ee3
BLAKE2b-256 739d859634637b528ea593b3726edcfee1415843b6d8dd2238cd95fcbfbb6f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6406c7e2bab9f1b46b67cfc4c52a9eb1b1c987bbcf9c3e612349e1c3b08d96fa
MD5 b3e87d9794dd4d72b324cb777e85873a
BLAKE2b-256 e18006d30dc2b61a6d35cb6ca88feb83ad1e394b4a6693dc5510ff960e95329a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cae01dccfc9a8b067642eb0b5d6555b12fa6703342e5508678c470e901ef604
MD5 762333cbed678417c500dccb6e3d4610
BLAKE2b-256 7a2197679d36cda56113db9cfa268be18e2a0b59c7d153cff52cc47c90ee3ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bc57353eb40412b0b50da6bfac6952defbbc980cdafee4bb4bb6357a1997709
MD5 b8356e24237991a184c015df80e0880b
BLAKE2b-256 31725d2c87dde87f4df40ce37d73797f1fdbe6debd884b7d8dea28d54e46ad75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 457c1868e3f7c953d2f5128aafd522f5bed4d3f4402792ded5abd3b2ffd67387
MD5 5fa4913c2fbf5efe6254b3d01fd1fd55
BLAKE2b-256 65e5b91918d6dcc35feafa45d7a0fbe39cb9e6b55620548809ce5bbb48db7f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e5e64776bec1255d92a527dea678a004d2e39d40b5dde7be8a69ce66e7be2e
MD5 b58233d68150ccdcadd6757fcead277f
BLAKE2b-256 6b1b15a790112ac48cf532cfd4a215e1f91fa85dbe8742d7838b72d462d9c17b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b07d5525f7d94d14b9452681494b01bf9c3a7248e5d6162884c9121dc9b3ca32
MD5 e55b6155d0f4c144733b9689f2894cea
BLAKE2b-256 ef0cc6b3911aebbe2872723983b5654e3875253341e9b1c92c99abbc3de9ad8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2016e020a5fc4679a6e558a4f8bccd6c916248aa56bc39e6290d4993a9c43c71
MD5 e2c7748bff87f7e1eb0dc9bccad6178a
BLAKE2b-256 47784c38652f48b6afdd6ae47895a0cc6fb3885338b5874edb5e3d9276455ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79ad0dbff6ec48fe76e067b83b6e24e28ead3d84fab610780d56015eacdc1292
MD5 bb0e12264f4dbb967a5db1f9131adc93
BLAKE2b-256 98dedf3225be2ecff549ab949f071a8b0fdae85569e928bf161f848c43ae6dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0107815f453c8f05873816de045e30459714ae47d7ece5c972701bd55e6984d7
MD5 8d857d8bd978f076bf63a870b2acdef1
BLAKE2b-256 adbbc135b1589d57a5dcfdd74642d03123a03e2674680851082c9eaf300f5ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9a12240b017742eda56420e38ddceeb19665c6eabaed149b1a5e6be6265c1c7
MD5 9ae702f12f8c44a5cb7f7eec7782c05b
BLAKE2b-256 fc9332aa93396544286464fb350c8f8a0fcd66910a5ee9afa2a0af3235480de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2eb4617fdbadadee008dc4b15db4b3597c4875fe27ed9e9172286d7b80522a07
MD5 25f44d639c2895897852b934e5d6d105
BLAKE2b-256 3d71e25844f2b1a0ba7d2bf3811fb3a604a511f974168ed39bb1e2dbd3838a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e7724ceb1bfa519e00be57dd4d87b5728c2e1b6347b69fe808a7de8b1dbf507
MD5 2f301222e4c5cbfb9c968039d1ff81ea
BLAKE2b-256 f874ad68d7789d750776cb0623a3c789902ba39c9fea97ce049e224785ce8d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4a2ff2d177083d64728b3cfc84a2e6d99b48d2f72b13fb68f80b49155e9c6a7
MD5 6e4f3260a2d19b4a0f614965974d302b
BLAKE2b-256 2aebe5af4778417d5b7fcc43b20d40795139fc40fb8017b8c570597fe4ff4370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68c29d9638e9d9ca9f23ac3516ab335fc275a62db4c99603bae4f59a6f44cf2a
MD5 93e30fefc53efe1ebfce6398bc1feede
BLAKE2b-256 8f3374fcf33909c6af51bddb262599cbd26890a82a29080c31e359173b6b91b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31f743ee7702bdbe31e04fd474cca122bda223f738a508b9134da0442277cac8
MD5 fc12f8e94bd8d9a8843835a78cb7c80c
BLAKE2b-256 00bce63d87cdad2617f5e9fb9d66f0938459549876a281acf44f075ec80dbe2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ea7e0e5c30d717134e3911749d5f91a1d943fcd69dbf47a29bde888013c8b40
MD5 4af24976280a0e00b26491321f15373f
BLAKE2b-256 8f34ab3f6d0b26b5d7b2ca017eee4b60dbb727560ea219d5f14ded0e1a0418fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05bbd4cb85b74c16cb8bed8fa73e475baa1d207ccd53c4593da1abacd2038a5b
MD5 ffadc64a293765fe21a43e2ea5876005
BLAKE2b-256 329e1c20930b753830f1dcea55e4ee5c037cfdf11c8d469e37b0910d475c2f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4d3537815f3bb2814b5c6072e356d5c67ffadb79bd609ece490b663785ebb873
MD5 c635ec26be5e1d032d20c6a084f361c6
BLAKE2b-256 0eb16cd0340ee4188b494dbab073b7d59ba7fd0c67b6d56900879439b589f8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f61c6eacd0afecc97203105c39a6f0702498315168080083ad138d12ffd15d
MD5 2189ea9f752e272838b3e56076b95862
BLAKE2b-256 e295a1777214aaeac495dc87823acc39e031d2964203a0224664bdea80b770a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03980bad9db23c4b365e05f80a3df38ca9e2407f7362a771f923eda400956ca4
MD5 3c5bc6cb25700d00e62514ff146286af
BLAKE2b-256 8e0afe4686ab99afd26bb4eb69dabbe3089afdb88edfb85ba8ee3cf76db02e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 00c564cedca4ca29af40b2cfed1e49be77231aae7778c2874ef5e831e2ffcab7
MD5 4c259815cad8b4ae7e5b3940f4c9ae19
BLAKE2b-256 109cad395178ff71f163852fb9034e10deead601935c99dc62c0136dc09fd120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3ccc19a7bbbd1c3821c51b8b6bb1d2f0aba6275f334fff91540bb547c18d909e
MD5 4eb3602c207dfdd3891a5e5a184fdd11
BLAKE2b-256 8e3c0535d3d11708435b3813aa786cebc057c7fbb75ca051c85057992b3ffb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99fe6bd16b3599e3c30f717e762bcf101f247c218b02d0532586e6a727e04137
MD5 e55a51c1ba9c47b4439e0a7a52122c49
BLAKE2b-256 476523f0372ecbb1ae69e833e4abe7194ee39a7ba4747c19445627d2bc79a1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6733a01b161ab7b9cf5fb7aea7e94fe4a3b652a7983b6bce20bbba6fb9493888
MD5 3aa505c6a25c82af7891dbfed715b5ac
BLAKE2b-256 b7f0df67092e3a299db69472f2f12db8c2cb7298fd90137e3ecf099a21913221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0be85d1ddb340d69cae50763749bd6cbf4f3baf7ab8aa5125985f3ad3d9a1045
MD5 9f3f6f858744243c0a27f1e7e816de20
BLAKE2b-256 bd6fba977cbedb439dcb7ec5fca710b6528949f182ca06332fcf757965d46e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30037dca1ee263f48a64a19ed44a9e9ad31823f35c5d20c20d416bcd49aeb321
MD5 21c8ecc91071977eb8f3856c02490727
BLAKE2b-256 ebaf4a4b9b2859a4579aed85c0dbb9804ca3603be2f1f888c47fa2e6a19d444b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 455ac54e36d1b95a91b73199172fb3c52deff5a183f304aa2f0638de1120b28d
MD5 b22e16f72ee2d458bc6c89e5f43a25da
BLAKE2b-256 96e5e9078a9e3fac0d708399c14ff6861eb4fb7c2c1203c4c653598ba1a40f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c59188d341d6b6da564abc98e992975f745b8f3eeb4da95b3a969604ed604ef
MD5 c6ed0b568f979dd2ae10e66e17826ad4
BLAKE2b-256 f9f047dfcb99a7a60b1455f46b91f291e0805c5dc3792282d3d881463bc148a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa4f8d69693f29110933ea7475a0b9d8205f10ad3a032e87a23a7c5e8cf7076a
MD5 24242f67e9de062f7f8296cf9179a5a1
BLAKE2b-256 3b8144909756866ed28a8b27520902281097cc243a6d42d47f1b53cf91bb0a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69bad7a84d36f7c01ab4e945672d0cb6c0f0f0ae4c424a63885d2a859973f099
MD5 7d4c0ec2ac07c3b6d7d14c33e61bfe37
BLAKE2b-256 65c0ce04f61be4769b8bab931f18e1e3f01359bad994d61cccefb1f333a740d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f45ff7bea0cb083f6a3657a98c5a8794a497c54420787039936dd9b3d4b1c3e5
MD5 54a76c1a6dada6416b304c38b1900ba8
BLAKE2b-256 0e2aed700fbb0aecf4c648018b5ce4f2703eb818dad2b38cbb97f45d901ea822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ecdd1d63cfcfbf9f8a954bbacc01f366c85b8d9eb18479f923af4af7437d224
MD5 cefaf2c2a655b61a212a7894327660b0
BLAKE2b-256 0f22f3007d7cf690e4f2cb30ee502b7cf9b4c25c55f769ecc867e1f161d873b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d2181cbc5af12b0240ec8af92a5bc37c421a1987985713bcdd2971c1d7ab9e
MD5 d24c6297cc519c269c71af52ff88b87f
BLAKE2b-256 c006f59a4d227541bd466d87c6a7462e8187de72de34fed2bcc010786b3472d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c02a4b60ecfab146fdce42970d8d1e2273a50a4707ec9758cece925438b2c223
MD5 240f652a926c6367add661554220e6fe
BLAKE2b-256 75dbe56e41eedf105d95fe5e6352bc0645b899e6770b90acb8605c70eb0678da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63f044313875fead3465de7b0d46b2d9bec319202fb1987ec4aea7cd09d330ea
MD5 77e382c151daabf8c6b53466852139e1
BLAKE2b-256 e600226122ade474b67565bec3b35ea69d0d607c6495958563f2ecad9d92d56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6f2850f2a68d3d54beccb13466d020ee6cda4da98697f85aaf1d9caec833a695
MD5 169626754d5df9ea101be627e674b6d9
BLAKE2b-256 4ff30155d4953ac0690004e9a06f4c799f7b6adfec06596c01ac80f03241edfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddd4f0d46e4fa44b54a545c3fea115ffb41b1d647b21a1aa8c794c1eb760c744
MD5 e7286f09515583fb499fb615920c5878
BLAKE2b-256 52f2febd0f316bf398f2b2ad0be6ad9c1c45fdf204a75d71efd0f1d52dff689b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00d251a617918ba8bf108ae3575feb96e5e78ed24b9d64166398b0bfac692334
MD5 39021604fea92c188ef85a7550a958e2
BLAKE2b-256 29a11dc9a9cd523047557aa47f21497cc95dc0e031f45892453d3074a1f5e0e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d0e92790e8002965c28d3602bf0afab97bac76f177f55d7567bcdf4a67b982a
MD5 3f77d637bf9ce63ff98ea62e8759fcdd
BLAKE2b-256 931c6ddb254ddee86fcfbdca5be90996302874409e7188f7dc94f3bab1fd1c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d24d86ff21e2993006169166b95b1120636d14c2079210efd92cca055667541
MD5 9e4e7b7abea49fb541c202343ada6386
BLAKE2b-256 c82e0ebfa502068926d871a65fb78f441b32c3a27c677bcf6db83e69b7b7ff89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9caa0c626ee1523b1cccfece0a4d13e19520a2d78e73b40159a6c6f67a8d452
MD5 188991edfec268fb7b91d0d339093173
BLAKE2b-256 d4a0c6b0434cf8d5c62057fa4581f3ed27f10b6dd98831e30be924eaec6ff73a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b51d3d37e7ad70cc67d26243d54dd7d7b7df939c36147b9d7c01a79374e325ec
MD5 0429243fd582fc6c1fbd8bf4be278cbb
BLAKE2b-256 1cb2536b931b7bba059e8abed0a84155ec7de433fc693f9b7fc531a2347fd860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71fdd538ed40a9abeca957258160df82839520cb726f54ac497fa19d9144eca0
MD5 85eb47c415bc0807bac01f7743e86e9c
BLAKE2b-256 14890506882f8990ea317cb4bf8fb39afde7e150593669debe7dd99a4370b75e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c50811b44cb201ad562db2cb6f768750782d4ea69b0a58ad193a6babff6c887
MD5 3cb12e65dbbee248476a28a1c52cfc43
BLAKE2b-256 5e480cef10feb7268fdb227776e2cd7e99a4b39bad3afd60f91f1e4334fbc2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b41c01eb9a358e5aa603d9fd91b1afc369a24693f76c00583fd2dcd17abc3c5d
MD5 da639d6537fe3c1049ea513bc3c6cb34
BLAKE2b-256 a8be35db845ab19cb449c480c9fc59893ff9f57b562e2dba2191d7eae8a700c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57c7cde4e4471063be0145885bfc5968c8c1c7a548980258235da098a93ee497
MD5 94d413a5da28d0a56528139a493d8991
BLAKE2b-256 b2c5d8b84cd53258df85b4b3a1dfcc4e3bd38b2c10ce0804d57bd9af9bbc84ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a37cbace6a7b458e3c6be5453a12aedd48d21de1fb410eeb7e33fe49d0ad3e9d
MD5 71f115caec3868f7c17cf4054ac1bc1d
BLAKE2b-256 f890007d0c7fb941ae61605dfabec6234c3818b61ffcbe56445acdcbf5a2b3ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2034bd309a22f8231dfebc17428fcc6fd98cc1b761886b6da08efb1705b08fba
MD5 e5d086a6e6d03c11c01fab28b3cc0ff1
BLAKE2b-256 76779a8975a7c4c84b662e42a3b0db342ef2983d9534893417473b238d442b4d

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