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
  )

📘 Parameters - create()

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.


📘 Parameters - add()

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.

🔍 Search Example 1 - Basic (Returning Top 2 most similar)

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'}}
]

🔍 Search Example 2 - Query with metadata filter

This filters on the given metadata after conducting the similarity search.

query_vector = [0.1, 0.2, 0.3, 0.1, 0.4, 0.2, 0.6, 0.7]
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'}}
]

🔍 Search Example 3 - Search results include vectors

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.

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]}
]

🔍 Search Example 4 - Batch Search with a list of vectors

Perform a similarity search on multiple query vectors simultaneously, returning results for each query.

query_vector =
[
    [0.1, 0.2, 0.3],
    [0.4, 0.5, 0.6]
]
results = index.search(vector=query_vector, top_k=3)
print(results)

Output

[
[{'id': 'a', 'score': 4.999447078546382e-09, 'metadata': {'category': 'A'}}, {'id': 'b', 'score': 0.02536815218627453, 'metadata': {'category': 'B'}}, {'id': 'c', 'score': 0.04058804363012314, 'metadata': {'category': 'A'}}],
[{'id': 'b', 'score': 4.591760305316939e-09, 'metadata': {'category': 'B'}}, {'id': 'c', 'score': 0.0018091063247993588, 'metadata': {'category': 'A'}}, {'id': 'a', 'score': 0.025368161499500275, 'metadata': {'category': 'A'}}]
]

🔍 Search Example 5 - Batch Search with NumPy Array

Perform a similarity search on multiple query vectors from a NumPy array, returning results for each query.

query_vector = np.array(
[
    [0.1, 0.2, 0.3],
    [0.7, 0.8, 0.9]
], dtype=np.float32)

results = index.search(vector=query_vector, top_k=3)
print(results)

🔍 Search Example 6 - Batch Search with with metadata filter

Performs similarity search on multiple query vectors with metadata filtering, returning filtered results for each query.

results = index.search(
    [[0.1, 0.2, 0.3], [0.7, 0.8, 0.9]],
    filter={"category": "A"},
    top_k=3
)
print(results)

📘 Parameters - search()

