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.search(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.search(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.search(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.search(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 .search().
# 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.search(vector=query_embedding, filter=filter, top_k=5)

✔️ Find documents by specific authors

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

✔️ Find AI-related content

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

✔️ Find documents in price range

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

✔️ Find documents with specific file types

filter = {"filename": {"endswith": ".pdf"}}
results = index.search(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.9.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.9-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.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.0.9-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.9-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.9-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.9-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.9-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.9-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.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9.tar.gz
Algorithm Hash digest
SHA256 423109de82f3fa9830ea5c7d57acabd588b8d6b1aed42cfe6057dccc1ebdce76
MD5 a8ce07e5e0d515fd35f92858c0e916db
BLAKE2b-256 62f99482e21a8b050afa4d453f431114be7c535ad441bccdca179b26e35a0a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dacb130ea8cc03b2aa6f5c8743a80321f6eec812e9a48c48657e0617b81bc40e
MD5 faa43fc6ded632e346ef8ab2db986e47
BLAKE2b-256 8ff129f94ebbe754904a8f740363815655826ee0761833d9e4f3d4746b34a28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 789116ef78e6f06686dc512a1f44357243dcbe406373bebf9e8a230c1e9c12d8
MD5 b88aa28937642438ed35ac14b8ab8820
BLAKE2b-256 d94753ab7298f6a0084bc689c03a5dc13d1f7caeeebc727e258d8355c9b34cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 234bc01890e018b43c3d07725026824730903191072f2e1eb164bff7b7e5a3af
MD5 eeaf78839114d133989317154d5eaf96
BLAKE2b-256 441fbf74057ddb033299daebc35211f006793ae805df6989c7a31e0726b14b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 645b6bbfd2f52e673c6a57eb11f605d415103f6c558d76662631a70d87165556
MD5 0c2eab1a01ae2ef12d6a1cc417b84904
BLAKE2b-256 f4177579dbf2e8d6126fb3beb503ef700a3127cee24d78a511a8c162e11ff35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1698dfe3c15e060e5a9a60e405d4f946b0be0c69102898f727161651ca197354
MD5 6470c28c04c202c6b1ef8a0d7b2f971f
BLAKE2b-256 e239b70be42984acddc6900014a65c9df6d25b7bcb75be6a45b16531b3946076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fc55c8d48ae8be83c254aa2d94151b0f1760fb36d1dfe1c4b6271e1ea34154c
MD5 127afe38fad7a9db0272d8763acdca26
BLAKE2b-256 1a5a550f3ae3246488a785efdd2e0af9d2ef88a6a65fbfebacfc8d566c4f334e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ce928586eab18d221152d7f9ca0ea43d706a4ab81a71ae9bd8e7c7a8d601d1b
MD5 0e242eed96325246e303fe9dcdd76800
BLAKE2b-256 326bdafbdfe065bfa20bd1ab2db5a1531a1bb46ecfff0bbbed5c34461be86c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f20943ca2e5dce264b00f7a13b3c5e5c62586eeff781cdb725856c0afe7e25d6
MD5 9cf32bc28d12bf1ff2631c25a8db231a
BLAKE2b-256 7cacc00fc7a588e1cd0fd8208619a7a8f383e74c85b8e2ccc93e8883e796f004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a84bb5dea5e67d1f836479547c76eb6f437e16befa6a464e63741204b4f675c
MD5 7598654061cdee57bc9aad909145743a
BLAKE2b-256 affe4f25835637a449bad932696de8d1c9197c54ad21d5fe62405a878c48ca9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e31eddd17eece21de758abe53b9607c2edd54500bde140cbdb3a0923187750b7
MD5 fb4d43a69e1e72a444e6fc96ad4fb4dd
BLAKE2b-256 2e8c939e73819108751b6751d19913beee9c419f32d172c4e7a65873c3d1b68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c9b33cfce74d79e8195cba98de5d634af60aa25c35d64b52cba779794ca578
MD5 057db83848698cb350d0d9260f050a74
BLAKE2b-256 3ece4219bdf4c43dfd71149aa189d3784c20cf4df900d148bd17921f3352100e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7138e70fa9ec029fd9d3405a69f59104bf47a55fd16de5ae08ec4a609d167afd
MD5 4144a6022c919f99a8e223e85c21c092
BLAKE2b-256 309747dd57e79c4f837a1c15b7b65de0ca483b7589641ae118c98ea3280b4a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c0d7a91408beacaaab65724e56d90501139749a008b54933427c583a56ecbf4
MD5 0b65ec33a5b9ab415d2b31b9e180ffc2
BLAKE2b-256 475287cbc802c9ff74fcb67ccc71ba93735613b29c83e8a81d3bfde4b1f9a660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 860170523a7ff3d2f443d09b38d3acfd34f43a73d8a1007b217bde2fbbd011e2
MD5 7e5181866c696c531d3c08ffe5b7c5d3
BLAKE2b-256 2a16db3deac129dbe7a71ce0fce018ce1f978ceb7a5c457765ea8666a20d20b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc88f10e303c377e0b1f8fd840144eb863ca86a4ee8122cd98f17d066f42ce36
MD5 f9b4865b9c788849983e8b05c48edbf4
BLAKE2b-256 8691c30f7a7bfcc1a9b14ccddd5bb572208501079be4cc5fe895f8cda60e8da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 530465911b66e3f26caa6875ca24b1178a84648392e58f4cf0fb333b4b63868e
MD5 0c8c0093077286008767663700ad3a00
BLAKE2b-256 8bd6d0794b0addf65f0e6d3b1d33823266abc2b1763eba664b8b9ea8f9162589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a30aadbe9e3b5ba777fe22af23135d6b8ba3c32ce0c88652730fe52903cbd564
MD5 5e0b23d4115198a830a46a46dde82ecd
BLAKE2b-256 2c7c5dd679459788fd48fad807f0c229b259aceccfa9d7858c66b9b679126eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ca25b811c72bc1f7b2a4d407ccdbdb48dd037fcab146be536862d040b8354e9
MD5 cf023b67a1dc66da4770091bba65bf42
BLAKE2b-256 e4dbf4398ac0419419bc999a58e92d920f39c194646001d37d5afa899d74d05b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 904d432bd9319c4bc1423859b500eaf89a15eeb077159102d36fcd262dbb3890
MD5 032952de3a2302f5e870141f2ac56b49
BLAKE2b-256 87808223b33e814f357c8495aa887b06287d10e85888888cef47c62d52fdf07d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 968270f24e549629784e3239eb9d54263bf3cd619c85229b3dfe7c9bcef2f83e
MD5 509c1963eed7dcf87190f8f9b917e136
BLAKE2b-256 b62fc4f62cd8b03faab606bb08e8542ccd4db4f95660cbe4a7d49b37d1c825c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a16d637b5a4fb3dc67a0a564dc89599e25c77298d539737b8ce29a03136d0bb
MD5 99d26b674356d4fad4af63d0e5965c09
BLAKE2b-256 ff72a93188ec72f612b696c9916dadd1e0deb83e4228c206fd5837da8b5b0081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b169101ae2b5fcf27ade5d4f3e341c984935df0dedbb240976f09a51c1906b0
MD5 cb568f083c759291be4224e06e0373ca
BLAKE2b-256 3e543d3474cb262aaed3cecaf1cb348a90b9bed75924c266e8466343c744ee9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b56a3e754e518d1e2c2496d21cc1390233240239b786f25935d0fea4532d850e
MD5 1b41e29a21eeac295cca29191d0d9e22
BLAKE2b-256 f25f5446573bdb8a5fd18bcf2d7c779c4f0fc5b50409d70eefb067a4c68907a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84810e46f415b28393a719ccc6ea9e7613efd9e256470eb914e499f48f762dda
MD5 dab1b27493c25266f6ce1ccbf3a2d301
BLAKE2b-256 3aeda79f1dfbcd02c96608f66fb42ec866bf385d5354d7a2c8aa4bfccf4ea4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 771bac51e3091eba805295929f2f808eba4ac0b0a2c5f40553b7c8338ac01c61
MD5 5746c97a00556afbb6a90371ae4fd80a
BLAKE2b-256 95a6a8739dba680c380aa2ee9be1a7c6b40cbc478f28c54c735e9fe50093972f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43a26eaca4960b22b61e400da2a5e97d50c81bb8d50d83a84b65b019f5a32a3f
MD5 4d409d2b3edbe12e46ab32511e8be5d9
BLAKE2b-256 44dca0b7161a0126b012df1b55e489c59b1547dafe5038707dc91ca25fc5f23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0c672419243b068573d8ba8290a00123953c19716ad3707fe33868d8fdf4e45
MD5 ac0ee3b109c91e572df7c5dd7e526a12
BLAKE2b-256 b607ec6e3927719c961d48074c4d1e412505ded2d4d58e71dfe2a9ac40df809a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d28eee0fe6a3fe3e9cdec2c072af29c98e0882c1293ded9dda2efda4a91d3d97
MD5 abc9d09a94a0ce20204fc6791a25366c
BLAKE2b-256 34a7389cd89f0e128d3ab15a70231f78c1ba3f8ac8a0fcafeb71fca6f36a24a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73d7006e7a43a0a164202809436dbd48e4968b14003c17141f9aa81f5ae9d3a4
MD5 973e71ac931d77d2cd3d84bb3a4778ee
BLAKE2b-256 c085b8261b58fa01ac02ee284aab958fc7d0e0da175689235c8c84bc2f1bd16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58b197a928857e462ca23dc9733b2d3a4390a6d01869c0a4929644ea1e91fc09
MD5 987f795afeb4766b4aea6693ed8e22a1
BLAKE2b-256 5694670a923b504a3a7fa3ff6754afc5412c4a68bc0d1a6e957eab9799aeccdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f15ab64b0ad73698969ef66e27576d03d4b08528e0783355a2e7d6bed8d6fc34
MD5 6eafd31d8541ab20d22915e2d6d68e47
BLAKE2b-256 202632aa90d9fc7d653630d08d97a81db1ba94dd9f876228fd5b360b13bd7785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d6d8ca47d5de6375d137b8a861105e6aa8a23415bca0e84c37b681a2ee77e57f
MD5 656c5e143c7f347ae622b03909ded5de
BLAKE2b-256 bdd6e6f35b60285001ee0b760f82b01a3b926d42583f918b801a0f5c7c79dd20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 754967925badc2f50df2adba66ef12f618bd111af1dcc133017ed20db8837151
MD5 be8facadc48681b50f9ed6df1046e41e
BLAKE2b-256 538d8057686e307f2913037f1dc35ded2ca370d1a2aaac841c6a5c1a7ab962d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87dea2f80e4e42bbcde0a4b54c278aac7c2fa4e06293ef53ad0af6a4a6b6822a
MD5 578c51495da5a7cbf8697683faf09edb
BLAKE2b-256 d2949d0042c0ce5a002e40b620bd1266814395aeb4e8eca1c7092bfab7da3646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf45b98ba99bcb211c38582bd746f989c8c48939fbb4d8f6e68d7ad79ad79922
MD5 34e5cbacd9c55346c3254e2ac65b43a3
BLAKE2b-256 dfa4ccd3912fef0c6659747a5240a07d735abe23d651159dccede37e979c61ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 495799f35aa8ea537e3e9cfb86922f141b8ca44ac45bfe9ac4d2c8d9faa4b1c3
MD5 3839513c9859aaed1dd03fdf5b35d274
BLAKE2b-256 28b29d102a91480e51feefb4babe69a960edeb4b33ed720125c1dfe279acc847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0906999d496287bc6c9491f46080f2ccd318124421a7573edd717830eb5fe0e
MD5 ba788fb4ed698403473ed85365238e67
BLAKE2b-256 6b557ad2aaceb467c6433d27300211da4eb0bdfaeca43e5af4d2be2e90dbdd04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5404ea1e804f67a3605dbc743ad3707677c676c8d8d35f6fe1ae82c261d2c759
MD5 84b574b69162878c61fea32261168a60
BLAKE2b-256 65cca3de7a5410c54a7fbf7282bc11f7db4a4fdb36f7d2f9355fab5a4c38edca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67434f4692ea02f042f171a46d3244dfe28219e35d2a476c744350c0a6bec792
MD5 301c136db6acd0451bf9faa8682b02bd
BLAKE2b-256 aa3c58025cdac60978fbba7fbf446f7ed89181c1bee7590d7b6e7a521015b377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03facaad74bbea0e9e0eb5532c0c636592b0c7a5425c31494d9ae2cb661c6833
MD5 d4da4c6faf4b2d02bf7fdb8bce3850a4
BLAKE2b-256 89b37f5809f2ca106ed354a4804ee547bb6ec3e46dfd87222da2d56c3486dec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c55f9e2ec965a4f2bf70d89678e85cb3175ae180dd7bb2f5b5e7d49bd9587a6
MD5 20f9c3fbd4aedde3a0f06a490d6e1262
BLAKE2b-256 09ec06958f5eaacc71ec7e1a31cf60763e6638bea58605536c83fdc355f37545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c1db1d042c71a63e01a46eb922f41011842e4321de6e8623383fe8f5c87afdb
MD5 9bdde01f007b314e918fb3df72228579
BLAKE2b-256 c2cd661584236768a600eb7b185045bddfb1c14899bc4f8b293b315337558a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d4f2fce1516860a11e8a76fd7daf120d35f404fc8c2550221331ba20bb17b30
MD5 6722846409f3ee90e17376ab151b30a8
BLAKE2b-256 68a943bd738129e1d3e9b22370dc3545647cbcbb44388797e8c207fc4766285a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 364cae9fb5a13bbe938e660df073b8ea4b774cbe97546e98532292fa73a281a1
MD5 0576e140e673c748288bb0c38ef2defd
BLAKE2b-256 12bd4769adcc017cbe5019c37debbd7ce167a78cf39597e2d909bf4d84a7416c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b33fdbc70042b3f54cb48f70705adc35100df822027b2165786c642ca5dc4ca
MD5 8b549843eaab5b524276add62d497f51
BLAKE2b-256 41328489143005914414f329ac656a818d9fd70e7941c21e49ea0abc3410ae94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 21bd49046dce351316fe438eac4755f720b0fac16cfb25cce5b799ddd66ec870
MD5 a534dbb4b567ed42841dd4a0afd21afc
BLAKE2b-256 122dfb1251b8193a57bd3a88e4e0138023036235bd0dcfddfc4b028f880c94b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61e83acf5d81cbbf2b9d43cd7c9e7840680bde38c0011bf739c133097bb4f605
MD5 352116a63af73ac01dbfdba25b584c91
BLAKE2b-256 8eb294615a80bfd8fd6d4400c29c57437ad260e4701d0031de925db4455b0ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c7eb5fd2db7311316504df8b643791e549a2b1b29587d80a8c1e5d49d9fcf84
MD5 bd78c1e2a01783d75834a263fceb15d7
BLAKE2b-256 bd8fa7ca3c6d6b253413db7bbe6ddf93c8d7f78cf868df9b03ea216c8e0f305f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbe7d61a5d6027244e0548be924683bc15ef34387a80e86a94ef6b2b8ae1d728
MD5 73b0baf21b52521291eca1fa527491e6
BLAKE2b-256 40d9cf28d62df2b6392ce0faa67a03a6af59107a64a488c3a5a827369782d354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa0c329ef0d86d97e673feb7ae8c61329143fd5f284abbb15fd9c0fbb6e277b7
MD5 4a1c76545fc29dfbbf36894e82e66186
BLAKE2b-256 64b075ac91e5563897c04de753e313c91002f4300fe136aba065a9e716f494c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d77105733b2b8c1f4e9cdb4207c9951762e90062f658baf669e1935aa42828
MD5 7d9370decaafa77ae14254883337d849
BLAKE2b-256 628a784fd145e7aaa903bb05638c5e35a7ededd744194830d6c66b9cb88ec72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79dc1e184472ef1d301bd32e3f7255e59deeff73584bfd285a327d5622d3a303
MD5 7fc6135e062c5ba74a381aa4498c1801
BLAKE2b-256 aa7bd76946e32e88c2f1db2dea6a3c785b8010857c58fd0a44a994ba44b64ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c7e104d5a70556bb4ba02e28438414b58a58497eef3a088aac9dd75e9ea9a46
MD5 71e37a03eb32073b60c20863fe04005f
BLAKE2b-256 76280eab2d5ffe7dd0e91ae5f3678256e389a9cf6b33e18572bb750ea9aa4509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 623ba606f462d877d5cf15ddb3e9c87976aa2b9990d2c48997163592ac25aea2
MD5 31777c9133d1f90a21a882065a893da0
BLAKE2b-256 fe59cb4bece3774189648720acfcf6fa00cc9263afb8417cdc685dd0ce0c2b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3243bf603220542e322e9e48688b42f770d45524dfb6a7741f744cdb584e861f
MD5 7ddc1354bfcd7e50688c962f6bc1c274
BLAKE2b-256 4ee7f5370342211a00d14a177d74e835e945d6126be4c20b0aa9a0b4740ab08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1bc15bf38c58e5ce1a8814ef5d24d7f6837bad06825040952f6fcf8afa21c175
MD5 9a785964eb84d5454cf84a3535cbf758
BLAKE2b-256 9aea71e19209b654850b8a44f4cbfbfbe1bb8468b4bbcae21338e3a1e874684e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63512dcd3b50890a62807fc3b494266f595c7e4bb8a992cce5b01605d228c2b4
MD5 eb5203be761889193cfd82af20cbcf52
BLAKE2b-256 fdbf1112663e519031878d22d17f86b6480d2a347ca0e25081eb223459cc35ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab4fae927826c5d7bf59173323f64ed2feee1bb56321af4a2a9e3fced03e6003
MD5 2fff273773542236ad974beaaa9703c9
BLAKE2b-256 66b5d2d296a085a69ad0b7dd4e5b8bf97455d54befda2df76f6881c8d2b4e80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d24030433fcc0faaa1fc1414a273b4c7d7c86262b57b4e0a0e1ffbccb85d04c4
MD5 8da2c1063e00f7339e2f21d5de091a93
BLAKE2b-256 e6e423f51c22118d15876f45b9572c1ec30b9b4d3edfd5231aea6a790bdf7425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cbbf3d9897303bbf8a0cd42cce65179e931b0932c32421ed905761527384fe35
MD5 d74f442d5e31947c7b8b96716aa9510e
BLAKE2b-256 a5282117d87563fd7d186e65275c937cfcdd0c9c6fee60c7d327557d1b92e63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c99c66b5c4efd4ea5f5f3b016c4735326a9fe30802de353146826cfacf6b0264
MD5 d74fc1cc3317c5cdd694d52e63527b4b
BLAKE2b-256 5093897980549ce05f852a5c78b88e82f6b09d4ad8baa6905fd07e0a208715f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b2ac9b38a104daf5ea5642dac78d8781ab92b0ea1f7e317e3d7b25d928ca0d6
MD5 1fb4192ae6bfc05f5d551c8e7f52c691
BLAKE2b-256 9cecbb3e7595f7d79df7d98c8f7cb83e2aaa4eec6a6ceabde084755fc43efdd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c0eef9f9c57a01efcbcfbf6ab96af82a6434e5f7e90ea97699b442e54960d69
MD5 6343a3452f08007a0d07149a16eb52db
BLAKE2b-256 9183a6536c25f69534e4669142a915be449882b9103a4585ed9a17f8e0510e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 641eb355053d70bc3146014d15afa342b833a690b8ef47654d35822e2631df37
MD5 4a9f09265ecfd6efef8b8ded581e9b42
BLAKE2b-256 d08d4289094061d41e7cdf926ed8bd7dbe8485226e11628a3e96073f6db95208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61035a7e62248eb0ea52dbc7b8208c7f941967fc51d56580c04ef68c09324e94
MD5 cee7fbbce79c00339f7768626005d053
BLAKE2b-256 9d804930c98d8cbfbc75a286aface8844bdfa190b05ade75a5ccda4a45e0d192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fde0d458f82d7afdc512994cc5491e214528bf908bcd0e941fa9f2a63340892
MD5 38bf241a84bff2a1d55b620a5a5f296e
BLAKE2b-256 02169fafa325c256cb8360737353e340bd6cf5bb2fe4248bd420ddc1fb43706b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efdb0b65bed73bf25547054be5f770fd3af3a0138bb6837aacfdc72f8700d5ca
MD5 41715a77e1592544960fa7d0ec790d77
BLAKE2b-256 e6dd714a7674498978d2e9afd5ebca7a2a39201e66be1781b531c5d6cf926437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fda2ca459630d223cce652164f32343b776f753c7520cf708683a2672131f071
MD5 2c8909ed3d8543144aab9de4f0842e01
BLAKE2b-256 172307a557b5383c7f5b8090a07c823181472f26ee76ffa4095b525580ceb325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f94d0c27edc19d7936a96dc2c167b607c1eba692159874a3497a42be6f74332c
MD5 7f410e125c175ad9e2cca3a521e450b4
BLAKE2b-256 bde06cfa163935e98beb141cf7028e78865c32e577c2f9cc7dc114ba0363730b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 73efcefdc4f94bce4ac2c4cf975fabe75a10534a625133791863000ccd943ada
MD5 87ce254a5ba218ab87248933c451c849
BLAKE2b-256 748c627096a4fa730cf1e666337e9da81feb760bd3a95f3fe936d492be4db666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df54cc870d1fecb1e743376d73443f58128247c68628d5c43e6e3d7cf505692a
MD5 39327d976fb450abffe7cee94e26cf46
BLAKE2b-256 26e1498f24193d08c642b660b43b45719892a608657c4efdd2393b66d6aa688a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02a2ae34912e04d8898752c75e8fe48af6f1fca1b92ba34f83878443debd7b35
MD5 bc8929d6e323bce4338f5c8c2ae82083
BLAKE2b-256 403a040a9480fe1086be0c83db7cab36cee7da9f2fb6af84376d43568d38407c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad47a9e2d22c1d51803c47e86a6fe4ce8762f504a1c5d2eb199059b0932d9b01
MD5 d97fe2028c4bdd3c32ccd20845dfe777
BLAKE2b-256 eae03d23dab9fd62a8790d1325a7c32edd8b55fdfe6e9f67c31015e82e4ce477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b4cd550c7c91da2ef1a31430fdb67990be89ae0faade16feadb4fb4aa912e61
MD5 d2394ada05fa49b2c4f8bca7e1756dfc
BLAKE2b-256 466d10d1ee2414913a62c84f90cd8b0835fec93081eeecfb4119ad51b5eb1bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91b33419a42108de15516cfacd10308c0bc4bd5201aaf1f079eaeb3b471eb9e6
MD5 211a7be81af0f0a9af94cb87bf380333
BLAKE2b-256 09488e3943ebbe71445c7eaef87762bb9229431bc3f75649bec748aac5dc4b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9f479d614e64bf5e6d7737d21dcb303d4ef41708392f6c05cb70139aad9bf99
MD5 10ccfd7a704851d9fc03c284a7e961e5
BLAKE2b-256 af9acf7948e3f34fa51c27bd7cb6dab4178680df28994537edd39be061c80df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10e4986e8a178a2032d878905fe5283365fc5d4b05d66b4aa5718faaf9c04946
MD5 26532182a3bdd7c757d43cd74d25288c
BLAKE2b-256 22652b8b794dbbeae452a570a9f41211490db66bbeb8ba44a95cedd5554b5008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e57d60841b43a39322094a9a9fbcdefe34a8f0ee729c24f1a3016d954856e99
MD5 e368519d026c5ce032abcf412deab015
BLAKE2b-256 81b2d390740359175c729a4b0c3baf61ed3febcd3403655b0929eea4e5819dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 461a1c7913f2b4fd9a63311dba9fc7a9304399536caf7abd65aeb31da94a9031
MD5 6939781670331bf10fa9f05e94c85118
BLAKE2b-256 a02ec9a1e2a2da1725d742997641e40a7ff205baccb5deb97262b07faa1fb276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98be469f96abda4c1e86630127684604f86d99125f7daa1143020b05a0e247c8
MD5 6047cb5aee83c8f87c8af3c1aa097b37
BLAKE2b-256 5811445f77ee6bfa8bfbe2db2387ce8c7b8ec741d928746d0f6457e10c27c21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a14f357eb7cf0e636a470bb5cf5d6a47742f3faed7af6153742ee8fb87135a60
MD5 0ab6e7baf2fd8f2cf33d124b407cbe73
BLAKE2b-256 63c729467aa83dd2f7a29fc6216eafba12899a202a5ef057edfef373f58a9c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 081d9b7cf84896ba3831d6ee063db7897404386f642b33ed3d4f61a4ccccf91b
MD5 6b7bed9bfa24e47576c14c52b6b00bde
BLAKE2b-256 3cffb9898fba256610621d116a77da35ce6a1b20310d92896dc0402efacd2480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1318ad99a4b688ddd12042f71ea24137f96106fd8ed8bbfdae47c2efbf3b234b
MD5 57213443ee5b14a1c7773d12ad336320
BLAKE2b-256 7503a7e08cccfde06520053a71980bf6c17b712caa9deade2c39b153060c4e65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 370412070af7530a790a75559e211285b1b313280c4127de73da248139d1364e
MD5 b102ff5d9dfd5a29b403ec1b884380ea
BLAKE2b-256 8c0af9589d67a7a3b4cfac8a2137988947e8d699c7c671363ae82cc6a06f3f35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01aa0545757cb74142ef971b779780e4bfc3be7ae904d67952bd38bd9fd71149
MD5 c0a8623c46b25694691c29b4d0b49dc1
BLAKE2b-256 110728e86ed15bbe4109372e92e1dd468adca991be2d5264c9228f785186945f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.0.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 879fe4e1c65bb33c00d8e041288aa10d03751c62e3cbb0e2c8f238fb82e50725
MD5 373c951517b8c13071caa429680ce786
BLAKE2b-256 ddabe10f55e90c2d9fff33ee899f698f961a74b48f18cc35017fa708fcadd999

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