Skip to main content

Smaller & Faster Single-File Vector Search Engine from Unum

Project description

USearch

Smaller & Faster Single-File
Similarity Search & Clustering Engine for Vectors & 🔜 Texts


Discord     LinkedIn     Twitter     Blog     GitHub

Spatial • Binary • Probabilistic • User-Defined Metrics
C++11Python 3JavaScriptJavaRustC99Objective-CSwiftC#GoWolfram
Linux • macOS • Windows • iOS • Android • WebAssembly • SQLite


Technical Insights and related articles:

Comparison with FAISS

FAISS is a widely recognized standard for high-performance vector search engines. USearch and FAISS both employ the same HNSW algorithm, but they differ significantly in their design principles. USearch is compact and broadly compatible without sacrificing performance, primarily focusing on user-defined metrics and fewer dependencies.

FAISS USearch Improvement
Indexing time ⁰
100 Million 96d f32, f16, i8 vectors 2.6 · 2.6 · 2.6 h 0.3 · 0.2 · 0.2 h 9.6 · 10.4 · 10.7 x
100 Million 1536d f32, f16, i8 vectors 5.0 · 4.1 · 3.8 h 2.1 · 1.1 · 0.8 h 2.3 · 3.6 · 4.4 x
Codebase length ¹ 84 K SLOC 3 K SLOC maintainable
Supported metrics ² 9 fixed metrics any metric extendible
Supported languages ³ C++, Python 10 languages portable
Supported ID types ⁴ 32-bit, 64-bit 32-bit, 40-bit, 64-bit efficient
Filtering ⁵ ban-lists any predicates composable
Required dependencies ⁶ BLAS, OpenMP - light-weight
Bindings ⁷ SWIG Native low-latency
Python binding size ⁸ ~ 10 MB < 1 MB deployable

Tested on Intel Sapphire Rapids, with the simplest inner-product distance, equivalent recall, and memory consumption while also providing far superior search speed. ¹ A shorter codebase of usearch/ over faiss/ makes the project easier to maintain and audit. ² User-defined metrics allow you to customize your search for various applications, from GIS to creating custom metrics for composite embeddings from multiple AI models or hybrid full-text and semantic search. ³ With USearch, you can reuse the same preconstructed index in various programming languages. ⁴ The 40-bit integer allows you to store 4B+ vectors without allocating 8 bytes for every neighbor reference in the proximity graph. ⁵ With USearch the index can be combined with arbitrary external containers, like Bloom filters or third-party databases, to filter out irrelevant keys during index traversal. ⁶ Lack of obligatory dependencies makes USearch much more portable. ⁷ Native bindings introduce lower call latencies than more straightforward approaches. ⁸ Lighter bindings make downloads and deployments faster.

Base functionality is identical to FAISS, and the interface must be familiar if you have ever investigated Approximate Nearest Neighbors search:

# pip install usearch

import numpy as np
from usearch.index import Index

index = Index(ndim=3)               # Default settings for 3D vectors
vector = np.array([0.2, 0.6, 0.4])  # Can be a matrix for batch operations
index.add(42, vector)               # Add one or many vectors in parallel
matches = index.search(vector, 10)  # Find 10 nearest neighbors

assert matches[0].key == 42
assert matches[0].distance <= 0.001
assert np.allclose(index[42], vector, atol=0.1) # Ensure high tolerance in mixed-precision comparisons

More settings are always available, and the API is designed to be as flexible as possible. The default storage/quantization level is hardware-dependant for efficiency, but bf16 is recommended for most modern CPUs.

index = Index(
    ndim=3, # Define the number of dimensions in input vectors
    metric='cos', # Choose 'l2sq', 'ip', 'haversine' or other metric, default = 'cos'
    dtype='bf16', # Store as 'f64', 'f32', 'bf16', 'f16', 'e5m2', 'e4m3', 'e3m2', 'e2m3', 'u8', 'i8', 'b1'..., default = None
    connectivity=16, # Optional: Limit number of neighbors per graph node
    expansion_add=128, # Optional: Control the recall of indexing
    expansion_search=64, # Optional: Control the quality of the search
    multi=False, # Optional: Allow multiple vectors per key, default = False
)

Serialization & Serving Index from Disk

USearch supports multiple forms of serialization:

  • Into a file defined with a path.
  • Into a stream defined with a callback, serializing or reconstructing incrementally.
  • Into a buffer of fixed length or a memory-mapped file that supports random access.

The latter allows you to serve indexes from external memory, enabling you to optimize your server choices for indexing speed and serving costs. This can result in 20x cost reduction on AWS and other public clouds.

index.save("index.usearch")

index.load("index.usearch")
view = Index.restore("index.usearch", view=True, ...)

other_view = Index(ndim=..., metric=...)
other_view.view("index.usearch")

Exact vs. Approximate Search

Approximate search methods, such as HNSW, are predominantly used when an exact brute-force search becomes too resource-intensive. This typically occurs when you have millions of entries in a collection. For smaller collections, we offer a more direct approach with the search method.

from usearch.index import search, MetricKind, Matches, BatchMatches
import numpy as np

# Generate 10'000 random vectors with 1024 dimensions
vectors = np.random.rand(10_000, 1024).astype(np.float32)
vector = np.random.rand(1024).astype(np.float32)

