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

🐍 User-friendly Python API for adding vectors and running similarity searches

🔥 High-performance Rust backend optimized for speed and concurrency

🔍 Approximate Nearest Neighbor (ANN) search using HNSW for fast, accurate results

📦 Product Quantization (PQ) for compact storage, faster distance computations, and scalability for Big Data

📥 Flexible input formats, including native Python types and zero-copy NumPy arrays

🗂️ Metadata-aware filtering for precise and contextual querying


✅ 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", "L1" and "L2".
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.
quantization_config dict None Product Quantization configuration for memory-efficient vector compression.

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 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.


🗜️ Product Quantization

Product Quantization (PQ) is a vector compression technique that significantly reduces memory usage while preserving high search accuracy. Commonly used in HNSW-based vector databases, PQ works by dividing each vector into subvectors and quantizing them independently. This enables compression ratios of 4× to 256×, making it ideal for large-scale, high-dimensional datasets.

ZeusDB Vector Database’s PQ implementation features:

✅ Intelligent Training – PQ model trains automatically at defined thresholds

✅ Efficient Memory Use – Store 4× to 256× more vectors in the same RAM footprint

✅ Fast Approximate Search – Uses Asymmetric Distance Computation (ADC) for high-speed search computation

✅ Seamless Operation – Index automatically switches from raw to quantized storage modes


📘 Quantization Configuration Parameters

To enable PQ, pass a quantization_config dictionary to the .create() index method:

Parameter Type Description Valid Range Default
type str Quantization algorithm type "pq" required
subvectors int Number of vector subspaces (must divide dimension evenly) 1 to dimension 8
bits int Bits per quantized code (controls centroids per subvector) 1-8 8
training_size int Minimum vectors needed for stable k-means clustering ≥ 1000 1000
max_training_vectors int Maximum vectors used during training (optional limit) ≥ training_size None
storage_mode str Storage strategy: "quantized_only" (memory optimized) or "quantized_with_raw" (keep raw vectors for exact reconstruction) "quantized_only", "quantized_with_raw" "quantized_only"

🔧 Usage Example 1

from zeusdb_vector_database import VectorDatabase
import numpy as np

# Create index with product quantization
vdb = VectorDatabase()

# Configure quantization for memory efficiency
quantization_config = {
    'type': 'pq',                  # `pq` for Product Quantization
    'subvectors': 8,               # Divide 1536-dim vectors into 8 subvectors of 192 dims each
    'bits': 8,                     # 256 centroids per subvector (2^8)
    'training_size': 10000,        # Train when 10k vectors are collected
    'max_training_vectors': 50000  # Use max 50k vectors for training
}

# Create index with quantization
# This will automatically handle training when enough vectors are added
index = vdb.create(
    index_type="hnsw",
    dim=1536,                                  # OpenAI `text-embedding-3-small` dimension
    quantization_config=quantization_config    # Add the compression configuration
)

# Add vectors - training triggers automatically at threshold
documents = [
    {
        "id": f"doc_{i}", 
        "values": np.random.rand(1536).astype(float).tolist(),
        "metadata": {"category": "tech", "year": 2026}
    }
    for i in range(15000) 
]

# Training will trigger automatically when 10k vectors are added
result = index.add(documents)
print(f"Added {result.total_inserted} vectors")

# Check quantization status
print(f"Training progress: {index.get_training_progress():.1f}%")
print(f"Storage mode: {index.get_storage_mode()}")
print(f"Is quantized: {index.is_quantized()}")

# Get compression statistics
quant_info = index.get_quantization_info()
if quant_info:
    print(f"Compression ratio: {quant_info['compression_ratio']:.1f}x")
    print(f"Memory usage: {quant_info['memory_mb']:.1f} MB")

# Search works seamlessly with quantized storage
query_vector = np.random.rand(1536).astype(float).tolist()
results = index.search(vector=query_vector, top_k=3)

# Simply print raw results
print(results)

Results

[
{'id': 'doc_9719', 'score': 0.5133496522903442, 'metadata': {'category': 'tech', 'year': 2026}},
{'id': 'doc_8148', 'score': 0.5139288306236267, 'metadata': {'category': 'tech', 'year': 2026}}, 
{'id': 'doc_7822', 'score': 0.5151920914649963, 'metadata': {'category': 'tech', 'year': 2026}}, 
]

