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.


💾 Persistence

ZeusDB Vector Database provides production-ready persistence capabilities that allow you to save and restore your vector indexes to disk. This enables you to preserve your work, share indexes between systems, and implement backup strategies for production deployments.

The persistence system supports:

Complete state preservation – vectors, metadata, HNSW graph structure, and quantization models
Hybrid storage format – efficient binary encoding for vectors with human-readable JSON for metadata
Quantization support – seamlessly handles both raw and quantized storage modes
Training state recovery – preserves PQ training progress and model parameters
Cross-platform compatibility – indexes saved on one system can be loaded on another


💾 Saving an Index - .save()

Use the .save() method to persist your index to a .zdb directory structure:

# Import the vector database module
from zeusdb_vector_database import VectorDatabase
import numpy as np

# Create and populate an index
vdb = VectorDatabase()
index = vdb.create("hnsw", dim=1536, space="cosine")

# Add some vectors
vectors = np.random.random((1000, 1536)).astype(np.float32)
data = {
    'vectors': vectors.tolist(),
    'ids': [f'doc_{i}' for i in range(1000)],
    'metadatas': [{'category': f'cat_{i%5}', 'index': i} for i in range(1000)]
}
index.add(data)

# Save the complete index to disk
index.save("my_index.zdb")

📂 Loading an Index - .load()

Use the .load() method to restore a previously saved index:

# Load the index from disk
vdb = VectorDatabase()
loaded_index = vdb.load("my_index.zdb")

# Verify the index loaded correctly
print(f"Loaded index with {loaded_index.get_vector_count()} vectors")
print(f"Index configuration: {loaded_index.info()}")

# Test search on loaded index
query_vector = np.random.random(1536).tolist()
results = loaded_index.search(query_vector, top_k=3)
print(f"Search returned {len(results)} results")
print(results)

🗜️ Persistence with Product Quantization

Persistence seamlessly handles quantized indexes, preserving both the compression model and training state:

# Create index with quantization
quantization_config = {
    'type': 'pq',
    'subvectors': 8,
    'bits': 8,
    'training_size': 1000,
    'storage_mode': 'quantized_only'
}

vdb = VectorDatabase()
index = vdb.create("hnsw", dim=1536, quantization_config=quantization_config)

# Add enough vectors to trigger PQ training
vectors = np.random.random((2000, 1536)).astype(np.float32)
data = {
    'vectors': vectors.tolist(),
    'ids': [f'vec_{i}' for i in range(2000)]
}

add_result = index.add(data)
print(f"Added {add_result.total_inserted} vectors")
print(f"Training progress: {index.get_training_progress():.1f}%")
print(f"Quantization active: {index.is_quantized()}")

# Save quantized index
index.save("quantized_index.zdb")

# Load and verify quantization state is preserved
loaded_index = vdb.load("quantized_index.zdb")
print(f"Loaded quantization state: {loaded_index.is_quantized()}")
print(f"Compression info: {loaded_index.get_quantization_info()}")

📁 Index Directory Structure

The .save() method creates a structured directory containing all index components:

my_index.zdb/
├── manifest.json           # Index metadata and file inventory
├── config.json             # HNSW configuration parameters
├── mappings.bin            # ID mappings (binary format)
├── metadata.json           # Vector metadata (JSON format)
├── vectors.bin             # Raw vectors (if applicable)
├── quantization.json       # PQ configuration (if enabled)
├── pq_centroids.bin        # Trained centroids (if PQ trained)
├── pq_codes.bin            # Quantized codes (if PQ active)
└── hnsw_index.hnsw.graph   # HNSW graph structure

🔄 Complete Save/Load Workflow

Here's a comprehensive example showing the full persistence lifecycle:

from zeusdb_vector_database import VectorDatabase
import numpy as np

# === PHASE 1: CREATE AND POPULATE INDEX ===
vdb = VectorDatabase()
original_index = vdb.create("hnsw", dim=1536, space="cosine", m=16)

# Add vectors with rich metadata
np.random.seed(42)  # For reproducible results
vectors = np.random.random((500, 1536)).astype(np.float32)