one_in_many: Matches = search(vectors, vector, 50, MetricKind.L2sq, exact=True)
many_in_many: BatchMatches = search(vectors, vectors, 50, MetricKind.L2sq, exact=True)

If you pass the exact=True argument, the system bypasses indexing altogether and performs a brute-force search through the entire dataset using SIMD-optimized similarity metrics from NumKong. When compared to FAISS's IndexFlatL2 in Google Colab, USearch may offer up to a 20x performance improvement:

  • faiss.IndexFlatL2: 55.3 ms.
  • usearch.index.search: 2.54 ms.

User-Defined Metrics

While most vector search packages concentrate on just two metrics, "Inner Product distance" and "Euclidean distance", USearch allows arbitrary user-defined metrics. This flexibility allows you to customize your search for various applications, from computing geospatial coordinates with the rare Haversine distance to creating custom metrics for composite embeddings from multiple AI models, like joint image-text embeddings. You can use Numba, Cppyy, or PeachPy to define your custom metric even in Python:

from numba import cfunc, types, carray
from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric

ndim = 256

@cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
def python_inner_product(a, b):
    a_array = carray(a, ndim)
    b_array = carray(b, ndim)
    c = 0.0
    for i in range(ndim):
        c += a_array[i] * b_array[i]
    return 1 - c

metric = CompiledMetric(pointer=python_inner_product.address, kind=MetricKind.IP, signature=MetricSignature.ArrayArray)
index = Index(ndim=ndim, metric=metric, dtype=np.float32)

Similar effect is even easier to achieve in C, C++, and Rust interfaces. Moreover, unlike older approaches indexing high-dimensional spaces, like KD-Trees and Locality Sensitive Hashing, HNSW doesn't require vectors to be identical in length. They only have to be comparable. So you can apply it in obscure applications, like searching for similar sets or fuzzy text matching, using GZip compression-ratio as a distance function.

Filtering and Predicate Functions

Sometimes you may want to cross-reference search-results against some external database or filter them based on some criteria. In most engines, you'd have to manually perform paging requests, successively filtering the results. In USearch you can simply pass a predicate function to the search method, which will be applied directly during graph traversal. In Rust that would look like this:

let is_odd = |key: Key| key % 2 == 1;
let query = vec![0.2, 0.1, 0.2, 0.1, 0.3];
let results = index.filtered_search(&query, 10, is_odd).unwrap();
assert!(
    results.keys.iter().all(|&key| key % 2 == 1),
    "All keys must be odd"
);

Memory Efficiency, Downcasting, and Quantization

Training a quantization model and dimension-reduction is a common approach to accelerate vector search. Those, however, are only sometimes reliable, can significantly affect the statistical properties of your data, and require regular adjustments if your distribution shifts. Instead, we have focused on high-precision arithmetic over low-precision downcasted vectors. The same index, and add and search operations will automatically down-cast or up-cast between f64_t, f32_t, bf16_t, f16_t, e5m2_t, e4m3_t, e3m2_t, e2m3_t, u8_t, i8_t, and single-bit b1x8_t representations. You can use the following command to check, if hardware acceleration is enabled:

$ python -c 'from usearch.index import Index; print(Index(ndim=768, metric="cos", dtype="f16").hardware_acceleration)'
> sapphire
$ python -c 'from usearch.index import Index; print(Index(ndim=166, metric="tanimoto").hardware_acceleration)'
> ice

In most cases, bf16 is recommended for modern CPUs. For even smaller footprints, USearch supports IEEE & MX-compatible Float8 (e5m2 and e4m3) and Float6 (e3m2 and e2m3) formats. You can pass pre-quantized buffers from NumKong with the explicit dtype= parameter on add and search, or let USearch handle the quantization internally from higher-precision inputs. When quantization is enabled, the "get"-like functions won't be able to recover the original data, so you may want to replicate the original vectors elsewhere. When quantizing to i8_t integers, note that it's only valid for cosine-like metrics. As part of the quantization process, the vectors are normalized to unit length and later scaled to [-127, 127] range to occupy the full 8-bit range. When quantizing to b1x8_t single-bit representations, note that it's only valid for binary metrics like Jaccard, Hamming, etc. As part of the quantization process, the scalar components greater than zero are set to true, and the rest to false.

USearch uint40_t support

Using smaller numeric types will save you RAM needed to store the vectors, but you can also compress the neighbors lists forming our proximity graphs. By default, 32-bit uint32_t is used to enumerate those, which is not enough if you need to address over 4 Billion entries. For such cases we provide a custom uint40_t type, that will still be 37.5% more space-efficient than the commonly used 8-byte integers, and will scale up to 1 Trillion entries.

Indexes for Multi-Index Lookups

For larger workloads targeting billions or even trillions of vectors, parallel multi-index lookups become invaluable. Instead of constructing one extensive index, you can build multiple smaller ones and view them together.

from usearch.index import Indexes

multi_index = Indexes(
    indexes: Iterable[usearch.index.Index] = [...],
    paths: Iterable[os.PathLike] = [...],
    view: bool = False,
    threads: int = 0,
)
multi_index.search(...)

Clustering