🔧 Usage Example 2 - with explicit storage mode

from zeusdb_vector_database import VectorDatabase
import numpy as np

# Create index with product quantization
vdb = VectorDatabase()

# Configure quantization for memory efficiency
quantization_config = {
    'type': 'pq',                  # `pq` for Product Quantization
    'subvectors': 8,               # Divide 1536-dim vectors into 8 subvectors of 192 dims each
    'bits': 8,                     # 256 centroids per subvector (2^8)
    'training_size': 10000,        # Train when 10k vectors are collected
    'max_training_vectors': 50000,  # Use max 50k vectors for training
    'storage_mode': 'quantized_only'  # Explicitly set storage mode to only keep quantized values
}

# Create index with quantization
# This will automatically handle training when enough vectors are added
index = vdb.create(
    index_type="hnsw",
    dim=3072,                                  # OpenAI `text-embedding-3-large` dimension
    quantization_config=quantization_config    # Add the compression configuration
)

⚙️ Configuration Guidelines

For Balanced Memory & Accuracy (Recommended to start with)

quantization_config = {
    'type': 'pq',
    'subvectors': 8,      # Balanced: moderate compression, good accuracy
    'bits': 8,            # 256 centroids per subvector (high precision)
    'training_size': 10000,  # Or higher for large datasets
    'storage_mode': 'quantized_only'  # Default, memory efficient
}
# Achieves ~16x–32x compression with strong recall for most applications

For Memory Optimization:

quantization_config = {
    'type': 'pq',
    'subvectors': 16,      # More subvectors = better compression
    'bits': 6,             # Fewer bits = less memory per centroid
    'training_size': 20000,
    'storage_mode': 'quantized_only'
}
# Achieves ~32x compression ratio

For Accuracy Optimization:

quantization_config = {
    'type': 'pq',
    'subvectors': 4,       # Fewer subvectors = better accuracy
    'bits': 8,             # More bits = more precise quantization
    'training_size': 50000 # More training data = better centroids
    'storage_mode': 'quantized_with_raw'  # Keep raw vectors for exact recall
}
# Achieves ~4x compression ratio with minimal accuracy loss

📊 Performance Characteristics

  • Training: Occurs once when threshold is reached (typically 1-5 minutes for 50k vectors)
  • Memory Reduction: 4x-256x depending on configuration
  • Search Speed: Comparable or faster than raw vectors due to ADC optimization
  • Accuracy Impact: Typically 1-5% recall reduction with proper tuning

Quantization is ideal for production deployments with large vector datasets (100k+ vectors) where memory efficiency is critical.

"quantized_only" is recommended for most use cases and maximizes memory savings.

"quantized_with_raw" keeps both quantized and raw vectors for exact reconstruction, but uses more memory.


