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

🔧 Usage Example

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

⚙️ 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
}
# 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
}
# 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
}
# 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.


🏷️ 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.0.tar.gz (59.3 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.0-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.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.0-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.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

zeusdb_vector_database-0.2.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

zeusdb_vector_database-0.2.0-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.0-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

zeusdb_vector_database-0.2.0-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.0-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

zeusdb_vector_database-0.2.0-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.0-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeusdb_vector_database-0.2.0-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.0.tar.gz.

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ea62e1c48c20c6071741513e51204a3d32193ca05cec1661a448c1d6b12e0d40
MD5 10fb870158d19e5565a9a3cb459469ec
BLAKE2b-256 de213b2fe5f85325bdbb72648566e503ca8eb0b42f123cb9888bc923a749eede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f157e417d2b549ac09d5a5e1238bd50fc7b9e8a62e06544dac7f47dae10e142c
MD5 92746464602e2180faf33905038d5607
BLAKE2b-256 60f244526032149b1d27a7737d65aaa74525fdcdbec17082576b947ecd9288fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eee4444230a9172cdc68fcc1af8d24a736545405d79bf856a7910c68b8cecff1
MD5 61865420433d47a51a6e6250795a3630
BLAKE2b-256 002aef6ba69c4d0321ae5a2bb9c8181091a8b09f6c81eb2b4af26e0c2299026c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2176043f244cc538d29cbbdb6e44622e206abe1a899f55475c86b53e6d2ec723
MD5 7e85b6026f24a65226d97d80c66538d7
BLAKE2b-256 890107b6d17129cbe34c5e9b50da5376fe9e105d587633b6a135eaffa4d143e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bd17c0692ef732015d4681238518997070989eb04d69318cc7b76ebd1408686
MD5 d86f8ea48e78a8910359ce220637d20e
BLAKE2b-256 9d2ccd531dbd340bf6341ad55df1cc67cfbd386636f2187c151d11b283af3bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a18e8c40fa20798d0530b036177d0657819721fe5ebb711d2af4cd8c56e073ef
MD5 7bb0eca8aea9e1b15df0035ea0918f9d
BLAKE2b-256 8f3a792601ec727902e68554189e4bf1278f2bff50058ab686fb14be2b67d332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 201b9b43b4e8efc7f5f51330b403813775eb42dd7529460fd5dc685508853cbc
MD5 542a5dc700cd688517d70b5001a3f943
BLAKE2b-256 a2fa3cf37074517d72da1d5b3b9f15863a8639110c523d759ff7a0171a74fadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e47eebe7b15b96e82cd7fdca3cb7a36d3dee02867fd51623b3dd973d385569d8
MD5 ed7094b9653dcde54be6500323536a8a
BLAKE2b-256 6d661ffcdda1a283acff79e2ce000b8c63137d9545758f31e96be6f2b1dbbf23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7160ca81853431bcba33c6ff3b6fee15fe2ea922588defb8f39dcb8343d3921c
MD5 b77bc31a9b00b46d7bbf25e9aa4eaa31
BLAKE2b-256 8e57c40be2e596486d93b643ac41c0fdad98216eede1a0d401f03d19185abbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbd29da108aa3601c000bd5b469c54a591bd6854d8f1e64e337e7b21757a3fb5
MD5 5fffef57fc22842d890dc73f4128ec91
BLAKE2b-256 e7b09aecd78c91b40ffa0256e7a9b8d423072ed4aab40dff0512ef392ba6cdf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9ace17fee96ca20229b3df1b87e31c8da912fc32173abbb1db8acf639a68d63a
MD5 721d492f0484d3b116afa3541479fa06
BLAKE2b-256 5da36bcdae504075b136f1d113b077d20cdbe9d1993ec6d0483a8645d246d8a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f538c88d79d52d0a8b70b26afe65506beac8040a38b11b05896d0eee3696349
MD5 c3e0e049e830720514e7cf34c87966d8
BLAKE2b-256 9f2548763f5816854a9b566532c30ccd70f88467cf8fbec6f355c33b0fa7d944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a60199e0fe81fde8a6976c11a7f6f307d3d06b9fb962b2181d2c8db841e28d88
MD5 3c323903dba546d4248bdf8180e0bf20
BLAKE2b-256 44975766d53e0ed3231721554871225eff4a69db1038ca6e6230ee04cce20ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f5139439c9403dc4c51dbfaffa5c38dbebb66f069e1ce079ab63322ae9956fb
MD5 5373aebe44547f1bec403f81571a1d23
BLAKE2b-256 6f578240f139c1fc13309fb1ef25e2555d7a0eb0fd14c6089b57ef4c11846611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dcb7e3cd6330351e6151a60b5516c81930168265e9801e26153a3881f38f843
MD5 80c5d8e48736f943a63990763c1eba89
BLAKE2b-256 b0b278e2d743568275ef39b029750dd84e361f895d76c82c6b3d9bcee31316ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b00870236abf01e61b974bd6bf52d8e10c6dea4594266c157436729b8e9fe9f7
MD5 9fc010104be85bb5ffa3894d923233fd
BLAKE2b-256 8f908425af78a31ecdd30328b5036bd59f8e35f4786b6285ef1a9c4a996c5705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88865b827daae801f30da49cbd4d8ad8824052d39ff4f6afa61c3492d237fe40
MD5 168ee106d778b5b1de3851f3eeec73a6
BLAKE2b-256 1eb3a32379d016fde3bebabdfc9c0596618eb38ea2926f241a2b80472f8706b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d79959e01de640f7aa14b1f878b08de5f774e15db107679798279e36927bda9f
MD5 b5d394bf5bacb629923f4f782feeb52f
BLAKE2b-256 e0e38537ead489023e1e0cfbba4e2f5eb589c630b500d0c8f62a72cd332cd22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91ed0aaef3b2d9901f3ed85da1edbe4483baa09719eca7bc40bc45c1f2f77e24
MD5 3840d6467407cc487a1c3d8f5eacebf1
BLAKE2b-256 824119a1d44f1deb62c09a927fc4fa199550575ec3937692d274ceae98d6bb0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed80e4eb4f0ec783692fe277191880b926b51d34b510b7404a762444d368ffe2
MD5 776cf267e352ffe46552d930d1dd8563
BLAKE2b-256 e4dc1d7fab3a870df4b688eac1ab2a2a47b3692eda1275510c3edb516b8758a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6168b62dd31cea11c59599f524074e62f36fa37fbdfc257d37734ba8a0f5ce79
MD5 cff0c87dbbb45a145ad8d0857e4204ef
BLAKE2b-256 9ffffb752c6d94c83d00b4d8f4aecb5fb87c46804c77fd371f553e2343d3b183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b0c20aa229470cb5d16a57e198375d460b971efb90d033c283c1b1392550592
MD5 6451017790eb86ea96ec40b080970991
BLAKE2b-256 be1747e582f1e2e7f762db56133bc15c85d8125906056c0cd331347015b74ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8029b906ea1a5c9b33ed8d6708a8cc9ed04d35f5cc0f224fea2251bf9759f08
MD5 aa12693ea6aa2cd0889dfc7e4772ace0
BLAKE2b-256 28ea70e05f35393a74abb4ecd46e6ad0f976b5ae49beda2d4bfa9301668a283f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83d9e17402184a09ad7270cea4c24f9d2d079c1900a9866d896eb39175c9f489
MD5 bea0695a498b11f5016df1025548e630
BLAKE2b-256 0d417ce2a250510352a7df7ce660774d0085dfb24a760a3b068200357ced7f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21bbaedaff7e7de549b844e3d941a5199701bfdd8989cda1348273a54b55f79d
MD5 14787af96849cabce660731eaf936801
BLAKE2b-256 faed023a82a7e2258d36aefc3dab22aea16b9a51a1b433918ce6b1507adcf5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82067ff38a8cbc8654198653b517b032e5db1616f92c0af911cf85134c51c742
MD5 4732f2cb104afa74e0d89f42826fb7e5
BLAKE2b-256 d399d52d14ab0f909799325d6104bbd0e098847ec55ea51a4bd698502f8d950a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01187a3e83409a6d7e8cf5c5fb4dd72c84ae67b894e4d6cbca9bf3ef4cdeb7dc
MD5 6a0890778e5d8517a111bf881119f6df
BLAKE2b-256 0b08cffa3512c952f810d3d62c96c46d95e667f8564aa0afa6ee4bb45754025e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a24ab4a5137691e76e354c697241b76b852cb50592387f6037c703df82833e89
MD5 eeec879cfbf2d43b009022a749c5ec44
BLAKE2b-256 e26900823bb8dfc3271e9912370ab72822c36953a7bc24736decfe9df765d9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cb53515cf4b52782580124026883f23fcb5fd3ecfc0a9091d562e95db4c923a
MD5 abaccd16b1e39f09196c2daf0dc8ec3a
BLAKE2b-256 605c2f52663f8bafdefaa74530b3b3481b76394a397e55f1228e46427d693fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 752e980f8ba6bfb5c0c7382c440b9d2ec4188a8a2a446d5ed2697c24544b4f1b
MD5 f7a196e94445466bb34d4ef6bcc4fd32
BLAKE2b-256 8c48be6789b4608db10fb0662d9b34ada910f8f74698e34a528d45c33b005c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984a80f91584d61639ff6ee9562f20b48d6a356d80cd67e5ba9dcf88e1bcd29b
MD5 3c5fa6b7485a2e2aa1a157136c395d27
BLAKE2b-256 22a73fc2e8b59ebe47b641595313622742b70bb4fa2ca6a7f6efbe78056a2740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55ef4603510ad26c7e41b9a685f855c7d6f89f274b6c2145d77c83cfc3c6bc0d
MD5 b5831ed1c2ba6a2b7388d2c0c1972a17
BLAKE2b-256 dcd009e6411604741eb975552b4b29debb2938114c3e85be4412c048234a8aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cae987a1c67b730fb4e0e4c50fc6483c4ccdb58455abfd5ba786412a02bc922b
MD5 022f6261389f32d99ee9d4dddf0c1871
BLAKE2b-256 d162a2d1851f7eb3937ac01bc5aec5a44ce9c479a6940115e11f3310a2835c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52051a47da871841ac7b2cf9c7cd3fd3e4cc7ce0d30c7d7a289dafd9ff9d3d53
MD5 e5558d5d60ab3610efbba7739b5a9a31
BLAKE2b-256 fa60906c75142491f2600cc7dca2e44312f8ff636277267442b9b5dde522a8af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec1fa11d037b8f0dae251616c9d49a4b9a2ec94582fbb873da4bf96221e1c369
MD5 553a68bf6bd9d9779785e3e423897479
BLAKE2b-256 be71387e4905e8dc2593d665df9cbc3536b1897b06874e38abc1a829c1461635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5913816a8fe0139a0d15f68fb9449e47c6d1356b9b7eb67341b18c907f7ac9a2
MD5 b16aeccb6d8c55d82a12e322e77ffc87
BLAKE2b-256 3deed348998427c95b47a8bc0ee8401c68745f82a5e11a12a1c2b2ad09d8650a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b0f84d718eee1688227e8fe47fe86c2bbc7d84c301976a55fb8c6bd6a08405a
MD5 72e712ceb95510967482ba2539b93cb4
BLAKE2b-256 5ada85ea22d13019655b74e78b4a36cd8a37b4999bebeae42cc9bd3fb76f77d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c40d1ac8d5b95c972f28bade776f358ad8cb11f1d1fa1674c9ac6a9503d31e7
MD5 b66ada856cec0bc6677885df3a2ce419
BLAKE2b-256 9326f5e2cb7884fcae3c8fb7e09abf5c86777fe2df4141b55693e9940784d3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5f02dea02a963fdfddf4043501de1434ee1038fca6fa965b7e0488b1b83cc8c
MD5 b83d78694c4d25673e74341bb330eb1c
BLAKE2b-256 483d5d4330545d4da0a5654bb046fe43336049b2f0c577b167b659ccdb09b8f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e3bd1157e1cf83c6266f41fa0f18d2428b821c91f4356bd1625e393a1183457
MD5 67ab7fd78ec575345de29a7482d3ad3a
BLAKE2b-256 c4411a3ded7e25f9f2b50827f51585bb919e84c987955b59df89ac12b2587f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a89f742f2f84d43bb91d371e7a367ff6f30ab501fe950407b03d5e73a0d75d35
MD5 f425278c17e6bfe90c2cd8fc959f78ca
BLAKE2b-256 35ae10e3cb51c527b6e590b3897ab83e1b52d4a34fcb1d593d9d049befb1097e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80135041bb96b2625380dd6b09c8d0a222a89dc60f053c9a2faa62ef54549254
MD5 401e18440a8044195ac036df6727a799
BLAKE2b-256 9906b1068721776350c661808e99d0a8449855bd15ee86b5691abbc9260fc4d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5fdbba3dc093053b9332f22191ee2699a118420d82a86758585d7eabed09d626
MD5 d9cfe6560fb0042df1b8ac5efdb0d62e
BLAKE2b-256 7a1adfea2518a70dee5ce282b98c7299546dd0da386e364f4afea76b4012d39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bceaa1589de990fdcdba5e05442f13548fffd6a26005f6407c0e822350b5d7bb
MD5 46453c21b7dec2a37a32637d0993ac5b
BLAKE2b-256 0c1f2d0e5d3e074e14eb44d8d173870810dc686ce999571eda70ce37250dd471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 204ec90a72156312c16c9e08b43f4c869d90e87bda9ea162de814f3f6b530136
MD5 c62c599bb9b3f7dd6f382755e3346424
BLAKE2b-256 f6bb4588428bdb4f365bc4c0899616e564e7aa1b67327f1c5cb6bc05d374e31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 547061a68b98ad675ffc11aaabbe860b0a663ae6dc7491282e74a2c0fd8f484b
MD5 44bd6f7e36e30f3cb9b018d8be0c9416
BLAKE2b-256 348d5db833d8fce8a2006ee6ea4ce62a4490cc43ff4772b6d319014490c66806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1350d01b07ff8a2a16886d441e9211185cdffa9c2ac1b45d9a489a82e2fd8129
MD5 7c2e397975e1570bee23472ad83a6ecb
BLAKE2b-256 a98d070e565d5206b5c541816464e399e5ca7a415212db7e1a6936ff58150036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 954da139e52e849057730f082fd11d490d64955ae3cbcc819792016aa68212d4
MD5 b89919c223d4f77b2f6bc472d00a2e3c
BLAKE2b-256 f3f7517158ab1f5a5f9a145ea6727b248f7a5c1c08414979168615f751f94574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7acabe5db56d50ecdf10f31938a0f39b2354e2014a1195bc876b60143c2e79ee
MD5 eb299e587c9f6588a327390c988c434d
BLAKE2b-256 befbb5ad557862ddcb01f7740ed5c6fbec712a248ef71835b1c5ddac43b3f150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b19b2ed1d52a52033372d58cf4fb476e26c51d41f5b2765f3cba921d73df1c2
MD5 e9c6e0adc3024548e45349835e3c025e
BLAKE2b-256 c6e2034f1b5b0f3205be38931fa61ee5f0c54c82d4200f2df2f0751298e0901d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5aa78ad6d5d956e43bf32967177e298299ca6ce6e004ab019cf7397158b2dbe
MD5 3d7c1943fbf0d24b61d5491ed214ca16
BLAKE2b-256 5ffbd8ef980e87dc066bd083ad8e7bbd6f2a6f15eccabb2ca202ab327e2464b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0671450095e5babdaa1c5d024bee8559b0a51e1989e03342ec44abed23188434
MD5 e633685dbb1c82517fc0c884dfccbcff
BLAKE2b-256 39763c3a7a9b32a945672de2a525eee6f68754b114b246febcffc3e988ff54a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 270b12dc415867e2cfcb4efef468d6e7129bc11c3552aa94400c8ce75d4bf5eb
MD5 dfb4ef98cd59590139b68b46383bb6cc
BLAKE2b-256 cbae2a67815cd64b38a4e12b0d61b5b7a4e7232e771a5e6c15148d745f0e2c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 923337e597c33a7c082752794aeb49710a46af1e003c953f55c52182d7559c74
MD5 11fcb4a89c4056818f9085ad9fb4eab6
BLAKE2b-256 a70405bc5cfce75262d65152efb24eac5ce7433f7e8d183ff138bbfcf6f28352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a36e15127ad1cde384c95cea239def558fb00c48385c652e6ea7c0d852d8c1d
MD5 cfbab893828eb74d7f95205003d5f864
BLAKE2b-256 262406969c270ab5b3d91a80d52217ecfec5f09bdb8e1c29981104ca484d3f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 545259895dce0136012ee2c973c581887e61e3c426f6b29d7eb7336c3d994e67
MD5 a155a47a62ed889c1ba2cb60d9f0eea3
BLAKE2b-256 02cdac0631ea03f3976e78313ad7f3349220e26dd8b79160f2cfb97593d720c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c9213d4a97440ff9b947d179dc703f411e735075e52bb8fcf19c58ca7ed0b70
MD5 1222b2a829aa07b61b906d002fee62f8
BLAKE2b-256 b0f0280784ea14ed7991e48109fed3e072a027f35339f90f386c34f6c3cd79a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55da151276f14f0ca193a6a3a0750935f5c91c0ad8806a7ceaeb26318021ea58
MD5 3543ed13199fe04a46dac13ebaa26fa5
BLAKE2b-256 17360d77716b54124ec6aea0d42a0e674559e9ec9558bd020b5702d3d7e86467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 899870c0231386c9dee0b547b8d2a01813267277bf78ac48633d22cd1e416326
MD5 7acd3de4fd8946920437c4835c9ce0c9
BLAKE2b-256 9d78e4a364f3a5a716ac03747a8d9516885b71187e132f2738651e81503929be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24d8ffb77175fd453d10694ae77576dc451c9ded41e695cfd524340c23df0c4b
MD5 351d0bf8259c73cb8ac6a886d9689030
BLAKE2b-256 1441577f252798bf772279307aa2c0f0297cfb2ee2020d4ce28d0f1fe492e54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 477010d194311316ef2fc02944e9cb89eea80603718bbe185153648e518042e6
MD5 3374630b6df4e6c5b1d64bcefcc6a136
BLAKE2b-256 fb3ba2e94f71071ebdd18d01c60ece2b5512f4950c156b5ffed4c03eb81e4ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5815bd349afd98af5be425851db767e04ce83e89458035f66f649c5b3bc98780
MD5 d75107e2c552531d77c84814f63c3cdc
BLAKE2b-256 006a61499c8bc724ad9a4cec2c9275a7e277b5b3db28be111abcc21f5ee4a939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c0ed9feffe7edd7f1d8df750cdec8cde13bc8862a7e2146e8d82cc97883c083
MD5 943946f996389054e6e6d2105ebdf461
BLAKE2b-256 6f529f8d7e773e974ec909e5f1cdc9f246c17c752410a21928f6e3ee03887275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0efe0d6c7c7ba8ca0ddb1024cb667c0e666a63fa15e363ae98e46d73b95f487
MD5 8519a133f1507ad8ed9488e0a5968d5e
BLAKE2b-256 31d7a0ddea0e9030241d434656d8f0214f4a247814b407f04b2172d3d740d10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c5241e6fc1645c72bc214ce154104787f9a18b1eee44ccf0fa85c70f85047df
MD5 4f8b7a3be86bd94bf15a2cd99e13ea30
BLAKE2b-256 8466e037eb9f87a2644c121cefd7e03797284876125075c52ba0f34f26fd4596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce5e79e8ba4f2042b25416c7272ade1f535540e123f9493381153ad01366175d
MD5 f60596f632f41f0c53682a295ef229ac
BLAKE2b-256 2fb69eacbe068fffe6485e2dbf6181ce0ff069f0e34090984d58ef69f4bb95da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 928bfd537c78e63d3900980a0014d3bc3ab703005d5fc6c5a78eb7976f2a8808
MD5 db8b82f72678353a743bc07486266aee
BLAKE2b-256 caca0cc5f5f65dceb1a76eb64b7bc3da10f046de771264a4bc491fdf45c2329e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0b096ea91f5496a1334d361ca60e850c5e8f51670006e3fcfd1b6523eb1a601
MD5 eb0a623d4fd56767145eea3b33bd5bf5
BLAKE2b-256 c6d56fde7c88012cdbbee0ab6ea561ed83f5c426d7fe166c60089cc3d07d09b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6f874110c583c8635d9b9f7360b43c7855bcb9db83abdfedfcd11c4fb69d727
MD5 33cd29fc9f752cc72776f3cd2d540958
BLAKE2b-256 cdc3007539df239378cfb3638a9fb3ee2df8a1103b17efed48fdbe3ad76bdc9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad16a72ddc6fa487032c7b8242a683e1fb34b738cd0d6c1ded99d782ced1a8e5
MD5 25b48ad0ef37f9d7535ba817463dcaa0
BLAKE2b-256 2583348924b29c1d6413712765365de75e455a67e7e730d9a2c53bae5481ac29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b255b475c498b49f952fa53925326a27071e764fb0236bcf22b8cdec1b4504b9
MD5 86eba3cb8f086c7f898e3622e5279906
BLAKE2b-256 bb0b0f928b76fc7ae689be0abdba889eb0c11936521a4a519d3774f478f12a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0a4d3b18198ee78b635018cdb15fe78b813c25553f34d6cb52f9ad8a1892a69
MD5 469b6e25fe9ddd2497109611e3fe15af
BLAKE2b-256 517a7339d76e90d4119611088a62f65eb49ac53f7a7905ed2b3924d33a2d56ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f8f11766d3f3f996301f2f25c1cfab73151ed4833fad9662dd1b78a48f6b386
MD5 a84fde7816165278156c16ce66cd6c2a
BLAKE2b-256 490cc4210293502a3e04a0725786c647171db8c8d2d829c1e68f749baaef2c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 017d7cc36c32c2b9740c93fcdd8b1d11b191ebd722af5942b2116a8031319b74
MD5 086c7cdd4b7342f55bf47cc594d55226
BLAKE2b-256 8be86daee75e24adaa3e1689e0a1002a2e42de4aa8421416c192592f706f56ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b84262f92ff0a3608b369c1b08f1c59f7dd4a3651897853b15feb7612d5b4335
MD5 b7aaced3bae60345eb5b8093af0e942a
BLAKE2b-256 92aa3084e0c7e8cedf4b189c4d1e1db278506971c3f8ed127f6c0ff991385bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a16ff7537e855c2b6ae373c0a532c3ab5646db95ac634d103cb32142967a3e72
MD5 27786ef2e60f0b0a7aac8550bca156fe
BLAKE2b-256 6ff09e3307dcc8fdb4af292703279e95d785cf029fb3eb238d3b5e01914b5bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3435ede19ad38c7c22f79e9f142992abe9ff22278f9cdd4345c75740d9e01e58
MD5 e2222814f23ec3e9bebcdd8a3bd87a93
BLAKE2b-256 b7b3441d234704da1caedf3458666cc9eeaefe35f4f55c61e5e69c531e27544c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11550c6b01c8871f1ae73b8b2af92f842652f84d6aa034147c6ccc3e41e84e1c
MD5 889b718c4c1d5770fc46254986768876
BLAKE2b-256 b5f1727852d20800e0c82b565291dfc5e88045a2733367cff0ef655d70ca13bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5403d82a82e1037418dc1482a880118820b3dd10b41ffda0124e088b70961047
MD5 49b6e5092e9a889d350c8b0102cf43ad
BLAKE2b-256 85ec7966811012865c5e720b413ed6bb63c536b3247632cb5d36a87a487b1730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9c4e18f3aba1ada2d17470ec921e41a65cd37c45f3fe6053b3ffdcb6119526d
MD5 e1b0247bbd7bdb09918dfd405cca90ce
BLAKE2b-256 2ebd16e2be96455e3c52bf9e40c308acbd54db310fef9743cd6d7b26eb3d18a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7915833bebd82c1679932cecd405cff8b7534e41cb6d9a639fdd28258f1c680
MD5 1041b5512e86e79ee52fc06002d42883
BLAKE2b-256 6d3a95e828beaa15fdb4c25c1d86a16d86f533bae61725dbf754008aaa676ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1135469657054d4811d6c00cf6de7bf7d230e4216db162e99ca0860024a30fc0
MD5 19f56e54f60d8ee848db36fdb15a6ad4
BLAKE2b-256 8a76756aeb3d1d03f325d8884bc70e7af49880e00f06266cd49c4da9188f812d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 953a162b57c4b4c88c931c30504650b1b86355ab7352fa2d5ea1326455d06a00
MD5 77da0a71e757b63fae84580fccb2d850
BLAKE2b-256 5494aa13b38fa7aec19b3142a95feb42b443c1c1470ff7a4c7b8187140383429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 969ced89e0c0b528c2fc8663b60561667705455e0e858bfa8a3b90308645bba9
MD5 72e38ac96db9ea500d60c95d81dce131
BLAKE2b-256 ac4645b6b5a1bbabe0925bd3ee7a2c16b9a85bf8343805aae0b682813287ea09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8a9719d4fa1abfe1dda22b9921513db12202727882b5b221e5483fe5c42ffc0
MD5 8b134619e9df3d9964695d647c4da2d6
BLAKE2b-256 573c6a58c948c69daa2743e9719a0079fe717641daa00e24a9f957fe83d8e92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4fb8c6cd8ac206a3264797d0df123262a44db319add1199b067842d597b699b
MD5 bce3ab9775d7912f5ba1c6956f77d2bc
BLAKE2b-256 591b3a466ef01e410096ae9b46fb4e4a51320c8ecd4cc05f9822301c0cf76e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zeusdb_vector_database-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c09adcc9c8a0c2bac06ce629c79b0a175dab71d4cea65d3aa2160b059fdf572
MD5 b83d85f26d96e4d86e13021307bb3a35
BLAKE2b-256 630750230186c24bd497478e77fd95951ba590daf17989ce0f6eeb3fd4e4e244

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