Once the index is constructed, USearch can perform K-Nearest Neighbors Clustering much faster than standalone clustering libraries, like SciPy, UMap, and tSNE. Same for dimensionality reduction with PCA. Essentially, the Index itself can be seen as a clustering, allowing iterative deepening.

clustering = index.cluster(
    min_count=10, # Optional
    max_count=15, # Optional
    threads=..., # Optional
)

# Get the clusters and their sizes
centroid_keys, sizes = clustering.centroids_popularity

# Use Matplotlib to draw a histogram
clustering.plot_centroids_popularity()

# Export a NetworkX graph of the clusters
g = clustering.network

# Get members of a specific cluster
first_members = clustering.members_of(centroid_keys[0])

# Deepen into that cluster, splitting it into more parts, all the same arguments supported
sub_clustering = clustering.subcluster(min_count=..., max_count=...)

The resulting clustering isn't identical to K-Means or other conventional approaches but serves the same purpose. Alternatively, using Scikit-Learn on a 1 Million point dataset, one may expect queries to take anywhere from minutes to hours, depending on the number of clusters you want to highlight. For 50'000 clusters, the performance difference between USearch and conventional clustering methods may easily reach 100x.

Joins, One-to-One, One-to-Many, and Many-to-Many Mappings

One of the big questions these days is how AI will change the world of databases and data management. Most databases are still struggling to implement high-quality fuzzy search, and the only kind of joins they know are deterministic. A join differs from searching for every entry, requiring a one-to-one mapping banning collisions among separate search results.

Exact Search Fuzzy Search Semantic Search ?
Exact Join Fuzzy Join ? Semantic Join ??

Using USearch, one can implement sub-quadratic complexity approximate, fuzzy, and semantic joins. This can be useful in any fuzzy-matching tasks common to Database Management Software.

men = Index(...)
women = Index(...)
pairs: dict = men.join(women, max_proposals=0, exact=False)

Read more in the post: Combinatorial Stable Marriages for Semantic Search 💍

Functionality

By now, the core functionality is supported across all bindings. Broader functionality is ported per request. In some cases, like Batch operations, feature parity is meaningless, as the host language has full multi-threading capabilities and the USearch index structure is concurrent by design, so the users can implement batching/scheduling/load-balancing in the most optimal way for their applications.

C++ 11 Python 3 C 99 Java JavaScript Rust Go Swift
Add, search, remove
Save, load, view
User-defined metrics
Batch operations
Filter predicates
Joins
Variable-length vectors
4B+ capacities

Application Examples

USearch + UForm + UCall = Multimodal Semantic Search

AI has a growing number of applications, but one of the coolest classic ideas is to use it for Semantic Search. One can take an encoder model, like the multi-modal UForm, and a web-programming framework, like UCall, and build a text-to-image search platform in just 20 lines of Python.

from ucall import Server
from uform import get_model, Modality
from usearch.index import Index

import numpy as np
import PIL as pil

processors, models = get_model('unum-cloud/uform3-image-text-english-small')
model_text = models[Modality.TEXT_ENCODER]
model_image = models[Modality.IMAGE_ENCODER]
processor_text = processors[Modality.TEXT_ENCODER]
processor_image = processors[Modality.IMAGE_ENCODER]

server = Server()
index = Index(ndim=256)

@server
def add(key: int, photo: pil.Image.Image):
    image = processor_image(photo)
    vector = model_image(image)
    index.add(key, vector.flatten(), copy=True)

@server
def search(query: str) -> np.ndarray:
    tokens = processor_text(query)
    vector = model_text(tokens)
    matches = index.search(vector.flatten(), 3)
    return matches.keys

server.run()

Similar experiences can also be implemented in other languages and on the client side, removing the network latency. For Swift and iOS, check out the ashvardanian/SwiftSemanticSearch repository.

SwiftSemanticSearch demo Dog SwiftSemanticSearch demo with Flowers

A more complete demo with Streamlit is available on GitHub. We have pre-processed some commonly used datasets, cleaned the images, produced the vectors, and pre-built the index.

Dataset Modalities Images Download
Unsplash Images & Descriptions 25 K HuggingFace / Unum
Conceptual Captions Images & Descriptions 3 M HuggingFace / Unum
Arxiv Titles & Abstracts 2 M HuggingFace / Unum

USearch + RDKit = Molecular Search

Comparing molecule graphs and searching for similar structures is expensive and slow. It can be seen as a special case of the NP-Complete Subgraph Isomorphism problem. Luckily, domain-specific approximate methods exist. The one commonly used in Chemistry is to generate structures from SMILES and later hash them into binary fingerprints. The latter are searchable with binary similarity metrics, like the Tanimoto coefficient. Below is an example using the RDKit package.

from usearch.index import Index, MetricKind
from rdkit import Chem
from rdkit.Chem import AllChem

import numpy as np

molecules = [Chem.MolFromSmiles('CCOC'), Chem.MolFromSmiles('CCO')]
encoder = AllChem.GetRDKitFPGenerator()

fingerprints = np.vstack([encoder.GetFingerprint(x) for x in molecules])
fingerprints = np.packbits(fingerprints, axis=1)

index = Index(ndim=2048, metric=MetricKind.Tanimoto)
keys = np.arange(len(molecules))

index.add(keys, fingerprints)
matches = index.search(fingerprints, 10)