🏷️ 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.2.1.tar.gz (62.0 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.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.2.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.2.1-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zeusdb_vector_database-0.2.1-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zeusdb_vector_database-0.2.1-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zeusdb_vector_database-0.2.1-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1.tar.gz
Algorithm Hash digest
SHA256 6537232b08bcefecca3637ec885fdd895fcfc1d1f161431de7722667d1e8c6f1
MD5 b9a4d3396305abd887e53305801aa467
BLAKE2b-256 3bece82d086819d8b5c83ac3eef0685230af880fbc78ca349e502a0e2eeab3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35bf66b7369e368eb9ae2b469659d7f521af8cf159603d89f6b62d8eb7d8363e
MD5 b3eb440c2ed2a380b45b73e56d1a638f
BLAKE2b-256 1866b16a8e1517399eab7f49d4720b9f1b96e2bcfdc6594cdda6cc8ee98b45b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a84608390827594ea7fb8a390e19805e70fff5e4396c9c411059f03d02cab72e
MD5 432cfe120b622cfffc06a849072b452d
BLAKE2b-256 c1edcef0d292f83005b4dc6de5358a36ec485e913e97045ab3b4a0e67ec772a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2290fc19dafce013b4975cbc3fc17e99158aa4e6bb1baffc3dab62c09ad8a850
MD5 035c737eaf337798066c5deedc59e9c8
BLAKE2b-256 a687625506e567ae5cad387450f922e29d1eb660379f7d0167ec83cbe71805e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2165ed0b90c9fc61df8be2c5f80b5941517b9c7921183c702e73ed62787c80ca
MD5 5c938f2eb55489e141d6db6c10eb8723
BLAKE2b-256 858cfca4f722142bc0700fc556b01d70dff18992800ac77843ffbf5bc4f1485e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6668d1b74bbfc6b1463f77a5d744ba03c2c626dcf69ef703aed8b18a0feddef9
MD5 137fac3f454240849e78602d04c6ccca
BLAKE2b-256 a434a834e17052f7118e1edeb44f1e6e67ccc2b9a791654e12f16d19437c7513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7943a42ecb7dc4ed4dfc68ec62c30b8c282ffe11944a74b67b34f6277f912be
MD5 df4f4a89ccd4f53a79fb2a62c1a2f04c
BLAKE2b-256 0995e26ea5aa1b2f8834c4b30af5739b8045a01240e2864660c8884f0ff998ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51e66a682cb47696cc1cfa1f682ac2db1cf86e3837a14c564d373ccfa9c90c25
MD5 39a1326c2896d581310c639ed18a6ffe
BLAKE2b-256 83ee6d6740b395bd3e6b6c0309f31ff7b3cc961bb6776064b3fb696362391070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3412825582ca330fa5949ccfb18ffb5989b5351c97e5aa0eda41c93e6eecc550
MD5 ed10ad627776b7fa30581921333b4cd2
BLAKE2b-256 b1385dc3cf020a08b75664bd1d34240754e4bb801737e6c12f5a7e89a416e02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f686f3d7b1ea7ad37e92d2bc91f344156d63ca970d178e1685c28e5424c4b2e6
MD5 6e0fe81c17c1629f750997b41fc7a5c3
BLAKE2b-256 1af1a3fcf1945cfd59e27822d8a6bd11712a872a6ac5d438a46559fd8c5a750e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 267d598cd74315398a0ef3e33fa5e6d1394e5fc9c43d69e7752d662b165a752b
MD5 b7dae60549c9804f192cbb2eb13f7da0
BLAKE2b-256 c456864d4cc0e8f20a65af3195c4adb1f1441e1941a98a34c4c6d7fa76891626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba787dae0ba0fc8a2dfed1c58c2ae2ddecadd33a688cbd64fb541d03660061f6
MD5 edcf73b16e0546816cec28dfc9e8cf27
BLAKE2b-256 7f9d43eb5e8c11df62e485457364e1d0db4748cff3850678e1580339b622c9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 767455d127d6053cff61b1b9bb72e226f32a09eeab5f40296a63eb3a8b2a8842
MD5 b6601450a53c80537688d50a4d43b303
BLAKE2b-256 f8adc156f84d21644913c4bfa537a567ed90c422979da4e8d3ea8b72c33d9b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89a625f4d1f7e2e713b2597691d3f4f4e61133ca74f5099a94dbe25bc5c32219
MD5 21aeb13de3b1b6b2c0f2e8b30730afb9
BLAKE2b-256 f8006cf8895f8c943a5f95410f001bf95708732b4eec985af20287fd7f40790c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5c0621d0bc6cdf9ed0eacad16ea6356d522f46523e6d04347150f1c59464376
MD5 e7359593be685406763aeeeabd2bf9d8
BLAKE2b-256 b4c344e294ae67413caf61fe301b33f187935419bb80b99702572e2f0de9422f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb8281cfeb7868b1fd4285e7bb71fa3efa54b4a6ee61bc03517f903df4ec4fb8
MD5 bbbfb1568eac7da90b856b3a3e2cd3df
BLAKE2b-256 95de2ffad675174172bc5e2bce7fefb3e8457999a6b00282f51a916bc4ffd735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9dbde5d80364937eb5a9a5b936d774d0d08287c29b01d9b0987d285c536e98a8
MD5 d71049f5c57d916e24ec457fbb3fa147
BLAKE2b-256 bed89177f6eb7f197d2b07eec8e1b98fb5abc5e51a4302a3c44ca0c384a47bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf19280a46773786bebcc15ffb58558407b23ef32079e1607b8693c5c55c3b24
MD5 502f4127208c4b7e5c389314c93824ff
BLAKE2b-256 f039f25d8ca44f6acb43bef3be74bd94fdceea98600cbf965702ebce36626d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd833b13aca058b4ec28fbc76f1d95aa3393e6c8e839c6ae825eccdd4c462968
MD5 824d29697c1f36fe5dded8ed097531ac
BLAKE2b-256 c3f83b7efb6c2e2792ae2095139529e1ba8cd60a5c58c28686bbc6009e462340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be1dc3b0c468e6db494efdf5426216a2d3e6026e1955359907628c9a937997f5
MD5 fcd385884c0eff770e5c0f4cd555e3e9
BLAKE2b-256 d551de3fbfd7ec476ff5efa669ec130e98d64c88d2adb8ad9c3b8691ad0cfb54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c48af42bcd75df32594440b8963628559df4efbf5981cdb138914d63fb88278
MD5 fd470a88680f34877eafac2c0286329a
BLAKE2b-256 7fabbb33c7599bb0b747bd22f34a3e6fa7473cd816b832c327722d76af411299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 451cdc2c3600ef543a660aba8f15bf130ca811620f4091156ef56adfe0cf795a
MD5 7962b805de7169ba80bcdea76eb730cb
BLAKE2b-256 b6b48653f592edb6214ad3b59ee2ee82525595882ae2643e323e21930242d8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ecf7c2eaca1ef5e119048c73d6fb5d6e608846a0c9a6f8aadf8c4d3572bde2d9
MD5 e857dca02d70b12672c3b818280b24a7
BLAKE2b-256 7c86c5bf7f263390726c4612775429e534b224b0a096d39372daa5b712ddf67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deae61d47b17ff14ad016edcb9c4536973e5bc356e696248f2f8a69ae928ffe0
MD5 152365f3cca7f39de816cef16104a3c7
BLAKE2b-256 fc29b51bef6ae1875791f60b78750bd3921bceddd57db1e4268e93b3b26cba1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25fbe495e1c84d6a0f51eab05f325ce5994d948b86c1cf4aa707724cf8f2f175
MD5 68b468f1e7814c9a215487aa3dba9ec4
BLAKE2b-256 4c293c1fe1e3928ba6e9c555b2396d10ccf0f7eefdf0f33ead09c13c781813b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58796088c85ea085633b2ba06614759a6347a2f5f7901ae865ad40903f26e71f
MD5 da692eaa7afca536961a93525f60c28f
BLAKE2b-256 bb585079b40fff2592c9c17f39a59480eec6afdc84b5dbc07ee7044b347559ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 662ac7ed01105e53410f673886df52fba9d2e8256db8aac690c4225d2251c1b4
MD5 fca04b2eee82a56a3192b35140a2ee1d
BLAKE2b-256 e7d1bbd72e4590b4e2b7bbc7b68f66f87bb97b891d8cf81565b247b72b5fa6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8519c001f1d9a78cebb0f814adb11fb91d2e07ecfcbe237baf31712fc082befd
MD5 9d24420bfd027ab8bb9e6da15c6f1126
BLAKE2b-256 3bb3ee81bd91c0e32682e881f2265da508695989ce1cd8800598194d6bc20ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccfac929acd80d32d39561a839cb2d3a03968d122cbc600efcf3726e5b9dd374
MD5 d5306ed51de7b26e42b2a6d96af33335
BLAKE2b-256 6b9f9ffcadc9d128f22646e8766082a9068e577baa091ff2f6260db02a863c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa28e51b5c0b6fbd5379a6c1a3aee6094d17d44933fb89d079c6d7a7d3792889
MD5 a4f4f7f04971ebace342fcad6a87dfec
BLAKE2b-256 96fbb011ee765b9d3760d7c0bc072f0ac1ae21147649f09b9d82004e99d04858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25cd5e7bc997415cccaaf1825fa47f5ba67973b14ca4612503b72562b0d86cf8
MD5 7b2ea6771e4d97d467e2410ab53c72c9
BLAKE2b-256 85aa99b914f78f69b06afa488c8bdcad5b8754da9e653fea8c8cc780d5c3e6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fef0bac75de9d2f2c6860805de20d6c78b5b3a06544875ce3853a07272becb8f
MD5 d9d7cbd3f29e4d2bedb046fcee74f6c4
BLAKE2b-256 c86908e3d48fbfb1bdbe8c1b2be5b5ea763650109695f35225dd3351d28072bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 517e0a7e808cfc704f4a649b2077fc7fa2f890d80f47b6b46c15c7671e2a4e8d
MD5 4a01287636a6417f62d692c56e678f14
BLAKE2b-256 5e6036dcf8662e3e6dd9a38dde27f66b46203ce486c3f45dedef50ad3dc2359a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07fb600d1af172e7c6dbc955b0904398119f2badee89b0f26a41d8ac61745a38
MD5 d486d5c6e998eb03b13f3e33ab942f83
BLAKE2b-256 548c0f4dff45b06dc344b06299e70395ee5f9c51ced8800411ca90198e1fbd9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 253c944990b757bd56ce87d36b605c3bee116cc4cd001033bbbdeddc707c11fc
MD5 65ccf71b9e1f25dd0c35c66932f7e979
BLAKE2b-256 46c4376b7c0c6103a27b99d644105cc6a9828f218301b130b9bf40d06deb7231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 536aaf79d306287cfe6ca9466df712265d73381ca1d166a7be9b2debba15df88
MD5 a1eaec03a97fd32fe19b9ab34a991cd6
BLAKE2b-256 136585d1955f116894fc04323fa2560a8eff31335daf59f3dd1f3e3013530359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fef750e6b7e33fa5e39d6472b967f893f84f957eef9563d87b2dc0fa02f24e29
MD5 d9c0ba31ecd37ea0ae5cb9fa3b1008c5
BLAKE2b-256 24130c068bdb520f6da42f5275000e6b3c11b52d1f1d8eacc0d57cb0465aa002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338299cf3a9825d92d0dac854377e51785affbc48769526921d095df8847ccb4
MD5 171fdf1ac3d4e272fe00a8b8390046e5
BLAKE2b-256 4221ed170a977f09631041a0845ef53608ddf601f9b45e40cccaf3f962071d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1828993097cfdcdb9505dec68bdca99e8a4b790f0bd9ee1534f49905e3a3bdaf
MD5 b85739431289b9377edb2a8c9cc492bf
BLAKE2b-256 9698d100cbb584c0916bd6188eb70bd27f339d0955f9b71a9ddfd2d374250ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12dd7e7d40d8df57ba83783583b13e4c177ceb3a1581d282b8faf11fc674ab70
MD5 0cfcddde2c071a9493b5251fe5fdd80e
BLAKE2b-256 9d51f37817f9e213bc57e3077005ad804e2873662bb2e3d72711c2274c035769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff865e4c066537d54b3c75c6e045e6626ecffb4e178b6fcaea5009e4ca6b8107
MD5 74f7ddf3ef332fa8b943d5f6fe91a0ee
BLAKE2b-256 85a47e64da94fc3fb402586a0ddccdf03e001b6af2d54054f0ef922da42abbe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73f719eb26b2ee1b76d9e3887d890575eaacf68afb15ea516084466ee8adb197
MD5 ede2ca243d93df3bc53a114c0e69f89d
BLAKE2b-256 5e9460e07cbcfdf65194387371a47a585706b076bb72dc6d8f739c139bd55537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d6ac486535542418ee3d9af704375550c48ed39f3ad61a54dcfdc917d468a8d2
MD5 806f3f286b94fda5dfb521823e68f702
BLAKE2b-256 3247c062ffb90b0885d5d437cd6bc4b432922f1efbfeba5c6648745d96b73b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05d501f7b05d01ac1cc1bd31754421990b56736b06b882391f09142f19d5a108
MD5 afb78a078fc53513a3e575989b052fcc
BLAKE2b-256 2aea28b8b15cf6e0e543496f26491fffb327a8a488b83beffb7d68d1786d9b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b873774103c95e096caf1e3561dd2f05b0709317cb50839f82de8da60c295e6c
MD5 ea86c5ff834f56928eaf409c106c0d84
BLAKE2b-256 8c0fbc6bee9ca703034e2a6699716a508b3fb026c9492d94c28052f3cf86cbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 571fc296d34f4b1b2885bc68d514f72e2da2fe7e2f740a18f714f172756a7f1f
MD5 5a31112aea12edbcf028d149c718cef0
BLAKE2b-256 3dfa6b7a62e37fd1d868bc3a20dc2573da2d2547d6751e52c020bd5c5595e93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fdd716b67d1a51240e1394ea79dbc5467be8fc5f724d0afa1721a6a4e57ab4f4
MD5 d8162b323053e10cd6d2e6c59b9aa0d0
BLAKE2b-256 d9bd39a181666c91d7bbcd5c17c2d413ec0b8f6b0a4f72e8fc0951668a1917a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2231771a28ebf846836c2071e9e4339b442de3c4540bf3818d3452886dcddba
MD5 a24c8fbc700cd86119d5a7a62490b69b
BLAKE2b-256 28241257b2103ec0668a60a650e95739880d6ad0050114dab1e524683acf3180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f602df14628295f29da3739e403f9465d4949dc7de2a7e6df0d12748eb603f4
MD5 9354428d1cc0d09c35663eb69ddc93c5
BLAKE2b-256 bd1ddeea8d9bea91525042477149add91ffe78d4af686abf975de429beed94f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa64b6aa3b6c52fbb1b5baebe0aae9048ede18f5ff596bd2a3b3c7ee02d8a0be
MD5 9ac7a65d34d1636952bcdef4d6b10aa6
BLAKE2b-256 e3e08e8df4b70ccb44dd48944fe9d4e82184d05b8253f665ffbd9b89a1ab317b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0ef65bb25aabbec3dfd30b040ef90a99b092c3aa6d5e5d260022b753f8d3b8b
MD5 290f74b5146de77cc6fe847ca23718cf
BLAKE2b-256 0b0f52c14d799cb8b5b286c5adb10cde0f2644405d5a54515e24374563fec05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1f321cc614b04e221feaf5c34e02d9c95eff4837c659195ab92716915073bc3
MD5 7d0e557df712316e3cc54ea4236b5a40
BLAKE2b-256 07e6edb720affa60e970fa376bb3abf67f3c2a59f052c7c52784a473f6ceaf27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ae5e43efd90304fdfab079ac9ca032e81bd02add1ac37054649705395445151
MD5 b16fc87879dc0e238ecc70f7662d1502
BLAKE2b-256 23734a9b0200b323c7e7c36403a87028cece5397a028c09af3c0ff34f281e885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f9e6dcaabcc7d94665ffbae2291a199acc5573859456be34f643c13f9e1e106
MD5 3a9885456e35f39d90efc88e49dc7353
BLAKE2b-256 91e07a82b8f70e54227bf3a68f5eb0597d7f0614a81a5384a75f51770eda72c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea549ade4ddd75e836f50f9fc7d0ccd3cd8828a8f44d81bce288d26527861a4e
MD5 f3601cda8076618605b1bc0fed6ea7c2
BLAKE2b-256 1618ec68ac675a1e0b2b4b2ffb9b72849cbde4bb35aa5a07d5db785fe075eae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f350c808a1064e742f5e531a23d15dbc1a2dcd5798332212839fcdea17b20427
MD5 dbb4b48231a971615f05307b76071f29
BLAKE2b-256 1e359839f15e05ea790c2708dedbe5a7b58abb1f85d49839cc919592033b1e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ff32c7c75f9744e3c49f739f18502cd7e1034a95ac7b894976f700fa4ddaa4eb
MD5 14cc4949d16765d15d01272fc8a946b1
BLAKE2b-256 15c6eccd6cc11c3206cc46b5528d0ee3c5b32ea757b1589fd07a133696678f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4651ca507b530768a1555db92a436bdac9ee091b960dd320b270d95117db7de6
MD5 ad75ca2566dbb060f04abc07aaa242fa
BLAKE2b-256 af15fa5f93f3a6ce3b66267a09f89d74e6318d376c7be0f20c79f98b04b1f740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b38a25e5c3a4baece67a940a024b10bd81aa5a41aa5f523ce11d277f7b99cfff
MD5 8b042d9e947947e27636cddee040321f
BLAKE2b-256 5d3fbced08fcb198c4b0559c8fcb8754e288b7db2c7a94cfeea55dfb6429fe01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 653af4b9eeed220378c839e860311d33702eac9ad8ea77e77a8e710ee2958593
MD5 301b9b9ac63ae213d62a3bb652f50831
BLAKE2b-256 8962273fd187701974e94d75689bc1bf546d74c498af58300999b1e579e5b9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4fc916d3ce0bb210a1c02feea12402335e2a63cc3cae25b22341691c1ebaeab4
MD5 d4bb880752e20fb583fa2c0d04b8868c
BLAKE2b-256 906c70ee9b79bf3e6b9c1810fc6539a1605f0763c26800523d7c084c5dc106e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b981716d394164fc24e36d5b2cb93adc5537c8060cdd8e09f75aefbc5a2eb3d8
MD5 519fe01b91cc3add2a695c3765cd56fa
BLAKE2b-256 63b6086ebbc3a350631b7f1878044a4a507906d97e941e3293cf630c220ba8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7bf5233b7d21064ad3a9da588bf6fc7d9c0c7a6d5f83febef8b18559eb593ee
MD5 3650360743afccf96797cf5c504b61d1
BLAKE2b-256 ab8076547e262502af937dbf8aa642f659c208cc5e42f642e057e7d0656a5e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0bfc7109e7841f38241b6b8dfedc6b3001f005ef71b329bca12eeb5dd38247c
MD5 f92e0f4cba1eb632a5b0274ccbd1c911
BLAKE2b-256 ccbbbf6880765321181f472796ef5a722d7372f569d1909e6e5da62c5877c443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42adb13076d825977c081eb3292e5b5d0c11acce96a7a7afa7f4f5830485a334
MD5 28ace2ac38b62fa0ebe5992923fe1998
BLAKE2b-256 0af0e5b6c707c9e7e416d8eea1e95af3a560d2c9e5f8670da602a45c0a56a981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09e6cbe66733637d305ddffe7bf854000ee30dd2f0651e95beab56fa554e3d39
MD5 05411968abd519fa36cc0f37d7df6017
BLAKE2b-256 4b3bceeaaf87c02fdabf55603279eebf139cd6366b4f884cc725e1fc3ab87149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60acbc99944e18a402fc1e5f09516e864e89a9239b68ddf182671251976c94f7
MD5 d2e77e1253e21a8eef6316a4b443f31f
BLAKE2b-256 09517d756d021bdb3ce4c5becdcee6a612f90c68afa9aa523c5d9ec8ed52952c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 067ba5a141aca420cda55437ba347889c374454a72ed35d3b7d0ba46804b84d3
MD5 d03529996922d955eeb88e703fa37861
BLAKE2b-256 1a2d89a7eeb6cbc10a9aa52d7993145574fc7f7cbaa8389d4479f40e5860c485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24b7c159180df284810d5d91b9c9b473f425c05e384edca2dba1cbf677007a93
MD5 abf3c205666c3ea791126b2b509baafd
BLAKE2b-256 f1d053979c952e951af3f797cc88d12e4308abdb2f1fdebe86f991a675167227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc2bcf8cebcb14ff858731497a7f1149132336a65debf3fe509d7cd5c0324a83
MD5 a6bed394aa3a0f8ef55e9a1366a2fa0e
BLAKE2b-256 53e17c2919c0e6742ba5a2dddb689f27e24a81c7dc90e987abe51d62f7bfd664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 084fc83ef3a8439e2ebd73bc2950decb6688e74831a566c176a53dd51179254b
MD5 ba5301868f2cf7d362fd00e96953ab58
BLAKE2b-256 5609b789774dfccfc74be92f058d87f80dbddb6aecbff936b647d8c95853ad55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf1baa1f741e4051613bbc9f719249ffd9fbedf949f773d87ca89d57f14f215
MD5 996d0575b1a802fe290b858506246895
BLAKE2b-256 38a23bf7b80fa1f45081fa9b2579a7767cb0a96f72c04503c71c7fe439695768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a81cab2d0f5a27f21ddd650b452646e799f7c7ed0f8f1c864c05e6a633a5db6
MD5 d36e4f59f9445d397323d40397742b86
BLAKE2b-256 f9034a9aa16aa79e412c090f7610633b39ee949f014d34c358d03c481ff918c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a66380c16f58a83d4888113177d253941821dd6ae872d9750dda582f5e1e9f63
MD5 e8b0dfd7fce03b5431ed3c015c631809
BLAKE2b-256 6a14603a78141d8eac7320b6ed42bf36fa4d614d4d96a41c19ca278ad5be2a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f984ffbee4a893c1056911e8ede04ced4e7ae11814beb23ca8a2b10c6512bc11
MD5 91aeeecaf9b36e42523b12763ed6d922
BLAKE2b-256 ebab893e4b036bd8c44e6737c6716c9a6b6a49625ffd559ee27fadeedc1b2491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c551fafbe64c1a46c13c27290e92dd19dd2b0db85584b3ec2ac9248abb2d9e4
MD5 e67736da893d0c941f6cf2a63519bf02
BLAKE2b-256 dc9973a1dc1de38654ae81ea651f4ca95490ed05c6839253e3e513a00804ea58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a42867e56aa6cb092182821e43ee17e195df710c44d79bcac19313cbca63e1e6
MD5 a371b1b2a62a858d2c6c6745adef9a2a
BLAKE2b-256 a152d7478ca74ece374f19339a8018d34803f9cdd435d2af7387bae325e2785f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 760c42444c1fafceb13d724dbb51061c26b101c8e888625a1d250f2452e17762
MD5 c97a4630905bfac49734416a96919e80
BLAKE2b-256 1919f382540ca1e9543db448b9ce4121e36a68c3915eb61f36b9b84cfb89cd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41af148976b640ffc3180f91f0e68a38d282423ebbc1abee4c6a8adf8838693a
MD5 2ff392724487ad6f152fd0044c1bef06
BLAKE2b-256 68402802eef876099f19ecb3a56c1314e1493887d3fb5e52caa29a092e4493cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73dc294f6bd0339f557849e11acd7ded082e7d9dff43df0157bb59488bf291c2
MD5 f126f15406ff463ab7aafafcf70060aa
BLAKE2b-256 8961618bf0468e0fd9bd26ba3224546eff4b6c8ea14dfd3fc807927f5a94896b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d9f64da731b023a2195e7b461f34e5f85b695363bd348036baca81785db6cc5
MD5 8bcda5916db568c4c1e34c62fe3153f3
BLAKE2b-256 b2b330939bd88beb162e13e2b5daf581df0b781005aa00b597a65feba18947b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53a440d09b3aced6b0c95006d3c5af9210fa100ce35f0f79c17797333899c678
MD5 5b8a2d8a76353a839fda7ffb5cc5a46e
BLAKE2b-256 0d62f364c633bd85537f1eef8a289d14e07f0c8f3990f584dfdd4b8ecedd720c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96567bb44be6b228bb5666e4662f6c88acd7b5105c0230df67b131fb05a23afb
MD5 f01783d1a47e7b3e9e3f5050d700ce43
BLAKE2b-256 39077dc0ed17b18d0c926d76a3dce4c529a3f95979719f673da5e3d2012e7681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93ec37c5fe86d78a253de502a2dd8909afe2897c2b142cc8373abe01bb8a21fb
MD5 01714ba83a39b6277a9a745a2c9e1ae9
BLAKE2b-256 a4d18a5d69c045c0a19d5c1b0f35299bb5e059b433f53e73ab8af89b7192bebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b240cdd4840661d5a4001f18eff1fb7972f1277ca251662207382edfa686b1e8
MD5 8d3799cb79fe69f035f908496066c50a
BLAKE2b-256 a4feb786b4f5c713bd25882c0aefa2d4feac1c703761b545ffd1a3238f3b18a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48457c3f5c210b9ccf891155b88e9e6a89e4d3a71c0e8bf83dfc7cd4153e1551
MD5 5e329e5391f2295e6092ff6dce601d23
BLAKE2b-256 f811d522eeea4c54e59239013a9b061b1dd8f3eede7456691c47361a2bf8950f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e24ae04dec9abe196a38b3da1cc3a6e4646abb47353773004c6d4438076263a2
MD5 08d9d95aed352f628546eab099dd1378
BLAKE2b-256 09b5f17e1238ff3503edc7da4513c201fea2250fffcd2bd052456f5cf27b85f6

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