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_type="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 using .create()
  2. Add data using .add(...)
  3. Conduct a similarity search using .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_type = "hnsw",
  dim = 8, 
  space = "cosine", 
  m = 16, 
  ef_construction = 200, 
  expected_size = 5
  )

📘 create() Parameters

Parameter Type Default Description
index_type str "hnsw" The type of vector index to create. Currently supports "hnsw". Future options include "ivf", "flat", etc. Case-insensitive.
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.1.0.tar.gz (36.2 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.1.0-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.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e9d7891e06d748393954e36d3b9d9d5933159ca51c7e30918b04d7c9e1144349
MD5 468ea0af140be7b1c53059e24775fdd8
BLAKE2b-256 69c367a25414f63b241777ec9e5e8ad0993f4af9978e115168f25f0c2d7e415a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5b88ebba662530dae2b743905e7690e2d73d72a95260ee1e32e493ff61cb30b
MD5 49e70af11ef872aa4dcd204c96081e7f
BLAKE2b-256 d29d4e434192c939e7e88bc6b3e21d4668b11360c0b85b8156f1c55d4265d891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90076477695aac46b02aa8af6b7730b026f01394d3b3b7da2cd7397f5ef7aa89
MD5 e15f3c0459862c73bce72a04ca973616
BLAKE2b-256 ba435c96fa2eb90d7339f80db24777db1468fd0ca798e1e857c3612521affca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 483134920e4c5b67ba30ab4c8e077ab944aeb0654e2a66cdf437acc4f8a0a0ad
MD5 0b1228a2956ea7d51117d7ce2ccdf3ad
BLAKE2b-256 e9b695b69586335db00c36a081068aed0639944b1b4c7b01e0fc9e11ea562f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36ee42176ce223d18a68bccb8d3dadfc84a728a103263d1bac07332e14f70ab8
MD5 883cb265471cd1a839659e8251fab337
BLAKE2b-256 7ad2bb3dcabc357dfcd7c03514ea7ef9329f34670304783f32e5cf4e8c6eec2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 017f56db709b1029740ff6fc5820cd203af442b50680c38dbebb35f726ff51d3
MD5 5dd300bec4356b8c5b493012f892a61b
BLAKE2b-256 a4bb944a1e0923c52da97bc3c3e5871f68b69df4a4e4f3e29f232aa5911a58cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a784731160ded34f474450934c68f299cba6b7e86c6a719d4cc2a553e904cfd0
MD5 baf42a020e6faa791a560757e080f795
BLAKE2b-256 ae14d598373f8e47e2d6366e1caf115595767f5b34ee08280a94b3edf7b945f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9703d83dcbfd261217ef4b39d99276867689d6db9d69431fb28113409352f8b7
MD5 4266bb1c63a43036ef66b180df9aacbc
BLAKE2b-256 ce41bbc5f2bbfe65681558d78cf97de9badfca3e581976083857fd72a83363ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1672d8f135848ce43b46c30daa1caab916ccaab6361be708f7d42f23529ca9f5
MD5 44aa0ae4402d343efb747dde367062d9
BLAKE2b-256 5e751119146232eb230eeb38f180760494cccb2610693d8ecc79878965d9ec2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a53e55befe040d33aa6601b0a4e73643ba65d4ace660c6bc4fecab949b720a9b
MD5 2db8dae9488c0c20fc9a854986187d2a
BLAKE2b-256 ac4edd29eae0e01a9e9baea573a735277a12751f72d672eef59b0443608ef6ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9956f6903d4be85c93089ec673ef5046469359060ed4793409cbec644bb82aa7
MD5 2a0942efd0fa720f9d123e635165b19a
BLAKE2b-256 6d4a775ba15c2780abe38ec6db1520075f060102a085b25709780ce54bbc87f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 160e540c6ff41bd46677d00dff88d373dd7ce5223bcc980e53445fb02a4f7f19
MD5 06cf6b6f6fbaa114a7a81d35ec9923a0
BLAKE2b-256 4f402ff61f9779d74ed507f94be4186a5fa2ff4e625dc32921b5cf27990a2cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e375ba3b2dfb802b9b4c056b35e8595f7b5104b8ab8f9e7f150072675b589525
MD5 7919c33e620630a5a24a1578f2e54a5b
BLAKE2b-256 7e15df61d292296414c71bd91cf3ae8810f0d7eb2eddb5dd51fdb6b664cfd4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64952fde7c8df4961909c309659f60dcea7bc8f745be897a80b750119ebf7c72
MD5 e0d988ae092d6fb34a1292b135bbd577
BLAKE2b-256 6839801f72942d1bca489a90d78ebee5299e33cd0d69118514f49016995367f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6ad7d3903770225632b943aa68b882d51840fac3bdc94cee4364c24bebfd2a2
MD5 cf08e20955905bed2f20865b3a09750f
BLAKE2b-256 7354a97b4afff5eadd8830d59555bd8a0c2bb860707052d79a6d598012070ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61da574c58f0b4ad8e9015dc226fb9f18e0b0236073895d742edc5cf4e37a73b
MD5 8ceedbc66256c71d9a813572850e29de
BLAKE2b-256 75c785872084e23dbb36d4b2ca0ed161db509146dc325250a58aaacbf69f1cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2337099cd5a68991b74306f1550fc0a9e9cd66b47464f3c674011d1dd282b9ac
MD5 dd9e5286c06991612c593f738f248beb
BLAKE2b-256 a536c75120b2798dabbb0b990e78890028fda121d6d9f4d60b7445c450dd54ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7e3e2a3d2615672ded1822943752545fce94e797b757964e53284fda77dc678
MD5 3629b9a9e3f63b4b414d32a2869e34f1
BLAKE2b-256 a17a786c10368bc5a2f4a7b676c762027b4c8e960f7a85aaa6152139c6f1c614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 579851e9937da3e2730598b7d4b0959213762428e58abbf535615d69c339424d
MD5 c8184706c6194ccdcf03c51f37fdd361
BLAKE2b-256 73a4847d0a7e56f6e7381651ace56d0b9276069517d9ca04c2e4298056be9d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d773a6014a0bba210e911a9a9171bce4e384abb411c720d7dff4e3fa75010448
MD5 0d9c2b63c9c723fb039bb5fafd93c637
BLAKE2b-256 269d93b2847e091894fb8ca79a6f58e4453201e7f95834758dd0ae76c99c2a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83ef57e03ec446a68e579d74dd5e5acf8725ebce04afbe61bdec6362d27a892a
MD5 c7e3b389e3d7f6a6008bb2d2930a6deb
BLAKE2b-256 f2a11bfe5b22c1181b61fbf373dd32cc16795513e0cf09db1e0b9d2ba7d5915e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5980c22dd5b940d7e36b356bd82857f6da8e47e8530ae1865c06592263ff8dab
MD5 aa085b11353972ad6f5824d91e35beae
BLAKE2b-256 5184492ecc80330662d881261fe91904c20b6f3ea7975bd1283cfce100f62e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b7408af4365d8e0a9e1eabf335507e1441b1613c946c2cda7a04057733ca603
MD5 55af32e101554468729efdaa91cb75a6
BLAKE2b-256 9bd2ce59d1dacf4b1853c5b6140aaf4763f05f963733c5cd042aba051592722b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84d917748d32c3bc0ab1b50deb524ad0668d16dbd57b345cd4af025896781a18
MD5 de1464bc316b5d218a778e4c2f68d8a2
BLAKE2b-256 646cbe0c61c3b2ea27a30c9077a9f396cc20b4a890f2410640e245355ff3cfc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83075e4146a0ecef172f84454f2b9142cf7f9051100718a99f989f560f6cef20
MD5 9feb62b3a19be2da54a855616ebc85d4
BLAKE2b-256 1f7d1719e759be0179916051ff23361c80326ee1e105e644dff08f371e05f1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9a84a691b1d62ab54ec2708a32024f6361021991d4d6aa2bd58c83f4e0e4f09
MD5 2b80986de7fe53ee06f2ac99a4744324
BLAKE2b-256 79a3bfc4cc6f7f17d0a3fa5659e3026e3025994f906b1e13d3ba14abd81189b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 816607350781095354e73cb8d6522d94a2ab054b5f4a3e074e790d3003cea0b3
MD5 eb75c5ca22a157f019780340ef8c9c2c
BLAKE2b-256 e03e47dc4368d6a4e7d410fec01ad54e494b2e9d10e6191201008dd762d0ed94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3264fb4e04fcbb57e521346c4cff5593b8587c8a4fa3764998113b293854a24
MD5 5915f3259a05ecbab7362bc7712a51ab
BLAKE2b-256 816a6b0912bb69fe4d3df39cb425213e1a19104422ce2fb3360dfaed3b2e74e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b32a73b2a016f7b529b6b79a217bd649c121b8b3c03ae543ba3c4fba406554d7
MD5 37fb7c899e1dbdd85caf0c1e541ec96b
BLAKE2b-256 2bb8a0d67e6e42ea8f3393c6de88abf842fad430e6effeb5f78d58c889db7915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfb117d766cd5d66ce7821051b04bae5737b54110c030bd7bc943eb8007b0c41
MD5 83005b18debc732204001b3c48d7796d
BLAKE2b-256 0b2a8a567c877b4fe0c709e772b07e818578a8a12c1b1610697e300f2bdc83f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3aad69c64714821b50f37c356e403b92a832e29f818def6bacf51c7ec1c5d038
MD5 b37f3e0ffc8909c86efe59a827180fca
BLAKE2b-256 f40f5b99cfe172f2f09ea68b2d602f16ede5b26e2ddb3dd4d633b973beae9055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0fb79024ac54b7fd0101f131f7190addeef46a93a54ad7abce83ec0fb9bba3c0
MD5 077513df8e0a23f569b148a9ff8314f0
BLAKE2b-256 1761f4e6ebc682682e755879bc1003ee4b0a03432f07735c96c2b086e5eae03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ba6e883f1b29db62159a059de28c21f657648fcb48e6ea681126ba52f1bff1e3
MD5 e07659a2d13f9f216aea0c5cee3fb1a8
BLAKE2b-256 deec295805bc871932b1c13e9bb2ca4adfa7a795e090f8260670ea1f00768eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 158a0aadf6d5e7016214e3b6139b26fb3325225d1228617f0a241c88adb734bc
MD5 dee1f76f8da12c14bbb83ab108bd61d0
BLAKE2b-256 6eeef74f243ebca59c3f8f03d0d103169ced56165d341f78de88c732688614e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c3c3cb844d5fd5f8545f4f1959ad4d217fbd4a1d99276960375efcbede284f1
MD5 f81ed7ca704a9022317188d335d2dbe4
BLAKE2b-256 f858f6f3ee9baefb0da21fdf3a8914b9b8d544a84b6c1e32773e2d18f52095e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5659e4a7222017f2def759cd61957cfd1211f0e81bc3aa2936e75f50e39cf7c4
MD5 d97389fb066ef975dba5f72532ef94f1
BLAKE2b-256 245bceeca1d15fc201e3f4991cf21e0e932f5022569cbe73b8e27dcb118c2c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 222bab8ade1a5d1a10ac0613daebef610f9211b3d7d363147078835db29e687b
MD5 2f9d26c0cb6b9698a92460de7575835a
BLAKE2b-256 6e9397ba92c3e1af67949230dd893dd9db5a4450f9092cc2374bbc1e8be217fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06c86056bff8bcca511a6e397c4aaa14ef102460a9524de786fc1f83f1567bee
MD5 18374a4c8f594801d98b73d9d307fc17
BLAKE2b-256 ddbe0ccea71618a8c18d8d335a9884ffa58c5c3fa330a73abf056d24a220860f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b314e5af3496f8705ddf8192c991589833e45dd661b3e8d565c0dd19d9707703
MD5 df248e0eb84f4e24c562cf6eba6546dc
BLAKE2b-256 3f68afa8d4dbffbfe62d10d6e88ac1af2fa27e1d28650b8d4cead075878356f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4972902ddbeec164fa3fd1be8d63cf153982b063a9acbdedec0c4ad973ea6f8
MD5 ac393fd6cf92263091479b6c66712a8c
BLAKE2b-256 1529ab68fac138f3a4dc4cc2d361f499f1f958458abb63d63f1fa1a5fde1d096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d818c413134a56a2d0f6b34c384cd95383fb94f8c67805f170101d0fac218469
MD5 1f090b50c9eeb483cbdf6473d6af68af
BLAKE2b-256 57e51a87ff2147b0ae36b2a84af6bbee10557cb071fe039e8d91a431524ad455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50429607fe023fe5cd94d86ed60ec9a014bd5f37c02b38793f6c3e36cebed2b9
MD5 e9cddf27dd8f841030282de9d9d125ce
BLAKE2b-256 858a6438f01221aa31e8e636cdf5f58e254275ce0486b7a88a06ef47000bba30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6381e88d520d9b5ca95bee87d94e40b765e772c2d68966074156aa25609c1d56
MD5 e3dafc3dbb0c53c1fa8199a54678620f
BLAKE2b-256 d66f7ff388c98dc6f8b2b7b3b8a84caa5391565f949704c5c29688dde6d72ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b71314d792bcca37ba546544d2e68fdf1215e151b961befdf019bd41f48719e7
MD5 58854114aaef399175c542228a068ad3
BLAKE2b-256 38842bd197ccd999dfaa31182887983ba91b42d34e73d0ea9051c9447cc219d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d521a769ce548b887e1202ebd403cf5bb253344018740011d18cce576b499d0
MD5 317a512e0dc3911a8f68ee52b5fdbfc6
BLAKE2b-256 4e18ff83a7dfb2afee95e1054f35ae261a25b5ed91f31a83d1d000982aa6c5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ac0bb07c7e54d6bb21c53aaf9c28820fe07e7f80557fe2281b59ef70a70f07d
MD5 fee284c3aa36a8f9e3fa5d56b7e0a3bb
BLAKE2b-256 f86bbe60de1d9684d557b480d4a35322abb46376ec11ee6fcbc59a3329082648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d505d09769e6129edc174fc8d5489259bae3f90489ac4dcf5d7fa158414012aa
MD5 28bdb77143d0b3ebd8fa794984513b1f
BLAKE2b-256 273e939c0bb54482a0da3fac6f39f2d3af471d8759268b69f997b646cb938cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8efd36a9c974b82d732ad3e1e95ee3017a4dc0f29d58046280566cbfc7c2cd87
MD5 1037cbebb85bfb5a8439a71dd7103ff2
BLAKE2b-256 e4543a61452cb088d666f800340aca27d2c4f6072490e883b10d8fc780bb23a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70e2bb13a1ccd43de7595aa5bd67645c32100a3e993bc973dcf14f9f1927e12e
MD5 37ec47dc890db1e0f6cbcf39e09de543
BLAKE2b-256 e4f18c6ebb31a8b9e70655b32b949b83fbf545ee8eee73f778e6d3cb636b6d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24b7ab2f97bcf553da39bcffd443c957108846f55a944a17f3d0e4c1debb6460
MD5 9a8a492451d7d758cb51952c006f38d7
BLAKE2b-256 553fc03964ad6f7f52416a8d4fc70cb07c47c12d2149606a7650fa25b39afe7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c37305d56cae1ecd941d70c5b381b73f2c08487a0c3ceac0332e643cb4f392ca
MD5 f50265ddc3e531998a3dfa45055a6ee9
BLAKE2b-256 14afde502d3fa7df6c19b3f2e6b2adedf3994a236d84aa2dcf84a1331d628fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c88f49da301826720b1c9c3c86e2d353c3ae619ca0ef64984240c85eaaa2c3b3
MD5 5c6768e4d234bbfcb84c4c6057d2d7fa
BLAKE2b-256 2ae581f4d48351e0fcef9f2e9a029892a3932e4300e4f29bccd90739acd7195a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdfad6c4f8376d5be1d0402a140e71035b5526ac82f14e365edebbd3dc08388f
MD5 c271999ec21ccb5fdc24c41afc1aff43
BLAKE2b-256 d21658d2032b25b3d79d11b35e34f65d95416baea213888efd3c8315803281ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d93d51b4e926001ce4d014cb513824d3358ea0e0b7e0ad8320594b30aab9c3fe
MD5 cccb6e80baecb94a537567ea02d82ad6
BLAKE2b-256 ffd7543abf1281e315742be6684f5f694bdc94b47a03bd32e8e01d0758700f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12c40cf179df1d16a7e5b992cbe4b53c4a4a3ee5a690bb607f6a643d1c294330
MD5 5ffb6d251615a4b328e6ab037dc6f51a
BLAKE2b-256 d1784f8356ff05873a7a3f2ac6072eafec1856e3484479a7eedfb1198b173924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5d09609a19ac0d1786f77651014d45882f1cd69101d900cd539201fea0f6e35
MD5 5586fbf19664f3a351de6b2ebf9c0ee9
BLAKE2b-256 7768376b4202227c621ffac288b2ca68ba39fd850341f6f78f06fbb676395066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 19c9bc58890ecde5fc12b0b6104be79871856aae709c8200309bc6992d5d865d
MD5 9ab297ab880563d3148efd1cd55682e3
BLAKE2b-256 23a14e89b8bcb9bfc178df62a22f6526f2346a94f5bdf2f0a4b61529e49ef0c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 065324f45b76c3f80a0c2353c8a9a700baee68b9bf7385a039eb4e13b47c699d
MD5 fec4bbd689ad1690333aa8d8ad9f8383
BLAKE2b-256 b2df1ed4727cbe07569e3fe0b1c3de9c82be533cb654b3fcee5a74cf451b3263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 483612b78fa15e3bcca0ae4a44da945791cfc9e2cac131fb5cd2888884ca0d92
MD5 6b8386ba132aafb9e150bd9245bc4f1b
BLAKE2b-256 84f67ef3af5c2fe9a21a3184b0854a71edc64db21e9e911b4a9870636f02f152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71bbdcc0555ef210c74b361e81a99749e15028ac62943056d3a5ed6f13b58915
MD5 6745b4b836ab6541ab294f2e01d36a3d
BLAKE2b-256 25770d24608ebbeeda97aac7106ab1042ea2e5e33eb0a93a804e49f3a28824ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 06f4d59d095b6ff9b3097ae3b85aaddcfed4590b95fb6dd7f27c918bc2632664
MD5 5d6bdc27b6ca6ce5a08c4ec0b280e468
BLAKE2b-256 b27f5e2c381f59f09b90f3c46c8b20fcbfb1f985f982caf69b1898e59e972d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2df2029291fd3fcf2a70c0e486ca782d9e19bb2118f4ce6cbdba1d8d71d4a93d
MD5 38799ef2949482ea1083568cd88a16d0
BLAKE2b-256 0e9ea22005b53c3c55cd4eb4c27341411f88517734b038d487d92a0f24aa179c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c072afe1653aafd72e4049df8827590e9fce756365ec8a553506852cc246b151
MD5 8f9fc6afdb2e74d444c991a277a6665a
BLAKE2b-256 18da934716f44f79ef0e3d42e5b13d4793b51f966b29e02233b4774adb8f3145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 577e504c7c59d41d14c719b7dd8c6aafd5fddbd64edd4bc94fdd1e2c6f174d26
MD5 1d90b5f3e7810745918bfe578800e4e8
BLAKE2b-256 edf65cecbcc2889655768e4d5898fc1c40c86e9f73ca84fbf5ac63191eb587a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ede45903158d1889bd34c8c3bfe751b812d0c69b5ee0d44abebcc4f722b1a5fe
MD5 fed6fad9b56dd0b6a863e14029df0724
BLAKE2b-256 7869d20a9c52d37e4df7e6054a3610ab367d98df106a39a7804676d64ec93f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c661de6af7a935cc263b6ca753039dbf58f60ba6c133ab17c665297f45c593
MD5 23b9ed951c6ffa3e7c3378dc5190f80d
BLAKE2b-256 c7463b3e50cc936009aa3604022c7ee98426f546d7ac6cdbef04c05b2837d45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b194ef4a53a3a7add16ae40b7441e78382e304fbb08c1ecef43f7ab5fc092d9d
MD5 314631b0ff5ee3364b2cd81c4606a489
BLAKE2b-256 f98ae3b2bf29c8cef9091e07bec9bbfb4969fa387c347d06f6324e8358d6390e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab584533bab11562c8c10ba22161c98680d3dad0679b97fb0b3b91db229b60c9
MD5 f17eabe4bbbf19eec0ca640bcd8d370d
BLAKE2b-256 2c70adcc7b6229e05df98f134e3b9b3dedf0ce1a8d8ee497b5c6ac7df6246668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67ce4f0adefe5a7bc7fcaefb277642254386b1b76d41b06fe937f61b442f5edb
MD5 7f329c3c2f9185224bb76ce263430137
BLAKE2b-256 72cea3c4ca1df2eeadbafa89d033e54a695e905c8ef4e4b77c83e8241512bf13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c492b0b4cf451108e025a5302778ee05b9199da361179f7b4e3deb77aaafd9a1
MD5 262a38b2e051a7f9a292c673e266effb
BLAKE2b-256 10e609680c89ddce51bd5bff199f2b4aaa59b047ec2ce1a2f57ed456cac96c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4427ec2140431b02ca5c5813b842a9f7cff0de369a21fccaf103b6a640d809bd
MD5 782d8ce13ea3109a754ab5be56a35f0f
BLAKE2b-256 45f9ef6005591b688c5566ea0aaaa788aa75864aa72d1c44c701898ff4f15872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b423716b78b435241f239c021dbbb11f5cbe04898e7b5cab08f8d5260cf0b45
MD5 f5a41fdb26d94333de2a0f9538fb4fb3
BLAKE2b-256 72b1cfa021d8379519149cd10f04cbd437ce22abbb747bc514cbd13b9f5a2a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3bcd738eaf0baf0b303eb8ba4465b2aebea4f8655aba5ea2a0cfd902b0ae46e
MD5 be3f80755142f20c57dae202ea008dff
BLAKE2b-256 a0294f4e636c9c14de0567c3460f30abf89c820c8de6bd2ea29c6724658eac24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a85c969053a4346974b63c2c8256063d695fc897853f8379c12ac434d7b80a18
MD5 233d7556b17aa8acc887a0544e57c677
BLAKE2b-256 1acb3523390d138237f67f8125d67fa074e14ae9a89e894266bb5a0a2efc70ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f522123fb63f223a8e09b73d582f76071da92e32cccb0e9a916ae2401d8df35a
MD5 75f8990a8d209966d74336f95c099294
BLAKE2b-256 d7004c380c61206b69375c313b5424dff2dabc753f752dc6e92335d5a8537417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce91abda2b1a16840ea23c421c4f8f137ed8ca4dcde5568afb9edac557430cc7
MD5 df242526aabb89eb08a519830009912a
BLAKE2b-256 0aa3b8e878cc0958ace47e6ad186c2b5d53068fe4f1e9b4b2c0ebdef73a4ca16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5851ec3100e6c6b0e2030c6d6ccd106f84aca567b73b71026494f2632e4bec4c
MD5 e129dc58c5abf670d8eb3c6f855a609b
BLAKE2b-256 e5af873f4871c52e56a99638a3ceb929b57f554b02f023f249433a781b488481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f28d6b03e2b5ed626a3b37d03d32b1c0e9dc63671632423d8e8a7f33db290a4f
MD5 36903efbb3980f28ed30974e7283b565
BLAKE2b-256 031d2d8469867b63a03f1b74e421d41052dd5d1a542a4c448328fa745debe8b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fa2a081475a4a42f0253800803fdcef7d691b9557f30171345ff837de8669df
MD5 7af65e1d93a4a6e93e5a99a78f6931ae
BLAKE2b-256 d42dd8825d8181e4280440883306c5a0cd29b3556300b7b1e6f1b25821339c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b33d813e35284d4c7f9032fac74bf979b6547caa37ae0ca37d32348cc855a37
MD5 e86c5f55a9e3188cda2d6bcfdc9edb97
BLAKE2b-256 d7dd69eb5f0514be3c6b1107ad1754a76167e065623ecacbb5622eb0d66b346d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f08dd1ae1508eee9a96d3df2b11b230458ae8de9551821d0b5f8d40f5db41bb1
MD5 cbf07490507449a51376a170e8669f74
BLAKE2b-256 e04e437794a5aacac80c56d6c95c89beac28c958e50cae7e20112e9d9296e21c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25db0302f0ebef2d785a57eb9ea4ce6b025335b40576c61733e66fbc5bcfe659
MD5 eb5ea3afb9e68c74c37b2184348fcdb8
BLAKE2b-256 6b767497f421b870edccef7748d0d2b2075a9dc9580fd7e7eb2c8c03450c0bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2134a070be38d44492bf07069dddbaaa34af297aba486aa8bb69cf6a37cab47c
MD5 0bbe86b30f2bd8396cd3464f53e184bc
BLAKE2b-256 739a5d5791763ee15831c507040808ea14c231f983968fba35de55ba05d9923e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a8b0b5c1023aaa880424e8ad084876921200a7808d0206c239839f1ebf5e360
MD5 eba1fdc6972c29fe92976126349a8487
BLAKE2b-256 942ed4cab962a8661d364620b99952106542b5ee8bb79e77b976e7322b0b3291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 78aeeec7d04740766b874f784f8d3d148229e502eac9b986d08e3bea48039c36
MD5 2d303e337b57ddc3ac344ca6a5f24d7f
BLAKE2b-256 d7df6125cd71d3086786ee2abbe05aabb055a79443afe95bff828d7c1274ea62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8123d01487a006cb2db518c922f22b258272dea1ffa6117585ad2da89c9194e6
MD5 133935582bd278cadcab91286a0e8ded
BLAKE2b-256 2dc7642182fd34b2fd7bed202c6ead1b143fc95187c22f5ee73a9c0e539d7269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44b99650815a2937dfca5ee719b14414a04bb6fd195d1fa3ea64dfa8bff0d3cb
MD5 a48023ce1e8e3258564280f7e2f264d7
BLAKE2b-256 34182f80f1117062927ecc1b1ef469ad9becf1fb22be117f8c833b9935ced92b

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