That method was used to build the "USearch Molecules", one of the largest Chem-Informatics datasets, containing 7 billion small molecules and 28 billion fingerprints.

USearch + POI Coordinates = GIS Applications

Similar to Vector and Molecule search, USearch can be used for Geospatial Information Systems. The Haversine distance is available out of the box, but you can also define more complex relationships, like the Vincenty formula, that accounts for the Earth's oblateness.

from numba import cfunc, types, carray
import math

ndim = 2
semi_major, flattening = 6378137.0, 1 / 298.257223563
semi_minor = (1 - flattening) * semi_major

def vincenty_distance(first_ptr, second_ptr):
    first, second = carray(first_ptr, ndim), carray(second_ptr, ndim)
    lat1, lon1, lat2, lon2 = first[0], first[1], second[0], second[1]
    diff_lon = lon2 - lon1
    rlat1, rlat2 = math.atan((1 - flattening) * math.tan(lat1)), math.atan((1 - flattening) * math.tan(lat2))
    sin_rlat1, cos_rlat1 = math.sin(rlat1), math.cos(rlat1)
    sin_rlat2, cos_rlat2 = math.sin(rlat2), math.cos(rlat2)
    lon_on_sphere = diff_lon
    for _ in range(100):
        sin_lon, cos_lon = math.sin(lon_on_sphere), math.cos(lon_on_sphere)
        sin_ang = math.sqrt((cos_rlat2 * sin_lon) ** 2 + (cos_rlat1 * sin_rlat2 - sin_rlat1 * cos_rlat2 * cos_lon) ** 2)
        if sin_ang == 0: return 0.0
        cos_ang = sin_rlat1 * sin_rlat2 + cos_rlat1 * cos_rlat2 * cos_lon
        ang = math.atan2(sin_ang, cos_ang)
        sin_az = cos_rlat1 * cos_rlat2 * sin_lon / sin_ang
        cos2_az = 1 - sin_az ** 2
        cos2_mid = cos_ang - 2 * sin_rlat1 * sin_rlat2 / cos2_az if cos2_az != 0 else 0.0
        corr = flattening / 16 * cos2_az * (4 + flattening * (4 - 3 * cos2_az))
        prev = lon_on_sphere
        lon_on_sphere = diff_lon + (1 - corr) * flattening * (
            sin_az * (ang + corr * sin_ang * (cos2_mid + corr * cos_ang * (-1 + 2 * cos2_mid ** 2))))
        if abs(lon_on_sphere - prev) <= 1e-12: break
    else:
        return float('nan')
    u_sq = cos2_az * (semi_major ** 2 - semi_minor ** 2) / (semi_minor ** 2)
    ca = 1 + u_sq / 16384 * (4096 + u_sq * (-768 + u_sq * (320 - 175 * u_sq)))
    cb = u_sq / 1024 * (256 + u_sq * (-128 + u_sq * (74 - 47 * u_sq)))
    delta = cb * sin_ang * (cos2_mid + cb / 4 * (cos_ang * (-1 + 2 * cos2_mid ** 2)
        - cb / 6 * cos2_mid * (-3 + 4 * sin_ang ** 2) * (-3 + 4 * cos2_mid ** 2)))
    return semi_minor * ca * (ang - delta) / 1000.0

index = Index(ndim=ndim, metric=CompiledMetric(
    pointer=vincenty_distance.address,
    kind=MetricKind.Haversine,
    signature=MetricSignature.ArrayArray,
))

Integrations & Users

Citations

@software{Vardanian_USearch,
doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/USearch},
version = {2.25.3},
year = {2026},
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