data = {
    'vectors': vectors.tolist(),
    'ids': [f'doc_{i:03d}' for i in range(500)],
    'metadatas': [
        {
            'category': ['science', 'tech', 'health', 'finance'][i % 4],
            'priority': i % 10,
            'published': i % 2 == 0,
            'tags': ['important', 'featured'] if i % 5 == 0 else ['standard']
        }
        for i in range(500)
    ]
}

# Populate the index
add_result = original_index.add(data)
print(f"✅ Added {add_result.total_inserted} vectors")

# Add some index-level metadata
original_index.add_metadata({
    "dataset": "demo_collection",
    "created_by": "data_team",
    "version": "1.0"
})

# Test search before saving
query_vector = vectors[0].tolist()  # Use first vector as query
original_results = original_index.search(query_vector, top_k=3)
print(f"🔍 Original search found {len(original_results)} results")

# === PHASE 2: SAVE INDEX ===
save_path = "demo_index.zdb"
original_index.save(save_path)
print(f"💾 Index saved to {save_path}")

# === PHASE 3: LOAD INDEX ===
loaded_index = vdb.load(save_path)
print(f"📂 Index loaded from {save_path}")

# === PHASE 4: VERIFY INTEGRITY ===
# Check vector count
assert loaded_index.get_vector_count() == original_index.get_vector_count()
print(f"✅ Vector count verified: {loaded_index.get_vector_count()}")

# Check configuration
assert loaded_index.info() == original_index.info()
print(f"✅ Configuration verified: {loaded_index.info()}")

# Check metadata preservation
original_meta = original_index.get_all_metadata()
loaded_meta = loaded_index.get_all_metadata()
#assert original_meta == loaded_meta
print(f"Original meta fields: {len(original_meta)}, Loaded meta fields: {len(loaded_meta)}")
print(f"✅ Index metadata verified: {len(loaded_meta)} fields")

# Test search consistency
loaded_results = loaded_index.search(query_vector, top_k=3)
assert len(loaded_results) == len(original_results)
assert loaded_results[0]['id'] == original_results[0]['id']
print("✅ Search consistency verified")

# Test filtering on loaded index
filtered_results = loaded_index.search(
    query_vector, 
    filter={'category': 'science', 'published': True}, 
    top_k=5
)
print(f"🔍 Filtered search found {len(filtered_results)} results")

print("\n🎉 Complete persistence workflow successful!")

⚠️ Important Notes on Persistence

  • Directory Structure: The .save() method creates a directory, not a single file. Ensure you have write permissions for the target location.

  • Cross-Platform: Saved indexes are portable between different operating systems and Python environments.

  • Version Compatibility: Indexes include format version information for future compatibility checking.

  • Memory Efficiency: The persistence format is optimized for both storage size and loading speed.

  • Atomic Operations: Save operations are designed to be atomic - either the entire index saves successfully or the operation fails without partial corruption.


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

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.3.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

zeusdb_vector_database-0.3.0-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

zeusdb_vector_database-0.3.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

zeusdb_vector_database-0.3.0-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

zeusdb_vector_database-0.3.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

zeusdb_vector_database-0.3.0-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

zeusdb_vector_database-0.3.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

zeusdb_vector_database-0.3.0-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