The search() 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 List[List[float]] or np.ndarray required The query vector (single: List[float]) or batch of query vectors (List[List[float]] or 2D np.ndarray) 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.2.tar.gz (40.7 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2.tar.gz
Algorithm Hash digest
SHA256 b1ac9bfbda51b959a29057add1a606a846a6cf2dc95c642ef1fbbfdd169ad5a5
MD5 026b811427bda1b9c253c647bc3d4d18
BLAKE2b-256 bea26c6bd1843088592611514ca2d9285fab6126c9a2914e050f20f23285ad6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf61186fe4b97228d319f49ad10cb4a1182bb39ca7baa2e3f94d30cfd3a2a3f0
MD5 df44cb9f981ce1eb25b7061942b7ae6f
BLAKE2b-256 755702801801e0219f65f043e9bf455058f15f13f423ea5dbf9ba494988aadc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7aaab95b5aa82c0a2c349f6b58998192648e10c0ffb6c4caca6f9aa29e7dcf29
MD5 b424cd545b9b502fbf769408617239cd
BLAKE2b-256 e8cb9df17b3b450932d1710198217dd47d7a974b473af877d3f0c137b9ef6efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 695a4d54682130a0407a739a8870436635b1766331a93836ce1ec322a1766c20
MD5 13c772223f2a93e875b65189feaf5943
BLAKE2b-256 f0a3733e6f80eb549b1d5b8ffcf0ff0486bf83d163af191441bb041904e40d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e5bd801c37ec7fea6d92708839a2c1af9833f8f3d67635ef5dfbc5d0803a29b
MD5 a393cc193da61e461f8c377b9cea3c62
BLAKE2b-256 537313eb03d4e463126bd1d813ef179890a285a78c0061d74006b3e4aa91b90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e3f95ede71d26d6bd4bfc3fb12a769d0f63a9f7d358de5dc518796f9e66ea49
MD5 f46cc5cff3152777ad9afba706a9c919
BLAKE2b-256 9c309677ba312f49a5be2068bf0076786d6fc368388c405c9fee6ae680f8423b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5067c77326e403c6875d6cbf13c030d83a10dbe9f296c58582f5a71e4aee493b
MD5 5b98ebb66e02d2ae21c07298ecdfe90c
BLAKE2b-256 1001560243336cb9f448b8966169f6480ca96a9209515dc674dc7f11c7891a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b4366597a4d6bfe4729f389275ed5e172b23d10fda7a5869cce6d04fc4c6f19
MD5 e5bccf370b81b7e4c3120e7c68b1dff0
BLAKE2b-256 57558fd8a4ac38447b856fbb43760a9981291069e6892eba93221824c9fb0b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46d978bd69fa102a256755061bd5e1021517f5ab2d382ff0633c79357d70ebda
MD5 83c4eed202aa283cd05799100766a523
BLAKE2b-256 82e64e4f5b6948d7818b07b243647bb2c4b07b80bacd3418eb8f5808a2ab444b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb3ccc249f04e15ffb6429da576f6580ad96e7282af1688cf7b50d942e480f10
MD5 2b0d455369572deec3bcaf970c83583d
BLAKE2b-256 b217f5dce7ebc63040a991424cfdfb699265320a92f8d078392c84393d7b9b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0cd86d711c91520554f62d50732cdb6831366e1ab1e52135dbccfee5f220f81e
MD5 492ec3799e7f0c0263c9de4c02ee8499
BLAKE2b-256 e31be18711cac438b98408583d4b8c6aeb5f6ba0082d4cc0d9a68935a9683eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1688bde036304a4d28c4b228f24123c81691090f61b43bcebad0993bc9b723a6
MD5 35b8cc88ff68e926e27102d3f9ead6b2
BLAKE2b-256 8a393a0120835711aeb37b71e0fb92c75e63571943465ee931d3fb5b18170c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75668d0f3ea105c00095905f58a4cfaf74ceb4f3be043b5f5883a8a187a6aae4
MD5 07d0b7b290f01ec13bc4854553ab3108
BLAKE2b-256 b64da025da7449ad03308dcf20df6918f8b30e9da4a06539b4593cd90e0479b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b32f16c57af2393f2601ade4eed99973c96bb70ab2983d203149b4f22b5c434c
MD5 17e457faf918424fcb6c5a7e3dd336b1
BLAKE2b-256 b1dad2832fdabc4a6bba7381a4d1c92e9f4b3184ceb149e5ced1b2d18ea1448d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b18efa803f53698a9edbc4fd9890bc42e99cd42fb0c98531212d78272a51078
MD5 f505bad85bb65497df40b84798c6d206
BLAKE2b-256 94966884b48aca68227d9c657a829c97812422cecd8d1b5688530aced7cd42d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a7043a7f75fae14b1f84cb6381a19d600faaf3e8590be654f1a63bc58d3398d
MD5 5e9c8b4f96527ab5ddd7615c993e36f9
BLAKE2b-256 d4e7950152adc3f329a37167d437bc2ed2df1b94bae645b784d89bb3cd9a0314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d72a46e4069693e192dae8092a1ef6f4e8fd753d6bae63e20a793e4bc78dffff
MD5 63820f6b189463d825a725bea0b6c52b
BLAKE2b-256 2212b92db04727489585195fd8a401a1f6fc05e2b11bedf798d19a79845512c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27f445757447dbfd732ec329a5c1f5841a276f63f4e8105e244d9e43e4ad5194
MD5 1e1c125ac711d1f3604dae9e4c0540c3
BLAKE2b-256 c5b16b3aac5795e1ec8f55ece3ed9066c5d40cbd45a3c367118a6bc98cd19f9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1538b58cea2923eff49434f39b3c5e249d894e59f830d5d879dc09d4f3041583
MD5 1c619e7d35863a4934e3b1733e2dac0e
BLAKE2b-256 e409c301550213f9aa7a55e9727c1ae48e16d7643655afa879cb4497b7e086e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d9275d8a46046e6b2a9c9cedeab88185aeb83321c7366f81ba71d2f05e23ec8
MD5 f04eb661fb6971960a02c4a7e925e7ee
BLAKE2b-256 498e3014d0f43580def07301b0e2c4ba7cc8c47b02b86f9025ea53d0cb155c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2acb048bdc1d2410afb4ec3303f8842016a620b53387581ca78aaec9aeadd34
MD5 fb64f73c3977f374ca931e11b5e7b60b
BLAKE2b-256 1424b6b4fff3a70b80de17e2bfe0887edc523eb5a8d799bc712ed6b4ad830654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bff3b03f901bda4e14b558c3cac0bbc68d41640ea9aa220bea33bbfc69f012d2
MD5 2f5f1fdeed88178f6df6c7e15b2b2727
BLAKE2b-256 590cbca9b979afaf5fdb3160b1af0f93ac0bd84f13f7271e3cfbe068cbc32bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c98fd5f941f54e46a4ccc846e77eed7ec909bbca5694aa9007aad0df721b25d9
MD5 bc6ea822fb694df544ed22a82d30bfbf
BLAKE2b-256 3d409569aadc6638aed7c30ee529c404189df90bccda3c20b5ff891446a75933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b47f9e13623f3adafa5c4f041543e2f3f563a88e692c12c3c4d60b93c6cf0b63
MD5 e04dba4ff5e80078534322c9551ad61c
BLAKE2b-256 05128356626ff68cfab887b669e26aabf6ebd27957389dbc4a3f54f6c22f1660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 983c6da0a3a0a852e9c1d14804286ba4805f8f8af7d9a5d14a5b7d261404e95c
MD5 39938a70e83b31d5ead671bc6d269ca9
BLAKE2b-256 27aab6039c050444cdfb194ac63845b84ba82678e3b438a9599480937932e441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad1fafd69965487881b2981e0d1e514b39ab51517838b4b135d647d124c0aa4d
MD5 00bd67a0049b9fc5f9d12ac7981c262c
BLAKE2b-256 d97948e6fce4f076d61f649b373e9bb3b601f97f6e6989cce6d82810de29b576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6590ea3395a16467523a428884408c0160a9216118753ab65eee0e818d9036a
MD5 bbe4223bd1bcc5b3eb9e0ca3dc345a63
BLAKE2b-256 a37158ac4bcbbc2ea4d5ca639aec51d371193583ee80a649163accdc385bb4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4687c392ce98599fd471c9f8a164d55db53bb14eaf99c9b2f74c90df867ec336
MD5 426e51cc7d7d7306143c67ca0dca7bfe
BLAKE2b-256 3ffccf724254979ce5b44c0c103d598a8be300b980cc503319bd7e4bcea43828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d14fc28b2446d70158921a2c6defb36cd05c34371e1ad5fab44046cf4bc96fe2
MD5 ffe2a556f558e520f92947f3eddf4d19
BLAKE2b-256 cfd944f5d01a6db2a4df47bfc2b0b1d848c57e363739e9aee8867327e3585499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a51aec9ac37373ae32029fd5386308f4e041546ee84c89bd87907f527f3f9d7d
MD5 1833c847624bf5dcb3d6fe3cb5db6b7f
BLAKE2b-256 c8a517893058a4451f11df66bd856fe7b994e71289abc6dba93784e0c86b9309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04551e99f1819f459a0b5805500b15bed807d6f95f0a4f3b9ceb491975963ca2
MD5 1e3182c98a619826ce38a735845cd54d
BLAKE2b-256 6fcb4a4306c50016c03676f4b89c9a6473aad16b73f023c1ab7f084455cea7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 007121bc5792ec30abc066d830d4f8a4556d86642a74b398fa17056d3d5f7874
MD5 1a5e7d535b806e332138419b609d7e4e
BLAKE2b-256 1cb8e72055757b0e389e79fd3a4251f1dc8cd3cfd29f614131852a433fc329ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dfd38def4e2511585911a33e74125cfc28d8571d0b4010804d23e6b45d83af8d
MD5 53206f7c8f480bee245b5ae6f7c566c7
BLAKE2b-256 288520a0ee00d046b378da216b2c8afd625ad36f83d28682f7ec6f90eee01dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 205e1c7209ce3da9bf6eeb40a9045a031bd161fc32adf3b78500688d63f12ce7
MD5 7ca49013b514d4a76c78602fb999b538
BLAKE2b-256 37032eeb7cc6f806a270eaeb5a7ba6364a20d945f6cc5d41b5e40d1bfda9d187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d1ad45ad8accbf8f4f6d235459f4fef787add84ba0d51d2d1973968f793b51f
MD5 d98032acc7bd8a8f35d9abf54a98d66f
BLAKE2b-256 8d4946ef69a1044336e6b9e67f09c6f1e9c3132fb2d64f7b3c5ea9725b02c01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24aa02bb6da27255fd4cca1608bf74bdaa36667246adc47b24f016080da74659
MD5 2e6e6bc8a6c5c2c82794523116897006
BLAKE2b-256 53c2dea965789b3fa92d3e9c97aec12d86a8846f5c34f240b9a4ae4f6bcabbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55b1f59dc50f2c62196915f725ab208d6e9bab012a95cf51843f41097f3b33d5
MD5 e0bde3044fafad4fb6f7419fef06ae8f
BLAKE2b-256 368dd13e6f662e00799d7b909ec325cb692b6e28c00777fa00085f42de20924a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e56cd61749c836f40ef236e0d9b4c8b3b4b0a89627c06173b37860838118ae9d
MD5 0d80792cf1b6579a4869244bd2c5663c
BLAKE2b-256 f1df3fb65d71045939a485026b1adc1b7150d5553e4e5033eabde9342d4e45f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 691b1f856220f4ef69d54a95618dc71af7bb0fd737d6df3791d25c928b6f2849
MD5 a9f7dfec1f6b118e503d57842c221e98
BLAKE2b-256 3f3b78dcee0ebdf07437d34a14698994fb25cc94916215bfd0b5b951d3366b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aece689af243de008781da635e68a7f7f02caca361d8329fce816d870b22f536
MD5 9ba640c8de4cd3fac540ded079038fd7
BLAKE2b-256 650dd24d59073d00a90174e7432cbdc8d48f8a20ca801cb04222ffebe00f7bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 990c13a26aa86594ff0edd4b2afb0b7201698bad09cb634d9c9826c3ab229558
MD5 a4503156e7d51c2ec1e071357a894276
BLAKE2b-256 ebd4805702e27ea1254af6feccc1014f833c2f054f8ec108623fd7140ccac967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30cc3f575d48ce6709a89e49f95f7a6c3691f28aca32465e07328d0aeeda434b
MD5 5a752c261a2efd775762e6c324227552
BLAKE2b-256 1c59e42a78fbb8af33ab0a1f1325556b1c8483dc0e08f705ed70e5531bfa3c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef4593b862f068d32aee0038adef13bba8720eb96f011cf45b33e03dc0b94668
MD5 657dceadeab430790585479b6f59bd5a
BLAKE2b-256 6530b8b25c11eab267c58534eca98a542388d400efa0fb25c30e8d6594475dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa4d8a522c7b2f9bfd1ba226820abaf14885b6f20f195f501b4799661685931
MD5 49b9e9cea40d8d2ee0da2805a74317c2
BLAKE2b-256 fb2924f496edfe8531f471008b2cbf7ba66ed50de2669fa4f09195fc395cc28f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2df4a3cc401775fc800988fb2a9c803819e5b82d6284fd18ee355154d262d33e
MD5 f4b209e0fc9d693c2237f7cb388b1614
BLAKE2b-256 849d710f77e618fa9fce182ddc1281c0c2be58907f7c26fe35d7407fec1a0582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d7706f999e0f4176c2853048ce482bf113b7ef8f19352e4027f9283ea6cf1ae
MD5 62ef4a937a2cb4462d5056413aa54246
BLAKE2b-256 6cd33326fa80832b8fe0b43f60f3dada4f8b1726d99d2c25f82f6284aaac6421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b357fe7b18a0edbe1cedbf5593019cb109d85dd75332291415e2fd4241c3b861
MD5 0f6da4a01b641b1980a2f96ac8c26966
BLAKE2b-256 871459156c0ea0989b943d4383ec1c9ae31a01d8cf4bbac005fb088049c38fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83532af916fd4a4ca4769d94eda9d62e54b1b7962a6f43c5487ee98462adfc8c
MD5 760d69d4028effacb8310dc02d6ab88d
BLAKE2b-256 211565fdf409802fe47e50143eb15a2252fcc703cf7ed289240ebfdf4c67631c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d7de51107736c1402d7d073c951b6f2febc1f0a663402ee20bf8c2956c5b6b6
MD5 f9a66b76249e1a6d667244e91b1954d3
BLAKE2b-256 0ff4e66b3c5f75d71254529a55f05f93b36d094769d3eabf6078f3c533fb0584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77fc1b61b098a490af747d1233998c41440ff463023c94b4cf5098db8954cb1b
MD5 d78254609c36a16fd96bcd7ce83d2b3e
BLAKE2b-256 7080958e101e10bdfd2d7fd9422bf67208a2b3ba762aa31c0c02b1dd894a52a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cb66cec7de45034a67d0cb0edbd8429be4a458183eef217b2fac4ca201a5641
MD5 899ba37135b9b60c66ece8baffae8de4
BLAKE2b-256 fcb305aa827c741c5774b8c19870eefd89b6614e65107b3e56f027e60683dc47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9897430ba65c36ede0cec6483f47aceac47eb95e2c7039ed744abcc59146d841
MD5 081690beb438f7845463aa53106f06c0
BLAKE2b-256 b6f4337f285f41cc11a301b3982f7cd0dbc882adadbd25cbfbd3609922d0774a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c03c8abbafb8761045dd7cbf0cab186cbe04e1f1f8729fa54d3e1553c9c63cfd
MD5 45502481d0ca2c74cf111659f45c7b9d
BLAKE2b-256 68d22fa5240f73d9870aab3f463a11efc9aba599280f46c95b16ea06ba21a291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47a3a3f9fb5179c8da6e2585f029f73236f466457174c031dca05a5c7ed21d42
MD5 ee19d5c8a3a1e26d22facbaf20a22aac
BLAKE2b-256 b092205dfa6d1f963ced0a790b7a8cdb22a15721c8642f88db128900213ce074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5deffca08bb2c5ddcbe652287e0586d2edc40ce860fa357019999f5903dd67b8
MD5 9367b4738a7c284c94a37f6a714f9cba
BLAKE2b-256 fa1ad0e8735f585b2813c257e04f3e7a2283b67a8b876696fe47e3cadd15b3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c027814dfcf0b613318a846ae9934b4fad564b9809df46a05e1d8bcc568974e8
MD5 829f5f7ac6078f06b6fa3bd00de7b728
BLAKE2b-256 75a1b69408e24cc194b4cb5ff6a02966cfe7470d79c5baf782554275cf25ef8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e784ccb7a5c41555868e838db5c244a0ed0263b27b19b38f04234eafad5b6cf9
MD5 69afdfdc4bea30a54049d762203312a4
BLAKE2b-256 2150a2392ddd1aee4d09f98f42407d50c905a64d25cba5486c69deabd4803918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dce3a516bce110b9736811957a2fda2e241ec79358811131b8a5c6dcc5edfd45
MD5 c563e81a66ef6769401341764c987966
BLAKE2b-256 b5e4ada72d4a020e3eb187a0d950f366cb2fb51947c480d29263c7ed70fd0ecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1375f504cc3b50f6d73da7c1a66a1a7cac11dd3520d68839ceacfc28829cb305
MD5 20a37fbd85a5a524f52af45d71165f05
BLAKE2b-256 374c3393f70aa1618c83430fd2f9d4126edde32570b77031b1f9e05778fd484b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4e3ee4b84b59686560acb6abd7cf4ab381103ddd9df3acb2ebd9b1aae074ad21
MD5 14cbfb024eca08cbbee1dd9c80d254d7
BLAKE2b-256 324a85dabaaedd57565cd597e227220022d0bfff50ee95b6a90689b8157fbe12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a4b719c8ed1636149a67e60cbefaed4c5ff9f2192949e7bb2caa3ba1f2aa43ee
MD5 574a68da7f6dc9b04eff210d1e11e5cd
BLAKE2b-256 f60310f6cf23b06c4e8ff94da053c0bcab28acdb91c9e84445712626696de484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80b591f0fa3cb80da4e1d31117da93ff31d02bb09f7672403eb4ff9e8100776b
MD5 419557ccd970896a012766a8d7a3cad5
BLAKE2b-256 a64f204d6c36f2affcfe924ebe4c350f97ee32e4d225f8acbb04f99ccca53cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 055d60639c1dfb427b4696b7071040ee37d673bf8402b80bd6bdc01f5f8ab4ea
MD5 9e7fc361c177494cd7480df78e913fdc
BLAKE2b-256 8d300241f4aeda55048d17b3d2f56a889dd724f7d0f3961c98e667fd19a4d2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e8fe7dc448a8ebb2f620c78295bf5594eebb4fb2dbe5d5e9d58b8471c2d60d4
MD5 d6decb0b6842d4ffd7e45da33631d6c1
BLAKE2b-256 85a5eec7cdab168080a5bf1e176095ff1970ae65ce435fa93f68db5289103d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72d2cb376bc5ea862f07ab0575046563a7f7df2c71480928bc3b5d52836d9d4c
MD5 66496029f2703a9fb6d200ca99df741e
BLAKE2b-256 487ea8752d6d49cb08d35df8887f10023a761a88e945cbb38e02d0b0a5d2cdd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3da4dceebe43ff7aa5b1a7f525bda3a1c589c42cb432282004da2820f5aaf644
MD5 257adfada44bac4e07da3143f7ee08ae
BLAKE2b-256 6507e03f3e3482c33912b9029af83c8d73b2652593cefa655ec53199c9cfa16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a145b999d18891944a8914f6933908f7275f60c97f7b4063d841e343a1e72791
MD5 9f7c0e51149c84aee92f47b295aad377
BLAKE2b-256 fe98f18bb95080586d07777251c20186e11b9272aea56682f7af840b806b53dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eddb3b89a945b02aed898e5224827fc4f8890c185123e7efa28eef86b71d237c
MD5 bf44f69a9acd732dda1a3c3258b30d54
BLAKE2b-256 a0f7562cf0df75f4c13d1e68a6e99072e1bd30725799143d1d70a26cb23a5c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a165c0a62dac96299429e2e2f54658495ddb60b7636efda227ff3cd71beb7349
MD5 de9be1224c587f4506003b26342a179c
BLAKE2b-256 3e8cece1d8f42f37a75380e6f66e34baea23d1d7ef76947faf66382dbbee28e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33a5f9a6e2338ca3b0b501d2a14892268662afb90dab88de4514f630a1cb5e22
MD5 affaffceaf0f41522dc09834167830d4
BLAKE2b-256 51def937e5bffa44998216a95bad935ce19ad7e2c0acd95d90e43953598a2b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b846dceb1b71db25f0236fdf69c678f0eddd65041e80fa8438a312e96740ae0
MD5 e730e251d068bece05103d8596eb1f66
BLAKE2b-256 fa171d18fffba3558e2a7397ba752f4ef6708ba6fb171bf7885544ec9cc415d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd0390b4dcb37f428c0ea9e419182d53089feabd9bf635ba2e85e30de393d25e
MD5 1fcebe6fd186c75b3103dc2b90e778d5
BLAKE2b-256 e7543218994104e1b0c43fa2816d22a7fbe8a5b1717518d694e674b5943d57a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a49137d078c4da7e1e5affa6a9b9c8c4c0c45584289dd6dc87ecd74ec98eeabe
MD5 33a17b10d6084a7ba195eeb13e643302
BLAKE2b-256 4369f77ceb0caec85a26859320eaaf1f46f6f174788a32fc4cdbea7ca206960f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 99633e7f1c5014e9237a09c200a79683658aee7c8627d9680ab512c1fc55a015
MD5 078cc12ec877146b6da222ec31b0014c
BLAKE2b-256 3bcdb9ec271f61b5979a30d53c9ac4bd326e4a37dad3db59cabecca29f1cea33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6c9840eb649c54500498a3343ee5bcbf9fa13f4deaaa23bbd7ef9e765bb3e9ef
MD5 a4129c4d46f4738ac95dcfb06e903fb6
BLAKE2b-256 f7a98417e7034330c103cede403929d9122feae03838c329960ba0c435ccefd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a31f82f77c25b467037455c886282e7d72db613c5a280aade65bc3bf020f6248
MD5 16eb1dd46d47c888558c648f75183a2d
BLAKE2b-256 6c8c9beadb2c32e95c6296e54a65c03bc07f9764083d35924c06cb7292b60528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edab3938a5e7eb495f21bc546ea873330fb61f1ab1bd377143ceffc297ee60c6
MD5 deb025ea23c11410a4da94c7d6ddbec6
BLAKE2b-256 1493885663b1f24de590cf562efd0f61dcba3bc18ac773aca3b004c47e659eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e00b910c34ffddbd5b9cf96b372b38304123796952703c10ef070debd62dfb4
MD5 49aac344862e86c648d561b12be414db
BLAKE2b-256 a1ccdb05eef6e9fd46d71879c7c716fd2d41f792ebce17ada6de3f03d0a898fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a74e905346af5f6d30d8eea6871431106fa2b3d19b0d62900bcb98a56354eb0
MD5 60242db41814865c0e30d2953b7087dc
BLAKE2b-256 44e405f555c11bd183d55d2a57f6e7e220ca5d56ec17fd592f18e972196d88e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ae5ead46ed18e079f30f25f6d6d2e4a1a7d6e59a7b2055d6145b362f7e8da4
MD5 e5e36c83cd348b6dfdef1327be57c490
BLAKE2b-256 d17edea9de374c0e4c16efa79fb5fb33ce1e23b8bc2ef30f1f1852cfe222b087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3839f73d21281975e9238249f363cf34bd00aecad7117d4499bee24cef229863
MD5 237cf50f6a5105e6f10b5bbd10e28627
BLAKE2b-256 8ecd5ac9225ae255c4aecee14d4de6621c4c47ddcc6b5ec6c268759c6a05ce6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2d63b54c9791249ddbc174a5d6dd4a87650436c73e331a3c6142c1c92336dd2
MD5 787285c780453d316e66be9f23293072
BLAKE2b-256 2b7719b46bb8acfa0f055ad95666d01f588ceed725ad3fdcf641888c77d4ee10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78e5a05c1c9b2bf656cdfc9064ca86a55efa95bb729a52cf5d0e751b20652104
MD5 be216e86121fd8e3b391a28715304107
BLAKE2b-256 0ce511d69ba737af66539a9802344661083ba7a8cb29e2f7fb54101c5f5fbe3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 100363f4c324dbb1511b3b8c7a3a279e82df05835ba60c1dea05c8a6987d5797
MD5 df4d3ed175c1be1aea5e7e51382cf255
BLAKE2b-256 edb874af6ae447b12282c7dc0f890f9aef0d10322e077e9bee5c254e88b14ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c8ce0aab49145aae5b1ab4a59366e84f2535f45424725d53d8eaefdc35a57df
MD5 38675f277265203e605a0e76b647bfc3
BLAKE2b-256 71e98db867663db51501174071f57b0e66cf586fdab7cb415cfb267d0a1a434a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cad278da02795ea8ed4ccc899fa091c8d5ef8bd74066d2f59dd2bc9d9787f0de
MD5 f75082e43bc45260ea718855456eba1d
BLAKE2b-256 c4d1fbaae2bb441258c1c08881d6d80a3601e3e8bb3b6b5b201ebbe9a73c92ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8de91a0f1f68702d619b126fec75b3db4fad8d4623e16238b4ee5b2c74bd7eb
MD5 28a371953f521507714d478f00f9b4ca
BLAKE2b-256 61cba2a691c502465c9d97b97adcc04b90af5ff454157d37a836345ac0b5ea14

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