usearch-2.25.3-cp314-cp314t-win_arm64.whl (360.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

usearch-2.25.3-cp314-cp314t-win_amd64.whl (378.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

usearch-2.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

usearch-2.25.3-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

usearch-2.25.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp314-cp314t-macosx_11_0_arm64.whl (490.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

usearch-2.25.3-cp314-cp314t-macosx_10_15_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

usearch-2.25.3-cp314-cp314t-macosx_10_15_universal2.whl (950.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp314-cp314-win_arm64.whl (349.3 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch-2.25.3-cp314-cp314-win_amd64.whl (354.2 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch-2.25.3-cp314-cp314-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

usearch-2.25.3-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch-2.25.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp314-cp314-macosx_11_0_arm64.whl (469.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch-2.25.3-cp314-cp314-macosx_10_15_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch-2.25.3-cp314-cp314-macosx_10_15_universal2.whl (910.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp313-cp313t-win_arm64.whl (351.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

usearch-2.25.3-cp313-cp313t-win_amd64.whl (361.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

usearch-2.25.3-cp313-cp313t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

usearch-2.25.3-cp313-cp313t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

usearch-2.25.3-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp313-cp313t-macosx_11_0_arm64.whl (490.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

usearch-2.25.3-cp313-cp313t-macosx_10_13_x86_64.whl (507.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

usearch-2.25.3-cp313-cp313t-macosx_10_13_universal2.whl (949.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp313-cp313-win_arm64.whl (340.2 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch-2.25.3-cp313-cp313-win_amd64.whl (343.6 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch-2.25.3-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

usearch-2.25.3-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch-2.25.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp313-cp313-macosx_11_0_arm64.whl (471.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch-2.25.3-cp313-cp313-macosx_10_13_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch-2.25.3-cp313-cp313-macosx_10_13_universal2.whl (914.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp312-cp312-win_arm64.whl (340.2 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch-2.25.3-cp312-cp312-win_amd64.whl (343.6 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch-2.25.3-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

usearch-2.25.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch-2.25.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp312-cp312-macosx_11_0_arm64.whl (471.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch-2.25.3-cp312-cp312-macosx_10_13_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch-2.25.3-cp312-cp312-macosx_10_13_universal2.whl (914.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp311-cp311-win_arm64.whl (337.9 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch-2.25.3-cp311-cp311-win_amd64.whl (340.6 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch-2.25.3-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

usearch-2.25.3-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch-2.25.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp311-cp311-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch-2.25.3-cp311-cp311-macosx_10_9_x86_64.whl (481.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch-2.25.3-cp311-cp311-macosx_10_9_universal2.whl (897.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

usearch-2.25.3-cp310-cp310-win_arm64.whl (337.1 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch-2.25.3-cp310-cp310-win_amd64.whl (339.7 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch-2.25.3-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

usearch-2.25.3-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch-2.25.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

usearch-2.25.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

usearch-2.25.3-cp310-cp310-macosx_11_0_arm64.whl (462.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch-2.25.3-cp310-cp310-macosx_10_9_x86_64.whl (479.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch-2.25.3-cp310-cp310-macosx_10_9_universal2.whl (895.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file usearch-2.25.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 360.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 bc6ee460b5030068a414a7390be5916a823b8edfab86ca453daeac47a813b4c0
MD5 013e00d4fc3badc7df7734552a9d0623
BLAKE2b-256 01fedc2ddb0048f43c4b4ffb3dd8014451abeae181dfc1194df9e4c5aed153ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 378.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1cf98c5e23a8509e208f1c0d853e64d54ffeceaeeb12c5b204d2f517f1ac58e7
MD5 a300d4077f66e14e55ea7424270cdfcc
BLAKE2b-256 9e585f7ebb891f3ea8b8a1f0c1c95b3a47f3a9eba4748b0c1110957140c10e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8afcfcd59e6e1493e5ab7eabf36d4838e9102d57db55ee4128fc48e1b8f1899
MD5 b1cb744822885c62cc36ae2a624150b3
BLAKE2b-256 65644bd30f33e094525eb8527155425036e73f4c76617047714fc0353c30ede4

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 232961eb298dcf3bfb7a84eb10c561cf7e8349c890901454da7a96aba43be43b
MD5 57f2ded79599b6286452f173126897b0
BLAKE2b-256 4814f4273ec28fd38912d1ed30eedf02fe91c2d4a5300864e59fa07545c802c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 679eb56840d7787ad25d8488f8859d113d8ea9cd6944accefcb632f2f37b52aa
MD5 cf41d52ec83d1d842b5dffa0a1a1db67
BLAKE2b-256 7c76b37a06dcc900e9ca6da31ffdeb6381398413802e62924faacbc47bd95b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3f602cced07568ccb5c924ed3b7c7da332743b2fba6db8424b5457fa0e209f3
MD5 f6e782cc6ffa3ce42bb230b81b4364c8
BLAKE2b-256 c3e690e0aee2e713f14b57543c5cd7209e99ed1ba4df5a7cda0a0bafeec940c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec34547a50ae189416ebf3fea99f9c217b57b397891e8de46b73fae74562023
MD5 92a714dcda7bb0812ce75eac7832134a
BLAKE2b-256 e379f8ff8fcb5802b20f20f788180c6df247a09b1fcc71e3634620ded4054bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 60fb6aa8bc7a52ac892aa526d739ddc9d269a3cc68723cd65cd2f57d35a312ab
MD5 16660e1addfbed8a90fb3791978a98c7
BLAKE2b-256 fe227ee5e346e0106e708e9b5255c99f76b8f4b18a959448cb58a7ccafc82d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b852316a7c95ef4e4af2d4a886f1dc1d0d6586157492f2f1d6135a4ee0edc040
MD5 1d33ca412e6b000ce9d833d08168467d
BLAKE2b-256 7348e51386f257d0ffab6129b3254060b4b0baf154c3a6dc659ec9396b4a81e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cfd9b058d2ff601a52244506ee64d53c7f3e64b314e4b8e555ab2b251dc47fbf
MD5 5fdd24bb967e91ffe40c06ad6a8d5fd5
BLAKE2b-256 fd69af547a049029cd4480a9644b598716f7211c98cfdb16339b8eac54cfa482

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 354.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e758d95086ad01f723488b49d6fd2e91c8c46ae25aa5cb71d3910e851d56aee1
MD5 c61ea5d1344d3ba0f164332091f664b5
BLAKE2b-256 1e4edbe152c1e22d0882c8712d41e94b9bfb10020d7f400602138d5de3eba790

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90367ca5cb8a061420fcee15c6ac102c5c9b92a210174579ffb46ab330b0008e
MD5 9ae2672ce2477ccde282ac65db4012fe
BLAKE2b-256 59dd603760b78975683347cc0b081c842f10b0f753507953c8cec1be83bea39a

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b120add78c0854813c491f07da858f04e0383a5c9641f58f7fadfb985af1a92d
MD5 c0f4d25f2d1a3fc298b422d3ec271c14
BLAKE2b-256 78e62914abb3eb2df8640837743a53a1f62ed9e7c124249314e6e87172c50b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98660c6cdbb93ddafa34c0f128da114bbfeb5cc49f4da1b919e9a9744b09707d
MD5 cef02eec3f88948a932b112cf902f171
BLAKE2b-256 8049e79df3ec52adffbba05fe7699a57d685d84b8b9bf2921a6bc5ef482001dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 499640cb30abf55b92edcc3dc16f96fe8e2c297e1e2fea486104219cdb46dcb9
MD5 5abaddf95d2128c34eb2b3ec18575f15
BLAKE2b-256 acb9272b5dc206302ebdd740b388191fcd8fa3ef6f80f78057bdf46bff4e2421

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6c8dbd321a71f9bc098c1f444efa585f4aadf42a7fbad2cb0a8fb9cc3581104
MD5 707fd4ee9729c84e24d2c7f1b1bb3f1b
BLAKE2b-256 163a2731a185ae353f0f11e4c91fa2afcd22d0027b94c29bcd6b870461f930c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 40060c9562996b7a68c658ecee1c23f082afdc222b0a4f2a549bff4326314af6
MD5 b2899db531570e33d8df1e4120804441
BLAKE2b-256 89f5e94d8248c1ea80aff6e2d37cb882a583d5b3ad221a7d485db495965fc1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4d81ac53a6b93cf24052428c96f829c90a4f3c323a05151866d3489fd69e185a
MD5 b262ffd99fd59fff6ba9daaeef814299
BLAKE2b-256 6f90939d88c4b39d2c833de078d0c4d4a41c7140a05ba98aec556050824133e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 351.6 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 9835ea1d7e88365b19e21d17ad2f1c8b929c8fe839f2f9f08c4cec32e923e3ba
MD5 8c70f2d2266a8c2e25bf841568847860
BLAKE2b-256 73a283ad9d34bf35aa147d0c569b6cd4d401cf5318ddd351fb894548c66d5144

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 361.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d1d95cd09b3736665ab9f60a782dc7e8865e6e01c249c2897ba77a8d8e5bf476
MD5 602fc6b4b1be3084537c77e4514693d2
BLAKE2b-256 fbadfd6f287029c1419ddbb8aec840cbe24dbab9640481b268afb2a5ea0c33dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f734309562e097191c364b7ae5613b7cd3e9c4e68992c10835292ac04b0e653
MD5 0719b1532b4040d106ed516d7ae37f74
BLAKE2b-256 4e022051b0dda5294857da492716b92a4d15deb694e5adf74e08b1aa663b2a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1be7088e027b3794c58ef8321c849e55bc033ee66cc5289759b83aba555b62f4
MD5 9386149ec420eca591a96016eaf34889
BLAKE2b-256 4c57f843bdc1f2bef41c7a17b2a0ba21614ed1a84d616fb6890718e49e53b73c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61e5bd1c96b56f895233122ef6bd28cc5028e4054fd233859cca66e15c89eca1
MD5 23454dcae12f14e8718ceea6c546ac3e
BLAKE2b-256 f48fd47877cf9cf2a389d41f7c0842fabb0e50da9bb82fe4f42c387d47b281e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72515ad14d68640b32adbf1dea7fa56175ef8503e7c31d168fd8d44e10db53f9
MD5 483c779ff89d1ff9526627e40ac5a7cb
BLAKE2b-256 c68801a0b239891eaae515ed7c4ff107237fc5ced222abbfaf6ebf34136fca51

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d8466fc023035231d68b667d400700ee63bd6a453a9572786e7a5659d86406f
MD5 37d2a9492b2c1d9f378dc75b536e58c9
BLAKE2b-256 127a48bedea04af84afc5e911bd228d1f72fc77f8578081e54af4276bcf2a783

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3552782204c97af16bede1dbf53266a6944b65f1634cfd5b7f21a84eb39dd269
MD5 c749e2791e0fb1f25c74834c134a5954
BLAKE2b-256 c4640baeec6e67def931f3c430e74826e1725e689998c7ed358f0546410cdb7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c694fc96a4e7d9a59c5dbf7062ec62ad22a5c7e0f3f30bf158d40c9b3b27403c
MD5 68e7830ae7fefa5b55e45eb0bb5b2b92
BLAKE2b-256 82c86dec6a2e8cff368c9976ff1c38464674ac8151037cb9146a8a962db28d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 340.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b0fa563526005c49b5fca2dee6edd80f6a862cae576e709a126353b81e02361a
MD5 306ab176448503cfe913f2e875b20d79
BLAKE2b-256 8cea91c6e34f630bc0674da1998e56f3627e930d4aa9f508036197691c5571cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 343.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 502b6de5139742e02251d6af564b21e698f12fd4ec144138b9242895d5a0bb3d
MD5 db9cbaef6bb318bbdae2b8e5a5415399
BLAKE2b-256 c2a4810c4a694e594758e21f6616d9e781dc1486967377201d84fc4e63b5886c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 911f925953a8dca39f255b0d6ce7fd5baa5fa8eba0777126474dec9651ee9049
MD5 122e405a57fececefdf6607ed672ab20
BLAKE2b-256 9bebc48a75f99f6e2e78afb6dc2202fae3c3b19ff88bbde34b6eea5e24184c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99484d5cd4336c78b0c266f69ffb5bc351e9983c166e10bd9956d3a39d0e2f1c
MD5 75b2c6626a8dffbfa697fb813c490e5c
BLAKE2b-256 9d571295c4b7f65c9330c4a1387242ad6f8ddea666228eb4b4a7edef32685cc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7099f3c97ac65b9d579ad5f525bf93c74d4f0e13f4be1b2e841e3cc9f0083344
MD5 1752ecb5ec31b13fb999a72509d56d0f
BLAKE2b-256 68d796abff23dbc488af0ab1135748931db5b31757bac407eee5976030929b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 732c48f4c9217dc342bc81f3a4835219be71bc7854ab92bfd0541e12c4de2a74
MD5 c9db6adfac0e76a443fa614f91b1c515
BLAKE2b-256 4ff112ee2f025328b08064f18defa7bcf05f449e5cc9dd10a9d1b1e38a735f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f74fa8942d3995c54a38dfe26aca485a13f2ba0308ddf03e29a1cbdc93a92226
MD5 809714c38dd4331c6825f92b7c9f62ee
BLAKE2b-256 54064b01ac23c4f55d83c870dc06a5fc558ae58132480b9083c7d8033f66e4f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c67ff08e4de4d37d1d9010bb89cc6cc53b7b8d68bba5eab5f3ae64d48f218f8d
MD5 70e1e222f781f92856ff39b3d29fab06
BLAKE2b-256 98a2e5358354983c0fc14d35342bd3ce16a2be29263f7b68f86a2fe8de8f3a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a4bc510faf774613d18e9b80af85019b648559245698a1559579f165b5327277
MD5 67e6561cbd25ed83ec307ab4af500039
BLAKE2b-256 55f58013305dcb199ed5802bb6e3bee13fb8d44b8461c4cc0047de19ae7d611c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 340.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8e52d3f72a363920267ee1fa4903cbedb77a7b621261ff5ef998e64a843559fc
MD5 43937a3bca2728f19318da2ed412354b
BLAKE2b-256 e00009c071349098469a0ce709304f5d2075f1fea18e27e6bb9e60c0850c8415

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7aba3734ac8bcfffc73b260a450de15837cebf407624d8706a86db424d94c9d0
MD5 18937f333ab80851f59d08edf0d630aa
BLAKE2b-256 30c02d4acc683b9182211c54d3dc2a775502cdf4bc6c668f54c711dda63bc7db

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68c3baf282c236f6c5cab7f739a9d4fead18cc6aa33821d08108a5924f5ec91a
MD5 e4e36a5fd101364509d43527f4b0b46a
BLAKE2b-256 a3c1ea88b2744d447c2a33c6cb8ba46e8494caf81eeba9df11d3e4cc9ca24850

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b0e922b8aaed13f2e6bdd278dfa9c919bded7fb60c4200b18bca1f76e11410f
MD5 caa223a4c3c3b2ae6bbad816b0cf8282
BLAKE2b-256 df1e36d6d7700c0cb0a4cf001cd1506ad1ac10f5525e6e76c1a3f9fcca729cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d51519475cc33a7524958804b176e12ac6e0f4e3fa750160920816a4e6f1831e
MD5 cd6a60f36efb34874ca395be4fa33484
BLAKE2b-256 40f68ae53e0e7e0bc6f5ef7ad358028df9a9c1525b6e7aea12819b1d3d48b835

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30b60c353451ce5e4bea840f6baa86c28f789b5901442285fef81d9e16204c8b
MD5 9cb2ad87f72b10ac5dbf4a367b6a71e1
BLAKE2b-256 526d45d86e941314727c86a60fdccbe9459ad2a69953ce01ab77c149841360ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 484fdba62fd9bdd00c738667f19d57ee5f76d869faa92200cb91273325a2b250
MD5 20fc098e80a389a4a0e9ec3f34d82c6d
BLAKE2b-256 aff0debdc231bd9735025f32c8326ed625c33da42fb1f23ca313ad77a5311255

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 40d0045ab8eeed458aeb3f656af10c7d9ddaed621f7264d7df4e0683a0594856
MD5 353ce85b4152c328dc834ea61f28a042
BLAKE2b-256 ae02a2c1ba1437417638141451662d7b893c0b22961d676734cc7ac5390c3212

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fb7082de7729e3010ffa1b19cac3aa91d6e36f0715b3bbb437f70e3e752bda88
MD5 47da336cb2a378f7359b117d398224a4
BLAKE2b-256 9bf29c12c6cdacc4a3baef2335e0926c7a1b5ab00115b6b62cfd9c8d3ff45b04

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 337.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b9932a90d575bb6b1c8c32631b84938471f7908835e8a6e6d9981d733894800b
MD5 15d9835bcc84d436a4f3b22656d5b698
BLAKE2b-256 1e6ca6c50d2bb1a8707f8fb7bc9321c58e2853b90bc4f2a48d173b47984b3b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 340.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d128ba693e0cef34c9dcc9dcd924897752232d15cad6b532fdf39c38477efeec
MD5 26366ea1f83eb1832e18e957870fb6c2
BLAKE2b-256 98a0269071a52688457ac9a2aac283318a81f4a0fca20cbb01899f3fa86ba1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a0cd1db5efb573f51d248d50b5b19de892eaff5b3cea99e6ca11f4ca73d7a3e
MD5 c09dbbf7878e539e19cea47e84e87c1b
BLAKE2b-256 aa512f4eeebedfdc5546a73c05b4ffff169217bc144cf8c327747c3a054ea026

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4b531c13c21d277220d46192daaed9733cf6f97a03b0c77b5870ae9d7f8e95b
MD5 f0769c607e1b9a6b8640321975817da2
BLAKE2b-256 4b2c196db280279ba9fb7ffedf2d77638b7d46fe407edfc2eb09519cece29a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7edf50fa325d2421f4e5b0f77b5386800b3776ec61ee26e4af726315d26bc425
MD5 280cf3bf0f9999543610380cab1fdf96
BLAKE2b-256 a666ff721754c3e3e59d8e68251cb6b641ade8656c0e47b2354589772ae7e049

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2cd9f1cd51cae5dfdff487f25fc292992468291ff21eeefa4cd227841605933
MD5 2bc5b08fe2b78b802e0f7d69effabd10
BLAKE2b-256 ee8fa26bcc71247b481f6cb28e38a99218b4deba20ebe7487a463ecf95ffb4f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3737cef238fefe3a6a380d8d09c0c568403e4527590f4d3df99bc0e36af547f
MD5 1689ce924b528b6c4d05e200401ad658
BLAKE2b-256 6c9b68b4ee8cd2ad9850bb0c42e3948bed364bb195fd330d5115146363d9765f

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a1e36fd358e2db0ef0f948a393be2910b44821d8165245d4f097aad9bc5205c
MD5 676954def15c0e79ced3b02d5517d1c9
BLAKE2b-256 2ee1ba82ab1d4dcdffcd6b8bb939eea65160b55ca881373c3260be28a978f652

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba22087cfa57a97988cfd742051eebb0e61380841425f8c3eb00592fec33c509
MD5 2f12637bc22c7b5cb387f0ec0adb9e45
BLAKE2b-256 a222454abcf1a1211550232de2128998916f7aca86706a70532d9e1c1369e5c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 337.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 665973ccdeb8d65ce3dea28357c0a4580093f9262f4a35e584489616548693a2
MD5 25e1a7b2fe9de659dcae3961c2026097
BLAKE2b-256 fc4678812d4988f8d579c2bb53a6d5060153a57d29d7b2047712f09b7656b8e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-win_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 339.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for usearch-2.25.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3346fe4164350e23d07d284bc5b8b1b3a468357753c7aad34adece466c91a4e3
MD5 676f0eeaf54a7f6ea5fbe00d96447b1d
BLAKE2b-256 c019bec50aa1c4fcf801b25b4e710afb05edb16631dd5a04eaaf54855fd062e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 819de51152ca55acd0f946e3a900f35c9d226a3e9b01997b0ebcc68ffa02ef84
MD5 1ebe91f2676670221116276d391e9546
BLAKE2b-256 22a5a2fd9a2b555f0d8f3825c7db11db91b685d3ba41eb6197c00e9a98318e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4f8a617fb08212ac0465a6e0b304312ddd9c1df0158c518d86a8143b82983db
MD5 028301ff7a7e5715a59a7fc900e07a7d
BLAKE2b-256 f13ee3f3d43c435fd56677801d443d79515515b0c98d7be5f8e77152f680d48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 febb93c317bc643c595fddadc804f180d855d9a2dab45cf026543d3214d07bef
MD5 b128270d298ba4b4ac20a84d4e0cd336
BLAKE2b-256 7ed656fe620e98efb95941ad486a9125add8859c531629287a82d711cca20190

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2ed7149449286a2692f3c314a91e57bde5e50f2b4f9f6a0b6457785c7530b87
MD5 020cef95c418a214d1cfc854fbd56bf4
BLAKE2b-256 abcb4a991f7deb5f0d6edbe37a18c7741048f6bbbfdb90db43db3dd41a230730

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5ff8e78a26d2d309ffa6d694a9fbee282b52fd2082b4555e57eb7bac0750190
MD5 f19706896038c28018c82b53167f9637
BLAKE2b-256 c52e46a616b2b87d4b01a37ffac95f86c36f732fddfc47629964b8e86fa28c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 557649d919456f6f8b7585e5216cc99319974288700fda87f250351f3e43734a
MD5 febacbb1794c1fafc5433ea1cbc90e45
BLAKE2b-256 d684cac8d8e9bae58dda6f1c157022afd94c800ee71536a3a10250e2d26f298d

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file usearch-2.25.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9d1fb93e388ce0768fcd3f5f688abd7f5d410fae079be589a5cb218e51e9512
MD5 5fd0ec68f7842fa2d7fb347cc590d1a8
BLAKE2b-256 f0f30c95a556665cd360cc42a53637d7efaa7440b6f6ded155214da719ccfbb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on unum-cloud/USearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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