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

⚡ Smart multi-threaded inserts that automatically speed up large batch uploads

🚀 Fast, concurrent searches so you can run multiple queries at the same time


✅ 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.1.tar.gz (38.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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.1-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.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.1.1-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.1-cp313-cp313t-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.1-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.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.1.1-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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.1.1-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

zeusdb_vector_database-0.1.1-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.1.1-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.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.1-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.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.1.1-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.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zeusdb_vector_database-0.1.1-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

zeusdb_vector_database-0.1.1-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.1.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.1-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.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.1.1-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.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zeusdb_vector_database-0.1.1-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

zeusdb_vector_database-0.1.1-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.1.1-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.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.1-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.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.1.1-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.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zeusdb_vector_database-0.1.1-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

zeusdb_vector_database-0.1.1-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.1.1-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.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.1-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.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.1.1-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.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file zeusdb_vector_database-0.1.1.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8c2c079575930b40395abbd83096e594cd656160273d12cfe1cdd54970961541
MD5 1f88780dd3d2c8a8b27ede6f88342bd6
BLAKE2b-256 129883fb3e7700289a23f2a57fc064a497c592268751e63461ac0d90ffdba2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbbb47951ceb3fbde3a69ff45894dd63782a783b9fd006b97f6814abc699e4b3
MD5 a0c63de27e672e17f0657677cf371595
BLAKE2b-256 98e35445a3aa32aa7cdb93f1a16d7f0ec76ad29cfca90bcefdefeebea228cd0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65cf19674dd03a04c4d409c479189a194a23762921ce572849f63c4890e77f03
MD5 49b4f659150b0474582b91738c4b3858
BLAKE2b-256 7b43020a91ba0dae1ec17a1a70a8a9497a08cb5ddff353bf0f10e3755d41b211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d5d944ff456cfa00e492f66b58742fa14788bf86e9ad73367f92364b9edc08f
MD5 66325edb64a72fa626b444e9ae7bc329
BLAKE2b-256 7ad2ad96ed31c1273643a410db9ddeeda22a0dfc0c7cde81cc15d9db4f389ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2f248ed4c465c2d8bbefb268f0d3e26e692b3cfdf5a3e3ff718a9ab90ba8827
MD5 4eed407cf5f8e8c94bcd2aa44c9ec56f
BLAKE2b-256 9680e88e55d31d7570d9284eb29cb064c4cfbc7d82ad11df915a6081528d022c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a4586ba568cee1a954140ae608409d2ec7334bb3bee3b9ccd4104e7c1534154
MD5 d596c5f29d24b3b42cd9cad44a956bfe
BLAKE2b-256 bcd4f032d608a8306af15d8421aaf403d25793e069e96909523701a6c787b69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f86e675805e08f331b620c6f7c38ff321baaedf19e7ebc45afc72d6abbfc0405
MD5 c1e30831ab6ac77046b70028ae3ee725
BLAKE2b-256 56db40ca8650639b40bd4d01c3ab238f6c88da082a0e72ebacda4c58762f42fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54d5fff6412435f23a10ad38a8ff2dbbc695fe464b2171ef8206e118c0f5fa1e
MD5 f3a32b7cbf1b9f143fc77fdcd7584eb5
BLAKE2b-256 1ff36c83b064906aecc1eaff858ad2f6965dc333080137ce956bc7e4c68f262a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18d67c6cb8ae7f5de5dc3f0357853bb4f4b11d13b293816b64ac164747f04510
MD5 1204740a3e0210565925fd1bdfd53c39
BLAKE2b-256 f0005a9c103568856bc5586696c979641186f66ba22cee32786ed5698e8393da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b0b374c09b9f7984856499809e4492869bf3406fdd1cfe452e7a690feda29b8
MD5 179b64e64893f0db9bbd40bf3b44ea38
BLAKE2b-256 78ccbe5139ab0b6d636556dbb7975fd1359823f7f48d83316125add253e63fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 86d170ea66e81d1805cb3679e5c33d7cfd07517689e4bf9acd74201593bc5bd9
MD5 a84841fb582b91e38f2b5c68f8092564
BLAKE2b-256 e4101869d5143652be09ba15040aac2002dcb719af59ec882673de700b0ad76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82cb879b597daacd9c9f0a0f194d8ef2512742b3e01e6c33a36669eabd7e8543
MD5 f3d408d51b32f6a0a07151ddda69b7da
BLAKE2b-256 7a6a2d3032a0a3b7d617ae5faca2437737620db8eb9857ed0d0b210c7fdcad0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 738234face3cf5166a4532df756d2965bfaeef5a0a9b5be68fbc6b30d9d84bf1
MD5 f457b0cdb730a401875d945cfe2dde68
BLAKE2b-256 f1920f8b447cbfacad1463ce70b84219f1841e07066e3ced8517b9e9b4b9bbb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e35cfbb7bc56ce450d32f5b4a16699f1938635fd5bc25e71019c7d594c4c70f7
MD5 00259f63026553b602163bf01685df9e
BLAKE2b-256 46781556b570a2adc91067269ffc0bdb274138852bb84ffc16c359f073c933f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29e9a4c7de0ac92c73636473ac12d87e9491a5540a4351a9b195d72682aa64dd
MD5 2c95a088280a18c7f65645020c41b42a
BLAKE2b-256 2d084ff43c9cebf01a02685d617956cd14d47a081cccd8d0aba971024373d159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8c0aa04f64c08d5519dfb9a27cd9073115ca670492677812cea04d4e40e487e
MD5 5894fd1d7429724be659cbe0cdad2d58
BLAKE2b-256 dd9f39430136753ae71b6f7e43e760e51eab4879680593578e311344b8432bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13b1819e8a058c70a5e52187617d1587c382ef25773dbe1a6bc74415556b998f
MD5 475a60e34ee3b8c5232a61e4276848a8
BLAKE2b-256 135afd6389c8948ffea1824dc4ec85da18c437e87ee54c8a1231d8922fe9dad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56e5db2e3f730281a214aa21dd0c74ec50ec484b7f8ff37152a36528680d5824
MD5 59df6c74ed86845893c7d56c57d5f52d
BLAKE2b-256 33223592bc5a5d10911128241cd78365127b4da16dbe9add46e3a7b74ff097b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7242ebb019d257dfa114448d6d3aa786673de3ae29e5c4a3ab3966af09c45cd
MD5 e0ffdb9bffffd922522846c226ec63e3
BLAKE2b-256 973ff3c14e57eafbffeb6166fe15681e15da5d0d4db411a57b1a3791092cd7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db6db1868daf66f9546225eb986eb29954eca23a4ffb6557758827c620b444b0
MD5 a064baadad4e3a1420bbf3cf15c95b62
BLAKE2b-256 a93575cdf69414aa03e5e3f18948358fab6e3cdfeb72f6b70436985842ebca50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9270ec5ab04b727a869d8ac66caa01e838cce63d765d053992f5a1e1c5a250d
MD5 e90b567627ab813aaf3c5ba606d5e0f5
BLAKE2b-256 196475d46d453c56fa5343282a2700e756539a03b447ef0915b9a44652a33f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b4de84d2392dc48e5ee40d064cf3cdb029d3c44920162ea82f3356fd08d535
MD5 f633c7616678a8b9c5a7066561323486
BLAKE2b-256 9fc5b45fcb98047a01105a662d9fb7e5562e773c632fd58e21012ed247251dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d987b1a5d6f6aafa29086706617f35e519b1aeedecd22c0277913c0a8e3e3992
MD5 2b48aff3098b7bf92eae5af1fc2eb5b3
BLAKE2b-256 3eb18b17e7b0b1b290dd8194f14d918f7a3f38306b735ce843318889ad4e7cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f31c7967391dbcfc65054a4037f18fb20a36d07f97ae36385af6e579d0216e90
MD5 8d69c0b10ef369aae17ec3a409f10322
BLAKE2b-256 c35f7b9878c300051846e06ea5819debe8c5b062b2eb29e566e9d4d1591f9a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5e8c69e5bac8ffa3c0d9096a444221207eee630423f7555a54ba667038b61fe
MD5 15706fee6c1190dcd58b0d5042453ca3
BLAKE2b-256 1f3c4b6c08df356ae15a0df4f858ff872771d66dec42a9dd24b6bb137cd7412a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfc8be214addc5fe2335eef6b74d3bc9c54612bec4be2470c3fa74fa4413ea3e
MD5 b6f5cab5cc36306ddba14d3af405f4a2
BLAKE2b-256 9062197fc0968ed54688fc79e0a7ec586862255ad167f6854ea66f629eded200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48646f1e7b80f596fed83d50426cf9ca2443a32619ba6ce7c100333ae52bde77
MD5 41cea4d58ee933fbe045218443c387cc
BLAKE2b-256 586114c1d90f1ea2c818d78ad845d0e3dae2caae037d5b19bdf87740eb8b3176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 099a9441cce9b347c155290a1319a2cc4f3c01fb98b260294fee58f6bbfb139c
MD5 7ab3385b709256d080109865384ae4a9
BLAKE2b-256 57463e9304b5b3cde59fa1b73df64cbd1d675b9cf59e5cdad91b819a99d6ef0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e75b6f92a07a9690482ca7e1b7274a0f3e6206fdd52ddaa2bdd46e6c11359b9
MD5 4ddbe3303a65b5287506879c3d04c8d5
BLAKE2b-256 f906a05f1fefba719e408a883cd5d9c85a9399bfcc3d7fbdf543545e8594d7ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5efa17e2f4c50494bbcafc7142cae5aaaf2960e2346ca262ea24f73d6d896520
MD5 4b4410d059152af943a096a8576320de
BLAKE2b-256 dbb694a91c67d345bb4ba06888290175b2066c98ec129c3d409f4ec7759037e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d49199758d611660ee823156f19a23106e055dad1acde5e9af74266a87703e5
MD5 1c6044d8f9c8561b392913018ef4d89a
BLAKE2b-256 bdb8ed4f7475214b9ccf657dbc7dc3c28a3672b00682eec68b7d938f8cab477b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8c014f6175009f9a1926393b47288145717056d7a7609aed13c10c549375e04
MD5 f0ace1cdbc366daf6e157f33307ded70
BLAKE2b-256 db609e882da9f68de05a2bafc6409da97fef87acc2c7b0290d24388449602382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6d7472d5d4022e7afd4e5f339901130c9bb798ea00b11173f6a767b8a3197f8
MD5 b7a6bf1207cceb3b773c508c37d5c54a
BLAKE2b-256 28c7816d5c2e2500f7643e2fa0a9b5e11b1ab8016f15890b8f13fd8746a83be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1f172dd99942d760fc29ba2c4c6c182fd8e49b5cccdee1b6c98bc59020229e4
MD5 940a6f7c445f72cd44be8224c0ebeffb
BLAKE2b-256 e3afce84041814b4dee1fab631a77a281778ead748c3f049f192c3414969cd77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1b7e91cfab4c839e0c3fe81e380f173469625535a5a7b7ff5840ac92545f420
MD5 92b625d2970eb80728b08376c21a953e
BLAKE2b-256 386133d66a25d62fbf41e139d0b86c6cd91e15c240b2d29917ab26f6e38bec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4153109545c451df7b0848887d1fdfc64f4fab26fd5bb9eee880483466ded30e
MD5 c83ba084e34e44932ebeae98d77ba0fe
BLAKE2b-256 00ea8778d951d80e325f202fd0f976bc400b261388a5b9782121db75849a139b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 471e3612ea54064f9b056cc82daee2fdeb7d076906e46248e553b9f9f7dbf421
MD5 63028e91275aa8ad7f14af129d1f7298
BLAKE2b-256 a7cc73c331017b4ff35e0f10e70b309e70341b6b11be06f3b6efc70955c97993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79a0aee944e96060923610681bd950f8612d5fe401f078d7ae62dd6b53575aeb
MD5 53920cb7b0b74845558bfe7ec0c98fe6
BLAKE2b-256 611c1378fc02244a80a2ce0e856def19835062465e42a4280207b99cedf4ba1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20a3440517c63b52727e3aee5091456eac3057e6fbe8f8c391c504781df947c8
MD5 5e53f4e798c2d909de0c106a6c258042
BLAKE2b-256 07e7771f3e3bc6612afbf128c5199e7bb64610ceccf387e35271c5403c35f5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e8bc68ef81ca22967d3126adc4c1ab74a071a85229e61a1a35b91ee8d7b8bda
MD5 b5cc6e07687a600a057b29b78240d0a3
BLAKE2b-256 4469df9242844df3e094114fda6bf7d6d9376333b47415c50aca108171caf68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12b50b0c0d86c0f405b8f16ffcf7f775bfd1aa78a43ea9a235811b80ee1c93f3
MD5 8430c8050ef41a39b71af56167c4466d
BLAKE2b-256 f2f18bbe6e508246f2824a23a55be61e09e2ec6ec5b92629c2b5d77fa5a3aae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 723744dd4f4547ed7e7862c42597fca96898a2a4093be25a7624a98cc616bc4e
MD5 a10461d58bfe9df2ac89110c5a2c6db8
BLAKE2b-256 9945f15905d1fea63a50f9ae3db5317381c7c495cdd6a8361fe8366812dd3823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dbfb0a0622a8f5ab896b5f0f9945aef4e75f7f0ca8fcd4010b007436cc299f2f
MD5 b74dcd38709ccc63952a52e19596aca9
BLAKE2b-256 a6e50e85c4f2072d5d084f2f9be9fe383700f034d269c837f12456be1f1011a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6ab369bfa17b6889c6fdf63bd952b376ecb35b5d504183332fb28b0363d496
MD5 7c1ed9f82fed7f148da73725ecd7eedd
BLAKE2b-256 bc82516a425152531529a017d732aa9313ec590ec76b1c56a9124ab5dbca5701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6715feec3ac80928b0b87053709fed0b792a5b36a151135a6fc57d83165ffa1
MD5 c4ae50434fd30c9b5f9fb209e25d091b
BLAKE2b-256 51e1a52ed0cc66c6f50e6fa3357f545e94f7cc3c5a3aad1c1d65bfea34fde200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bd0c5def8fa3ec1e310092a70c39f52834cc259fea599427e01f26b40110e54d
MD5 936cea43730b165d7caf805c5a3216e4
BLAKE2b-256 adbaef9bef302754bc90e4d611833876a075b7901699b540f5d5cd7bd587c51f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 18515c9b2749f6ab335d96323fa2fdfd36901c07ec25220e2a304d4fa44213cc
MD5 47614f84a5f2fa62c0b7632d52085631
BLAKE2b-256 4cc03e7af18c6b00a0076ee8facec4d539580930f9ef41008546ba94891acbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c9b7742284070b15dad805fb890afeb7fd3f83c4e955b6b70ce7f0b7276a3c8
MD5 76dc77fd2300339d1cbd4ee0164e04fd
BLAKE2b-256 ac280897dfd498d1efcc2c319ad3e496a46f4b970fd8928b3dcb4f474abaf5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b4bbb2ec6e086ee77208be8f6e1dcb1c928610dd4c8e9e203a823194d188837
MD5 e0be43b1a5174e92546fc6a019c1f3ab
BLAKE2b-256 a36694de08de802fd7ed182744598fb184a16877de750cefc76c4a38bb1b9058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d22f6ca313a3ff8b28c1846ea5133a0883661291babc556fa8475771c23d8961
MD5 c0d5d74d25e6eabc135ea69666344e39
BLAKE2b-256 b1003f6f8d7808da6ee0df29bfba3f89e669d65f759b90ddb52cd4759d51d981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7be73d94b2d084a0a3cc331bd46d1b9b8ac59e39bf73cd481fc12950b03f1ce
MD5 6d0c38a2a9a653ba23ff35be53cf074b
BLAKE2b-256 662a6ca54a1e3603c0ccd42275ccffadafa508144af89e2846c65ea9a237036e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68d1507f5f6cc36e00a7538ed20641a48dcd12348b318a5d7e88fce16a0ed95f
MD5 b39587f2ad4eacc68389c720efd77a52
BLAKE2b-256 045059ece44624ca445551c3a06c3a1233f500dd5ee0b01e1d5c58dbfc7f2e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fb4ac7732d8dd38ad0d69d3606e9e1ceec142c71f01c7a9147bf3a985c994d3
MD5 1ffbfc4e70597d0cc949bd8ef5a6f8d9
BLAKE2b-256 ccea493adeefa37660c501e1fb002f20336e20dc8c9195218fa44a7855792cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a7b6cdcf1ea8ea5bc0547f3af094716b84acfff81af43e43203e06ceb85d7e7
MD5 7be354c2c9bd445631b3283ad280209a
BLAKE2b-256 fc4576e3593f4656d14f73c32f8ac49e8bded5b55448d8721623c852b7dc5e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d779ec7e0b8ea44afad1a0a13aefc5159064c6a3ca0b08613e2dd8829841388
MD5 255de57e37043bc5d9129bbd18128919
BLAKE2b-256 4e816151b4f1b551eeffbb346bcbf9ee87105941afc9c2354f41b4db8f090052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7404aeaec3773beb4cdd689bd62a8881d77dfb35b01c362c5492ca70a02fe004
MD5 2adc6cc56218f48bc38adfc2594ca287
BLAKE2b-256 7dc44f841dcd4d01459d7cbb4f6b71bb48eb35ebc0ab6b81cd902f6bcb303c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1a9d908a9207343bbcf2f62f9f24568b6ceaddc6f618cd40211aa2dd40564d0
MD5 c1592ef3bd652f72db185d56040e4ffa
BLAKE2b-256 892d5aad9c0bba609911efb4c3aacb522543400b69be406710b91e8f212d460d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ee41c304eadec94e236b4801d94daa66f471d224eb03f7005a9499f9be28bd
MD5 c3764de22379f0ed67238285aa27c4a7
BLAKE2b-256 552354809867ab79924cc3b2398d47d5ed0d043f27d830599ea95dc7e05f1294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a01c42ae10aed1e891d4a905c4fc4546af4a1518e18606b392989d81a34e6ff
MD5 602b5523f270e7d825d20ce819578bba
BLAKE2b-256 850272da77271f1961457334f4c131ef28bdb57afbf76f2405c47adfab219d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 503dc47cd8144129a10c7d11bfe8aa7a423f2c849fecc7a0e8973c648c5b74e8
MD5 5e3722dad6639a195fde9912cebb1a29
BLAKE2b-256 dc3c1b96773b8306b776fa64dfe4732b1b55be579d3ccd9ffc516b292dd15045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 84273649ce76b9c125581983436f216b0fe42fcf82adfd1ba388cfe6463be4d7
MD5 508473ea37608975b42f74ecd64d5bb5
BLAKE2b-256 ed2dadd77f000af7fbde86d269b90cc11e6cd51aa3cfa1b5a5d3d5e13856b09e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d024e52b94ff48856fa8f57e97d38e88ed7be215528e201ed747fc60e80c0b2c
MD5 dea814be57d66ef4a6f5ac8432000003
BLAKE2b-256 6a1ab7a5b83d08c07f61ad5809738e8bc4f3334f236aa5412daa7dd32434b429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c9bf7471ee9383199b7b33eaac63c48575994563aa3ad99bd4a110242ecf056
MD5 7c99dff44a7b9e9216ee3af12f8a7c34
BLAKE2b-256 4b268a4aa34b63173de2e0198c9cfc497c0140a3b3e12cf4e4ace5536a6f491a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74896a6144912eed874ebe833eef02a412c5bf02e37146649e9ca28717c67aaa
MD5 9f01e661e8c20533f7d9e7c38f1b6448
BLAKE2b-256 019cbeea3047961e96eacf8f86f48568031648e1ab6d82140309ab9a43916baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57409912183de663fc1b1eae0d5b30bdaf920b30bc7c10854119ead2bb4d55c6
MD5 25a87dc0d4e26186a0bfba3ef5d14d60
BLAKE2b-256 35425789a51cacce1aeacfff77e481ad13dfd1ef26faf0fa70c3387d3fa27857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316992c96ca56008cf0964da89e2e92b9fa270ca7e257ad524ac1a7b6149d2f3
MD5 54c24cdec5fd94773fa2db918b2df115
BLAKE2b-256 7e5af41e8f33459fd9b30b04cbb3e1abfa3378c0e46c06b50db74a02b25f49c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 647dac3be86f4969cd956cd2d405156cf27c7a60c31d6571a2bafc1783f391b3
MD5 d645d67920fbf3875faae31878891326
BLAKE2b-256 bbd92856ea39490438f1559f9b964fce59505da69314983e165b069829e21a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 896221bb9a4587932e837811b759f6a2562bd15f475defcc4e68d9d144b19089
MD5 09ed8d7def714f68e3156f18943a3ac5
BLAKE2b-256 4469562ad695383fe4444ce1aed1d6fbc308e584d01a55435cd99a2ed92d169f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c2bf3e344b56a18baadc60ea86e402109780190a4390393221c3d1f69579e91
MD5 2fb41e218e20a6a11c62da3a85445250
BLAKE2b-256 263c88a477fe1a8ef6f9d4643e7834aeef257601435cdd54c0ec09bbe97ecab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 646d749ee84ed9dee642e150ee6ddea542b411693e1b1158293b73109307666d
MD5 9ec7734f89460e465100e3fe5835d836
BLAKE2b-256 8978499a70d71c7cd46d8c2a4cd8e46c4131d66a161c036bde65fbb5018288c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5c88937d70d520a18c022b284f4e24a8b3b4be8930c5dbb7a0067200533af8b
MD5 3057d2d00715b514132feebfe5bf0eea
BLAKE2b-256 6f40e8593e0c69d1644d57a89be57d834603cc7da875337b36fd596d4f2542a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c30de1c91805e470b0743b5956c96bf6eef71c294e8da3339a96d30ae541e6b
MD5 27af256efb020b2fe947c50ce1da2914
BLAKE2b-256 eee4f7c59979b175c0ed19cf0b0a7400a59fefbd65af445094475537c698cb8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5da8b45a564e4453f5df818b3e2480b8f1d31e52111178a09ea09a80c95204a0
MD5 2dc43b7b15a070373e42dc39960f735c
BLAKE2b-256 31162b9f0b22b4a87e5a54f19bf38d93e2e5b0dd9ca581bf202b4ed9b35202c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eaf44b42d94420f13bd6bf54b55858a8f6f1eafc10e0d87e13f01c011d5363db
MD5 88bf876d1d382dd117e28e3d214ea8b7
BLAKE2b-256 24060c6aae5f119a2f675cf82b13bddca807a7f879036df16f3268b3088a14f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 34272964707eb582782e26043bae19e43152e94d486cc52e5bf4c3e47dd74031
MD5 282bbf039144d5c8780e55c3d4bbf657
BLAKE2b-256 2441ad909ad34fd7bedf7b3a9ec9eb8656f3b8218348098b8c52d51e87df14ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 393dd9f39d88862d650f3a0ea31e125507dc649c79c58eea20193164568a5461
MD5 74e88fe4d245b679d29dac2d2d854f0a
BLAKE2b-256 b340bf9ec68f971cf3129a4a60f5b98e9c8b26b5c1e1a0430bb5db808fa1ccdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 009bb3437ed2087e195d6bf476cc7b2458c5f56ad351a5cde691e9f6723f465e
MD5 80ea3b3f85bb56f2c6e8c02f1fa7e131
BLAKE2b-256 a04ff873bf44ed70fb8f136790eccef0608ae8befbe0ea6b61ed16e863e714d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04ce5365bfae0ccda20e2299326923671cd605be5ee793973b6197404e50dd76
MD5 c6351c361d6b8e087390f9f48c5d098d
BLAKE2b-256 7f6c04447420824150c68d8fb8955898312bebd9e62a9a2ed6a64834b9e55d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee9b67177da98033d423780692acafcde604e251a8fb764fb0f500c183d5157d
MD5 dc53dc58c877bdbb1d1251a92b39ebb4
BLAKE2b-256 c52913c73ad7e760b993021832e8ae0c748cfd991fec21101c5f3ecc43dc792e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c67ace78a19f46eb0e568656d4a055765addf8571bdbf04712df138a263b6bc6
MD5 401368dcbb9bdd4e62813c3b59526035
BLAKE2b-256 cd76d135a64f0b7df92d1a609e808b74b6ffc9f65b352415b83089db3e18491c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ffefe7a12812f50ffbb4c198d5ac6f3e88f6f6f98bf735868cfc9fb223e9dc1
MD5 8cf4ef07c7caac371d884f08d9d12a0d
BLAKE2b-256 92a7a96c6baaa5adeaa6a73981cd8e533d509eaa4df8e7944d0ec6eae57fb7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5b3a0b2cb96114595cdf18aaac71a35d9f27133449aea42e2b9aef50d604caf
MD5 69b0cf3ce50e3051b734ea5de81f6fb2
BLAKE2b-256 cdaa4e5ca8cac0320e64e185082effec4b125f0e1e13f89654a328769b5efcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb3327618ef452081b67d60ebd2b1037eb1261327446cc674bfd7cc63bc06d57
MD5 df797b86ca048999ab47554c81f33184
BLAKE2b-256 24339693014c298d0d5f4f8d0e133057cf7f801f5d0644f7cd9d29c2aaedadd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984c32f9023a3794a30aff176e9f38be2ede8c4e4af81ae8f77b9e09507dc182
MD5 abc1b8a4de33c5156282d5421c2b0c09
BLAKE2b-256 ada37b146c0e1c21f79e0eaf510cbf83cb61717e00f332866117defc80c9b33e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 118cde8856e5257c437dc42667c273913923c12f791b1246595230465261d753
MD5 6e61543b197c6aeab5e5b7a30a332a8e
BLAKE2b-256 5becb4bc5152a80d7599f49fcc06252a387981c0b2b5804b255ef28c7f161f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efd3d255e0e5c6dc85cb04acee6f84c38164619cf26d657ec5b9c9926b24d567
MD5 e257f05807b5d030df324d2ef0dfec0c
BLAKE2b-256 9643da6146925b4d6ef09631aecf9b600f2c9011159650da3582a725c7fedbf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc1edbda0486282f03742d9063e907aca99d440d5f889a3717c50772e498b341
MD5 8378691cd3d219f043f837acf52cb4e9
BLAKE2b-256 832852532199906e8716ec1184053143d0d3098468c42bf2bcbeffb657347234

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