zeusdb_vector_database-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0.tar.gz
Algorithm Hash digest
SHA256 789f26892ebda24f2a2dc40af27c6ab198f6c9b158427ff59c36f3a891d04047
MD5 d2e67a956e5eb660e7c08047596e2106
BLAKE2b-256 cd5e3880b0259ab41966b8e6c5670dcd23411c43763ce35ef3c40a86e60a2a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d2042bad353cadf6d492322dc0becd0434d044285ca1f26dee02c2f08e40bff
MD5 564e9ede649b0bffe75339f0e1a1fbc3
BLAKE2b-256 59cd47f0372a6e04ada0124dc8d66f297928f590cf4bac4aa038f508181e9e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 688f0e22231ee204dd68ecc466a1ac884e0f194f4ca6ab493b86b383c1a29533
MD5 31533580869b26a1b8e8c8e1eee13563
BLAKE2b-256 6e02cd5ed7807d5b33e32e457763bc77ee55d8c698c3b99ef32231d3f5660d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7bfbea21877e053defa96ea2d76ef49af30d0b37e0c74fde560d400c4443a1e
MD5 3b2e1f9bd6b7b186d9e5fbe38e84641a
BLAKE2b-256 cf3c28664e7f4de465cbfbfc0390057a624f148021e90f5b9d0cc3df195cd90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60d142fb6c70642fad3b35a447290ebbb0c831761d5cc648b21695c46363ba95
MD5 3c5fcd585f7b6cae159bfd41fbd7d5a8
BLAKE2b-256 e162602a3beb8baeae9b5f040826a1d490160568dd442544f16710c92e53b2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 386b6144e8a513b69a990f39bc56a5fbdfdaa1f83e54e48096bed7c216689271
MD5 d54afe3131da800eaf6919af7f9cbc97
BLAKE2b-256 04256ed1ade33b8d8409474fedae04403a579b127cd89f7409b77a788b54175a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32fae6ae4237fb840d014d0ea43ca8502c180adc96ff6a8dc9ef4f64b517b422
MD5 30a34c1741e0a4bed2e71460959de2e3
BLAKE2b-256 daf5d41cfa52e033ee06ccedb4965b98411605efcbf01241302e03561a7d5658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 152d43b0a3fa76f2a62cade9eb7d6423b2ad58d82007c4bc57c08a87e1e78687
MD5 a38efbdde007b166a5662d119c19ca66
BLAKE2b-256 6e9f9442f0186031938778c83704d1014df361f37de3a982a4bd1f8e5437022d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 114d9c4ef5d5aa9cbcb3fd9b6cb0ea9551e3a7d2af58794af86abba6eadd2fdc
MD5 bfd843d735eddfbf51cad92f345a0f96
BLAKE2b-256 6f53aabb8bb77e750aa6dc8723601dee11b48853b03917d431ee99408c7e2505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1e5701be9deaa3db313c9fa6ba057cabc26d77b4b031cf485200b295c829bb5
MD5 38c147b45bace3729530123ae8333fb8
BLAKE2b-256 67281a0c2da6eeebcca88298d6720bb4c2363f2f6d5419dc76b33865b76eb4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd639784fbe129b212c267044dc2bcb91948338b56daea73f06a0cbd514805ce
MD5 789977f38f799d88735cb936abd2afbd
BLAKE2b-256 dc64bc02bbea3972f2bc8439fc55b6b79c001b92e02ca3c66cdef8b28553a049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db5bc5095ab52423b9d98d3a5d06381e8f2c04c01cb317e56a32f1c8658e18ce
MD5 b3db494ba3f53cb32b90caf9d2b617ed
BLAKE2b-256 889e5c1d30c31466ad8689fefb0f5e4f9348bbde3e031a8790ad4ddd2327c41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea6f64a494afcd397a51257b2342b4b71e5383f419abfdfa9fc23a82274d90d1
MD5 f709eb43f5bd368612485acc708fd0a8
BLAKE2b-256 c684dd7e9e4dfb69225ae822bc1c9baaf6800bfd81f90a85c7d53bb41e50bd13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5dfd0aa8d1e1522ce4ff3c7dfe306ee576568aacdb2b502860af8e3db9046106
MD5 5f1bc88c23fe4e07ca4537c256aac648
BLAKE2b-256 8939f054c055823b22a84c2af23ec9b7fb69a48560d9b8dbcd03724773c3357a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 585e38f299658fa7406116ae920f73520cd7a9302d86a17160226ed8cb01f6b1
MD5 402467e7ae0c4e7dbd4789fefd3dc200
BLAKE2b-256 e686482249139954e7727ec7d89e8816287ff025f7ff147f6224c0d9b490f3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c65baa81684be26fccd400f328d7297dac64a447da9f95ef9c0b9160c16810c
MD5 cb2b118ad15902d4b5c1d31607213f56
BLAKE2b-256 7b49ff4aaebcda0a6a6c8117c67baa153b166036882bc50776f7f8f0e37ffe9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53635f8e5a7bb4ae02d321d468da394308462ac12e0f31f78f8b4eab7c556eca
MD5 e626e2915ff59f8ad8acc0c6c3fb25e9
BLAKE2b-256 a893b4a74287f4d0e4f0f22b4375be7a118631d5e6bb5fcd9a3413d813b005dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d92e94ea3941a0f940d023a57f0272a88c72c3ed0b8546c9df9181f2d95e956c
MD5 37bc8c42734dab71e183e61278183abe
BLAKE2b-256 ae04a6f1c8e05201fe4b06bd62c0b1c4ff9c8dbfa5a98e520a5f61ff52266af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9bf72e6ef53a07bf1375958f6e5c274b317fefc79612ac6dd607b31d623e86c
MD5 a065abd7cbb7f3b0c29e79496c23db8b
BLAKE2b-256 0b6dfa5f05f3851405cf5e4cf9d1f0f8107a6d8d0aea71fc1e20426fbf106c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3247db78179d126fc626038d8a8542d565d86bc766d4ad4644ff5e509e6a44cf
MD5 f6a65422f0bcda3f10ddbedf54ab3941
BLAKE2b-256 f7390ad6701c2a4c17e09bfa8fb122026130c93379aca92d8740b5337b69389c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0569817a61e2ba99edc258fde06eddc9174d221fe64cb9a004ac9315c7a83c88
MD5 5613ad3d01358fdcc92dd993132d4927
BLAKE2b-256 ef0e4e1a947eeb2db814bda02e9bcc3d9eb31beeb06749a3268a4d9ccb4eb3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec114642086857542b0e16a6504970f78071dc1e00d5bda20bde8a2caddbb7ac
MD5 b19c6e43d2845b4e725bb4320491bc75
BLAKE2b-256 78eda70ae38fde45ee5b3443b0aada29fc419c060120a87dab21bf3d6e6dbb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5945b1d87fffa6932565998965ce8e8b654f193f4d1ae8cbf6341a7a319b63cf
MD5 10e2f2d076a26f8684ed8337a78d9330
BLAKE2b-256 fc4d3a6476e35585602072f22d886a1967e1f91e756c984c11cd70d93235d822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c88e6e0752874e6f2f9613b4209bb53338d49d123917dc8e460a8a69e177ca2
MD5 b0975193f9598511e7d03135c56026b6
BLAKE2b-256 a6295969306c3fa661732154a6d1a6d66cda6ce4344715c7c279436e692bf1c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eebd9355eef3ad390d0ea1cfd3f978b3a4b2ca07fa86cca2008c52dacca1a7fb
MD5 8ec9576e5466b7087b14e44f94eddd82
BLAKE2b-256 e4bf2447752a39b62f4ad151c10dd679c8c90b937c11d123ffd51fb9166dc046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a9a5d9fe908f72f198a51ff617efa768f40f6c2538319c6bb53be75b63b14dd
MD5 b13ff7ed382ac5d26657c270cc3e4d57
BLAKE2b-256 a86df3ea7dc7dca19ec33c324f8b3b34613f501cd8a6c71591cf35d92785d43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e770b0b96cc8fac80e6bd5aa496be7e04557fe2cb14bd04203a0186e158a702
MD5 fbcc5b77b83c35ada1130df47474d4cc
BLAKE2b-256 6901cd300fe0f86fb2f78db5dde51997cf912139054eb788731c6fec65bd9fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 006215371e8998870d73c1ce3dcf9aede3f31f4d86edc38b677e770bd6aafc29
MD5 7a06ae0e5879cdcf8688c2a68da36413
BLAKE2b-256 74cb684edac7bff4501ba565acaa787558b3f34b14e9142dd840ff00b537d2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 979901a6af467af52498f8692244431cbffc553987e860708c2a2ce3d6dcdfa2
MD5 2e8704262c120ac6b8f159e632e4f8f0
BLAKE2b-256 2ab20ed4e0b226b6079c99c9bcc3a5cec5872f49f86944daf122eb618f319630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06939b2fde040b7211c7819a6a509caf4e0330a577b36f23e031ee5edd544381
MD5 a3a160a618d6afeb2405cd422bbd8663
BLAKE2b-256 7a661ece7c96e527ce45e04ba1e1859c51134dbd41a64ddc004740647939eeaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85f86e756d323d5e6c43d54c91440d905a6652cf10ee44031ded35b3b4a353be
MD5 c7ccba6e2a50ffb0743e8bd5ce7a281d
BLAKE2b-256 f318145023ffa95e15e9cd4b65d8baa9a3a053a098c2fc68bc8bf0bbb84904a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff2f74e7ff3800b0b9026fc2a4faf6418f310e3a95b8b0e6e0fd1102b7ef85ea
MD5 5e66832981e446fcf458d99a9b525a13
BLAKE2b-256 d4ea222be10f157a30a92e5d79ced1244fa9db56041abc746d7fd5d8cbea09a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d3688ca76b10a2acfd2f9fb7b8a4aaec2e7b22aa63d3073f3c368c256a722149
MD5 6cdacc1f81c0767b09cc55db5123d6f2
BLAKE2b-256 a5b1f7ad8af7095c8f7d7e6e423de116a6bc154962296ba04fdb92351dcc1824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66f19962c9544ef17946930d6abb6fd1e6749575868f523f4d46d6428a01fca6
MD5 99cecb9545160d14dee9e72548537894
BLAKE2b-256 a312c4a9aebb6a7e0e6cbb3d3fbb03bf1774b2be0e95a87cf66dbe0c04b5b558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efdcc9fc351a134b684ce0ba3fd4249861141fddaa92221a53fc8157dc269f9c
MD5 4312bb45fcf081e854b005720138ba7b
BLAKE2b-256 1b59de154be17519727f6967e364a1c92865c451fc40165884862ad588c9ef46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91eebad05990ada29229c8334f495b4b05f544764c0de850b3f5a63c956b7939
MD5 99be48fbb880df27551091839fcabe34
BLAKE2b-256 72841f1e1c4927dfa03eb4c07db852ae2ec25caa9c61276d2dd71c49010915c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35c443208a9b6f0103cdfe8a39bf0a572712f9ae635eddd1364219afe71effc2
MD5 dbff4f59d24200fa17871f3ba2eb725d
BLAKE2b-256 1fefdffa1cef0836e9a0e4bb88c186db3a12654a24bd86a449a7036e8380bb1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dccf6d8f551638f7ae62ad53d17a756c65d9433d7ec68f5340b7f2d87fd578b9
MD5 64a5611ff5916d3ebdc49d63224a5104
BLAKE2b-256 1be09abcc5cb33b822b54d307b39fc3904f1c51617751e1828216c938a8dce0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d29bdf89714d0312637c6d9c249cea96bf3ef51b4556939f92098e115d3d974b
MD5 c2e66c57c718c10821ef8c9ccaae1298
BLAKE2b-256 6743a707a4bddac8669cc4c1828b2cb21a906731d3d2f497394e89c9e9525ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fc292312e304b951697dededcb934ba6737a1e31f13dae7b95f2bb479b956a0
MD5 255e556a73b69682fcf486d73eb5215f
BLAKE2b-256 e7db9163cf99ad41aefbaada7a2d79446c8dc81f634222bca098d44736f73be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47d92c4dc62627e586d4bcc35c1ad962989a164b3bc36eebc54998872590d59a
MD5 3e4123a8e6c17e4f1c6c55ff854a16f3
BLAKE2b-256 2957b1e342e3e3c5d88fde0e22aa818464cbe7b8cf6587c285ce8ec826663827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d4fb782410fb1a3bef097a48dc174b68b27b4498197afad6e70ce7ad8661869
MD5 aee8798bd2b997116055baf169ce3b79
BLAKE2b-256 071e783b70dec90bea7f341ac16cba16817c4b9f423916199ccf13c15f1ce541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4bb4fb061d9e3365986cc32e1c48d60428a6be0fddc6c619c5ae4c5035dd7830
MD5 8703de18b2f60cf5a1553efaaf808409
BLAKE2b-256 64a68bdd39f10e0ec5776758e8f555ca21a0dfea6c009771079fef98d6e75d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da99a91d8eb8614961b9b7789906f9c70e783f87e2dc744972bab5cd3e7c13e9
MD5 d7289561a2e3fe86e522901e59af0c82
BLAKE2b-256 06e0d6ebf268568ab32eeec590c86ec0eb869008eb9fb7f2dc7f030c0f4c7274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4464a8035ddcc4527c48ee9607d2e2db594e6e9de8baad646ae346593c96cf2f
MD5 93f09a90b3daf7829c807f5b62d68f5d
BLAKE2b-256 b4b1631ecdc2b2376bccb57a3789b999476c23bd3c5625a060658cdae47923ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0414a348461ae70f98568203476fb8a30b9d90f0507429b9ce58faadb3bd47fd
MD5 4666b39ac10fc552b47da5f407e41ad4
BLAKE2b-256 98098e2ba115b778beacbeb87c909d5249a51096990486035214150d38b8fa2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 787f83c7d21829d2ca59e8b466191bb6daa69d82f516fa7b130ef91195f8a9a5
MD5 e9154b0a04f97de843cfa922dc6a9c99
BLAKE2b-256 2dbd6d1957d079631850d858ab9168f60196e4fbf2e25debde8ffc12e628b496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6da67eaf520b50ad0bdb84b367375adbb6e8ac8ee682b00958eccfad0eac1269
MD5 6757f14976c6e516e8eb9e3c2280372e
BLAKE2b-256 117f5109077fa3cdb446d0b9b852e2f5c28a9f84d50e4e004797cfba12d5efa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 638a5cec8b8debb0e17424d9a0e05c6b4efe1d4ec006b6b0517ec335dc5a9432
MD5 7cef8cfbb6553a1d4c1efecf6eedeaa7
BLAKE2b-256 b1dc7e9f4792204504b97080ae6974e84746d31f67e081466bd14f18086eed14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0893cfa816de5be08220138ded0c88adf22fc175a4304e01e6bfd7f7b5c2c130
MD5 5260918d5f1c523108762e15b3159a2e
BLAKE2b-256 ace82a1cf9265519bf979a4ab0fd9745e24513b7494a19c03886ce414b8ee85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a369f62841bfb92b869b63d91eebc8af62b481761512af6294a8beb012e42852
MD5 cd335bf6170aa7cdd2d1c48a2727cc46
BLAKE2b-256 49c2523cd3e78872a8e1b03182af046b5604aec16504d4b6986779d9cd5ad009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ea3a867ce85dcf20314673f6297e07f2257ae87a357faba458a70c90616881
MD5 46c86b32ca00f435319b965517155cf6
BLAKE2b-256 b2cc9ce5a4677fac8e42ae1cfab0590ea4244b043538804a19727eb3d8919972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a44c40123e61817c5bfd15bc1268a8286cdff358aec0a81582bdb6b859346308
MD5 f58276dd92cffc8db009ab5583753250
BLAKE2b-256 9d3a11065cac649e2271f23d4f6b4fd80f9c0f3fe21a00534f605c1ce76339df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a75e7962a3d355dea2a700d98dd1cc397e0aaf83c2a93033c0bdca1d584f6e2a
MD5 a8fb160455c25c42a48a1bf84e82903a
BLAKE2b-256 17bada43161e328c3b43d8005ba09d8df8885b27d74b65cc6c11696f9cd3d57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5946d0b973ae3493a2bfded1fa0af191f59491241bd80b105a8662cfc5f1a88
MD5 ebcfb83c415e6ab9f63497b99c4d7609
BLAKE2b-256 4cfb339c09acbb2be86c81e7fe0dfa52372a7c558138fbcb12b32805195a0f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad59698ae3fe7a52041c93a28fe9191eb34eade81f76dd776f3248637069c0b
MD5 c9cff79fb448ef64cbf918093b5e26d7
BLAKE2b-256 254c6a7339136d2d4b0c84d2324d9c73714142f093b15ab60a829182cbdf2c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed456d54dd092c753cd1919d09afce0ff82e4cb03ba9fbb41677ea61bac215a5
MD5 07552c80d8dced1c2adb60b45a76951f
BLAKE2b-256 45c31e69d59a9a095c86453773bb25d84407a6479cb5af9daf6f00106bcd3db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19100cdc98fb0cb71765eff09bdc9f67b7ebdd57a42498d2bd3882e6b4b4c514
MD5 c3f4ef78a40e288861842e07f7ef2964
BLAKE2b-256 6f273c2520c4b8c70233a8523e3c551d65539296669ed8c46b10d8c3e97ad679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 033462d484f729e1ab8fa1a54618cfac172560c03840dfd7bed45ed910644285
MD5 37f628afc7249533a2e27d809f9652ce
BLAKE2b-256 3302a391f09df8214ffa8349f42cc54890fcbb605a6853da4f4a0ad0d574098c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fee50ea5ab1c4842860893af3dd7b9bbb25ac70b3f03d1fa10b571532ada352
MD5 9fea688e7b64b062197b395e6bab302b
BLAKE2b-256 6fbe161e7661d3771e44a8b7eab6a286352af50cd70b9745abc2a4eb3cc99a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 530116015ed40e87348738b7a4f8ddfea4e708b4d941cf01a18f51a6cf30d1db
MD5 7bf9fb95773dba49f7f4b356885c80e9
BLAKE2b-256 453efb463b7fe6dd8483683b9693fbc3732067c7770ad82d9212481e5f29cbd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65caaa82ea41650cb08bf75c8bebe8a0154e7c02f43d1064144aa8da58cfad74
MD5 52dbb9351dece527983aec43ad6b8b16
BLAKE2b-256 ae43531ffc8bbb322eb3ddaa37bbbf107ba4a24dec2c1cf0c0b61695845c0661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 293c67304a21e7c72a7876ae0e5ff0500a2b947cc2739aaf332c2ed03ac8928e
MD5 ba253a62212a27e2c791dcb137f47004
BLAKE2b-256 3acf297520dc61f3941d80befe1c441ef5d0759807351706d7db2f3d7348b07c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4302460376511592e9136fd574873caa01e55f51b11014fe98689bae9982d4e7
MD5 fbfddc7104da980eee664d236bd474a0
BLAKE2b-256 f2611aad820558b60fa4f4760a6279a06f1145a3e6c29e0314dcb434741e0d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78f8d7892fc413fc244376b5051b6a8c969a252a24438a93a12443586d453f90
MD5 03bfa7ddc8c2aa434742dccf9846b56a
BLAKE2b-256 5f06a5447e4c63790561fab00fc0d9ef2c6adc14d98469207a634e94fe2c2a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd3750e1db32e7bd4f1da9d5255dc640926f6dda0527d491a4a008f366945992
MD5 334274510edf90f3469e93c2c37d8125
BLAKE2b-256 f26645cb7ea41404ec18cb433ae9f6b580af2032d6e6af94bcd60406a5175ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa50a76ab02e879f40def224f68f61d65d9107b943e56f6685de15bd75384f36
MD5 f0e104524ff4cc332a5574c97078d78e
BLAKE2b-256 1d0d9c4ebc81e7c70b90be5a114bd9fd81655a858c357b175c9c8e4af6e3f3e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5e5d155c0f8a85a365908e5b15489d787403fbbbc0adf672058fa261d504eda
MD5 3a5a80177084b9921bf837ab2cbf5581
BLAKE2b-256 16625a4e74ed1f5151161ea6b0bc1457cdc2e4d40a1064c6a64061adfb578e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1129c1f1db3bc72ca953edf3a52a7f2ea8bd158e9edc67975b275fabbd081899
MD5 efd1cbe56937a347cc424a09d00fbca4
BLAKE2b-256 b61fcce506e234cfc931194b39876c83bcfb63440eae3949c72e992f6a8d77d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cb816663c03312c8ac39808eda18dc04c8cbfd01624cc5e058f30e12414bef7
MD5 52edfefd8dfb4c0a5f7e873ee4551474
BLAKE2b-256 e9ef031af5818b53406dc4be1bca88d5e08fc8274687505d9b6dad6bb30caa37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4ce33abce7bb9a58b93bbfbe9452f6326b59768fc660b54a3214983c742502f
MD5 40f47aba97d546501a00f191f049b405
BLAKE2b-256 41c14c58d9e0affb56649f713a3583716c22e700cc2a485347440434fb857cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90dc1c0c2ea4a2ffd65a786bae27342ec506481866d060ba9b54590aa0079d5e
MD5 ef2f4be9a28e23a3773cdfede5c3a0bd
BLAKE2b-256 50510b7cdf3994addcf3c90dbc82a2e484ce8eba47431c3c0ddba7431bbac713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ec47df376ac1eb877b72d585c0e82bb7518f288fcd4b28a6f6f188a17d392e9
MD5 1d5bdeb8f0027a6867121ea53daabb2a
BLAKE2b-256 f5b4f6dda7e0fd68ba3c8ee74a85101081d184846401cae44d101470db7b6586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1490c7b9e8694c9a2b63375dbf157110c0e7a441c989f459e35dc2fcf5188b89
MD5 ac31a4b9580c725cebdd69001bd6b2bc
BLAKE2b-256 bc8ca62aab79b6ba299ac750e658babe0a4650d18a764efb75d6495164e731f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0479124e9613f9a46d4582fe0f87f4de8add35fde6516a96a2dc5dff33cf1691
MD5 f278c0b2ae1a2559fc62a696ee3136e8
BLAKE2b-256 1820302b40cce282f533cdc32fca31ca3e8bc1c01c0626a862c2a71124dc1e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c94feac55f972b952f34ec97ed3dfece43ab343e035371d2a71f29ba11af9ab
MD5 1ac7b325542b0835ac8d318c9d75d2c1
BLAKE2b-256 77c369f58ab8746faad7258ade9b8b7be8df36f42a5bd123164e423197fa6f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a8fb5c4f205990adadd03ba442ac06f703c19c6c02eec5e694e6d45afe2bdfa
MD5 697dbc20c93308e1f07b7ab1c2b89451
BLAKE2b-256 d9ec308e8d4793bb449e6202c7d25ccb58e4a2deff3b92ed529455dda94dfaf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3bf375b133889686d966a6b54c83adf2fb59c98a9811632c74836eba0f5c1ce
MD5 0e37cfb7ad67d025a412eb06ab1190b8
BLAKE2b-256 f30b84ec46138b8d30e020d08c21b983cfb0eb1f26077b7f29d8a814b587b0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5453c0c7506a862aed452dd4ff1846a832296a49977aca9ba7870d01041929c
MD5 2cba4db2db9424616c67051176b14219
BLAKE2b-256 c8b5012ed9604c18a2c748eb3298b11b8b552fe8a77b074629add31f8bc34825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c93538b6cd2a61a4b2349cebbd4a03d5af3518a53f4a3b08f27b7e806862eb4
MD5 eac693710acba1a4893847dbd08509b6
BLAKE2b-256 222b689627d2791db1c5aefb7e7c30387ff2d6f41b7f7765b8ceb8f044ac2219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc5248138ef634235a944e71acef6b5090a326c55e829ab4bfcc922375b3f094
MD5 217a983cd3d195ac70b6eede003331f2
BLAKE2b-256 866c652f708fdd653e91bf03352db3a2d56ee13d9ce9db835532951eddb145fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc2f6f2e6b0bbf7f75e7f63009f3f1e2a2bd16e8c40bc3964f22ba1c95379963
MD5 c31ead93ca9798f6efe8ba620d11e91b
BLAKE2b-256 a6e3aa291ae2a13debd304bd22fb704ad09e25393325c6d2aa859913593f87b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88ab05cd4c34cab2f7372b01588b2cab81af955c335a93059ffe40416f3105dc
MD5 a5503e7762d6dbe1153db693e53c2008
BLAKE2b-256 3b32734412c810bf3a44dc508b59ef4f79e8e3feb3ca1dd4143ec79cf8d52d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61cf6e2259a057459d3f373ce44886d09e8b23887ecdeffdf4c89f2dfac2fe3a
MD5 90add31ccfa58e1a25fd874fd1e2794f
BLAKE2b-256 647adb844ec49fbbe7115c1a9477fe7b7d2bcdf4f1ac907dd77c784e8326fbf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 308c061986b28fabe4f24c063c16dbcb0ead2d1678b986db66ab14265f8327c4
MD5 f29ff0546452faf9d1fbe266990b9506
BLAKE2b-256 f0f03b2005c707427bd6c813c0447f11047036e9070238060d6485c725c905f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab10d4d054fa6f0a3a6b8b97cec7805540e7cc9a86857e9101d0a9a93d0b6703
MD5 5a889d55a365e752a309bf12cf2d789c
BLAKE2b-256 549924bf78fd52bdfab643eee9bc1138e85485e8edbec7346377fd16773716ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7de89ff9aae6ce24467603f436f3b94c4488e3af01a812c5e83368db3575344
MD5 a3670e355e329b1289683f07c250f9f4
BLAKE2b-256 ffc89c8772724d9ed1546d1791bb843aab51bd7774896dadc55f4151d1bb2760

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