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.2},
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.2-cp314-cp314t-win_arm64.whl (351.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

usearch-2.25.2-cp314-cp314t-win_amd64.whl (368.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

usearch-2.25.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (480.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

usearch-2.25.2-cp314-cp314t-macosx_10_15_x86_64.whl (496.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

usearch-2.25.2-cp314-cp314t-macosx_10_15_universal2.whl (930.4 kB view details)

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

usearch-2.25.2-cp314-cp314-win_arm64.whl (340.9 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch-2.25.2-cp314-cp314-win_amd64.whl (345.0 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch-2.25.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch-2.25.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (459.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch-2.25.2-cp314-cp314-macosx_10_15_x86_64.whl (479.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch-2.25.2-cp314-cp314-macosx_10_15_universal2.whl (892.5 kB view details)

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

usearch-2.25.2-cp313-cp313t-win_arm64.whl (343.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

usearch-2.25.2-cp313-cp313t-win_amd64.whl (353.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

usearch-2.25.2-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.2-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.2-cp313-cp313t-macosx_11_0_arm64.whl (480.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

usearch-2.25.2-cp313-cp313t-macosx_10_13_x86_64.whl (496.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

usearch-2.25.2-cp313-cp313t-macosx_10_13_universal2.whl (930.2 kB view details)

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

usearch-2.25.2-cp313-cp313-win_arm64.whl (331.9 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch-2.25.2-cp313-cp313-win_amd64.whl (334.9 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch-2.25.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch-2.25.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (461.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch-2.25.2-cp313-cp313-macosx_10_13_x86_64.whl (480.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch-2.25.2-cp313-cp313-macosx_10_13_universal2.whl (895.4 kB view details)

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

usearch-2.25.2-cp312-cp312-win_arm64.whl (331.9 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch-2.25.2-cp312-cp312-win_amd64.whl (334.9 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch-2.25.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch-2.25.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (460.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch-2.25.2-cp312-cp312-macosx_10_13_x86_64.whl (480.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch-2.25.2-cp312-cp312-macosx_10_13_universal2.whl (895.4 kB view details)

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

usearch-2.25.2-cp311-cp311-win_arm64.whl (329.7 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch-2.25.2-cp311-cp311-win_amd64.whl (332.1 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch-2.25.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch-2.25.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

usearch-2.25.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

usearch-2.25.2-cp311-cp311-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch-2.25.2-cp311-cp311-macosx_10_9_x86_64.whl (470.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch-2.25.2-cp311-cp311-macosx_10_9_universal2.whl (877.1 kB view details)

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

usearch-2.25.2-cp310-cp310-win_arm64.whl (328.8 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch-2.25.2-cp310-cp310-win_amd64.whl (331.2 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch-2.25.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch-2.25.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

usearch-2.25.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

usearch-2.25.2-cp310-cp310-macosx_11_0_arm64.whl (453.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch-2.25.2-cp310-cp310-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch-2.25.2-cp310-cp310-macosx_10_9_universal2.whl (874.4 kB view details)

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

File details

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

File metadata

  • Download URL: usearch-2.25.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 351.9 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5efaddd59d7fbc7ff9c4a6c1f57ee196cc25f9ebd2fe4801512757b392baec91
MD5 13aeed8a0e82c7880d81ac22a969ebcd
BLAKE2b-256 eca30dd1fdc9759d18c73752bc87d93a8bce6e108fa4330395feecd9db0d4495

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 368.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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5476a2d094fc3951d0508ae9af6f9a0499a518863656bb43b1397859f62b4123
MD5 f213d015af7c70e6f1b6784933e88a41
BLAKE2b-256 fe304b551b640a0a2d9d317d70a1ee882ae99fee4bb3b8d8cc30ff33628f8989

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01de1f029a342151d262ee40786c87449b99cc8c10900c90ee0429c6b0836c0f
MD5 729132281e470a2a1f05992a66886de6
BLAKE2b-256 acff1ec24c634b6ec5783324b20019693b7979e128a0a58a666cf1087dfb1a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2d496e61e308d2d4e886ba75d9a984dc436a0b941b42f0ec6d4c0ef72b6596c
MD5 1f79e608fc369e8ae4b867694a9b08a1
BLAKE2b-256 d39193eaa3bae3b88c03e03f99c5cf79ed24426b2bc24db3503aede0a60ddd8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 547c5c2bb3aa7450480a56afabef5995fd2e5e5d4e2911daa759dbf9e900fdb5
MD5 b22a17efa54f66bf68de4135b64abc25
BLAKE2b-256 0ec1d0e743b83fcdbba31a41a8fe728071ff9ee1c62d6e900f9f1397ae603151

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 545f6cd7ad7038f2b7e65918c224bf7c0298db9b140ab29b77be107447484b91
MD5 9d7c5c6ac715149732ca74c632ad620c
BLAKE2b-256 1fb6b9e9e2a1a0f17b366f34e05d956e2804d8518594fba8e4bce37604d3dcba

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d930d8cafae9c54ab13dc0f83540637b97c9a42427fe475fad41ddb9ce5cbfc1
MD5 2d6fc0283dae3d903b75efb1bb5de12d
BLAKE2b-256 4192593c55926e9123c6ce620b43dd8168a9311b290ef1d48e0af672e74afb01

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee384555602fcf4d56982fbc44dd552be87f9a771b03603ada6147deba787526
MD5 65c55713c60f6173518ab3a167684d4a
BLAKE2b-256 7bb81a56e9b6cb88a66c95deca8ee5bbf892bf36a0213ac94caa4e36a6b13a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2974cfc6c73ea798afbae17904ab60c9806c7c34f7b4e074604070956994f82b
MD5 04aef79d0725981bb2fa9ad48d7c3eaf
BLAKE2b-256 350fe2a6f8a7617002e3abb72d615aa6b0c9f46a6c8f5b3db56953d41b567a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 340.9 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2bb734495f0ed2c89ae5c57b60787b78dbeaa3225cea23d3249fe2b4f79c5f04
MD5 56f8de15c0ba53f0268a3137b5ca420d
BLAKE2b-256 c5f06385e253e828b3fe36310dd6bbb85097d76870c78c801a66fb31f349d492

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 345.0 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 03380f7ac8c8483d49f9bb6fc9fa0356ff51ea68fca5bde5b80a2fda13ccfbb6
MD5 2e47359dd59eead5b9f267c4670f154c
BLAKE2b-256 5ecc9a1e0b8f0e95a1211c5c1a2722258fbb62cbf75d73804d8e6ce1c4b90305

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8399c37f169426c1ea36f69093afc6516a6f62c4b97bc03991284b6f1b090e3d
MD5 555859b525aa46d350f67ebd10963423
BLAKE2b-256 70323dc5bf9b07319d8a21ebf8bc4e6a0e46d49b61791ddec8803dbea562db82

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f764a41f372fcb74c3685bb7fdae137e486df8d4b56b4d3b5abd7a6b61ee3ef
MD5 77951b11fc1c7aa2d38938772809e734
BLAKE2b-256 8dec1d262f7754019780b1e7dbc94bda4e182619d3305936429c8ec0f17bf874

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 328fcb6a06b6862e960e8c8e72818480c7c4c7962b8387aa2d2ec2127d7404cf
MD5 3f38097f5e6a6dd298e86e86c5c66bb1
BLAKE2b-256 f4d11df84a3c3cc99e973b63cd1618b00f65a594d1b6ac6f82cbd59f68f5ea51

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6de7ad92404cc8e88115402d9e7dd9e80a7c635901f98c11a6327c4b761a5ab4
MD5 830f3552435ddfc9feeb7274c48c5c99
BLAKE2b-256 1925afe1aaaf1ae2bc0eb320b51e5cec4d52b71eb0033d0a268f0f6c86a7fb85

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24f7242ba5b62c0904f6a42b8689509e276698f11fcca4903f4421c4e29796de
MD5 b5ef9b957fd48bc22a9f8e02cd23ba01
BLAKE2b-256 2d56f8243fb7292e45635c82a39802f3ade224d380fc7675e12be1892708fb85

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a798600ce5a5d8633ce1591577b3d1209e4f9c3b5f75f2c9471b19d963c15264
MD5 ba76e67b797a29d8bce6d4cf85bd7500
BLAKE2b-256 f5e23566df73e95b148ea3b9314fdf9dcd0d860a9ccbff479422bf520315720c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6471aa060ac2c4d2e0ba112337c518c106005610453aaf77172c05693d1b6c08
MD5 9e4c306bfee0dc00f76b8a59ef132214
BLAKE2b-256 634965ce06d4d2686d706ff7c8732046aec0ef2799c3323f92ebd8f7e4f4e7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 343.4 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.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 8d0a7e2dbd36c1dc4cafe5d267061a3e26c246c77d8ee7ce95f47fe753ab3c20
MD5 e659f840cb3c1db58dada633c51f297c
BLAKE2b-256 3a4b2a7378e286964eec21c00f80aa3c5d3d53e66ac4b5ec92ac1887bb7f44a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 353.6 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 62fa756579326b67482665edbd20eb8ea2790b695aa07bb7b1eb7f919c3234b0
MD5 676baf7cc05efced82a1544217393220
BLAKE2b-256 4656051e99680c3d3dc2504f577153efd2107f96e7f423ffabe360eac76035cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0b6309b8e414fb41a1e2f11b204a740d677ceceab4bc2dda8befd2b571f412a
MD5 40f5c0884905f9713be3e431e0fec005
BLAKE2b-256 b5d74943a2f9c96f83f2659bee5424309d0a4e45e364df358431d647dad95a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e8cd1fd5e92b2264026caae1f22e858e636f1d26d6b8c7c98cc0e388eea0ce3
MD5 494349a3e24b8bc9066cdb01fc0dd0c2
BLAKE2b-256 92bbbb7e880ce9e477407ca3a3ff8a342094d3633328b029f8f13d644d5824c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 699dea54f5d749b323c9168e7fa0aed0d97eeada7e1ac2042e7cdf1b30055097
MD5 c7d02be5e763da549fc3fae3dc5fa4f3
BLAKE2b-256 78d186b7a6ae8df8def9887ce620175c52cfa248ef369ee90060cabba93b3c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c404589d559f7c13743a6d598c1d0a96b2b3f427d9a5f4466f5106941619164
MD5 a159bc645a2e12ff675e0c46542c17a3
BLAKE2b-256 0b087f8da226f54251e6c72fc2359620b9ac229e4c5a9bc3e3fdcf7848001b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7fde82f997ea7e44ff9f1884d2054d3f3b7b75912104def380cdafdaf46b465
MD5 53b63dc0340329f98c3e532740d15134
BLAKE2b-256 fec86247aa163303d4b3bdd996d065d29b5845236e000b7399cd80c24fc3504c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23716417ebc1e5d49a8cb0e4b5c526e5a27038de87085832014e3d858e18d746
MD5 a7ee5002a0f516f7574a62512fb23fc6
BLAKE2b-256 bc89b11bbe4586d85bf1deb19aac619bf684ae1efe8bbc241777d38b8d96510d

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 02db8b1b8d050d10921813f06016a3d261c18bb239f4c8c6016b98df1851115f
MD5 810bde791b3296ac9b3733d26016ab98
BLAKE2b-256 945978b087c06ea331703561fa52315385aa5fb46df60d689b8d7316d4cac3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 331.9 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 91dac8812bd3d245fd76879da9c389e56b4e106af2a35314d3c06b20acdf757b
MD5 1a02f2f9d3b58724f6309ae729f34d33
BLAKE2b-256 a9711567be0fc09204dd9a317d2a9c36071ebb164d93ea78cc69ff51ba65bb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 334.9 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a698396f66334f7e21743fb2c32a2756c14716e935759d7a33bfb17e9c512ae8
MD5 bad7ee0ff0099a4ded65b2a48729f81c
BLAKE2b-256 f77b257520952980b86cb1fd9ed4f941946239b4c725072e110d9cc6e6131d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e503c562cd0482d97115b1b287cb9aec1fddc65807484bcce2ca33461f1dc7ca
MD5 0baf446ea229d2bcdcf9322e413655d4
BLAKE2b-256 a4e96c65cfc8d2a2d0c84bd8fe84452ed74274513f7571d4be5b0793d9c16f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4b51625133f6f799b271e624df5ee60b7220a4c2ce9f299f914fa4c307990e6
MD5 60654d36275d749b99542dd8f0d7eb76
BLAKE2b-256 55ce96029ee66251184cfab41f70385cf82809f08f3eed71556fea06b539f312

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2bffb53fd6955f204c15c51c9f8c9e2c2b7d941cbf8a8c86375c569a90ffede
MD5 95e13660dd81e9de141e5e9bd270b80c
BLAKE2b-256 d83c0496b89d54f85bc503f265727adc04465a3a14ac13d512fa240909b388ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59ac51e2deac91c49ed1f009aebfe725d31b27c8615aa6f3cdbd9203ec8e0801
MD5 dfb510bcd4082e77dc3aa2e07bdefb83
BLAKE2b-256 f03790ce220796fc55d6716618c97680d24e388e4ae37576ee848ddb62c59567

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75dd56b82bc8b1638503e8fc72920f9d62cfdd7d429bf7539e7802b544cc7464
MD5 9b59ef00fec07c91171ba2af8e789f44
BLAKE2b-256 574aa8b260c268f91345938e261649535328600516b2a8045c6509681b3f4394

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b4a368b956211d51c1e5ca5e54082df54f79c956a43e6e04ae22532474d38c69
MD5 ce10b164f4e204e782e0504b702ee2e4
BLAKE2b-256 daa8b7d57f0813c104c4f04ce0bc1b7b58d75f95c90e95beb68e5c61ce76852e

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f538c61d750559a40c9105e652992329884811ab52d006eb979c14561af2955a
MD5 701f9d298ebe358eb38121ceb9da0b1c
BLAKE2b-256 f6a3a392a3b8fcdae58cc98c389f0a21439d3fef6c7729f22b86e79423a483a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 331.9 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ff65e21107aa9c8fbfff89cc8b292a79c3f17ed45b96a3cc10c9dfadfd781f2b
MD5 ff803d11039479155866c2dfcf7966bf
BLAKE2b-256 330dfd88b0a6e83c9605aba502453833061dfb1cd676071fb4cd2ca7477f2d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 334.9 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5424fc859c1e441f08cf26933ccb9d7b1e9b7d00b4f6c330639cd193bc887923
MD5 52ec04d37f5ca8fc1fbf28863fb26e9d
BLAKE2b-256 616052966ef6dc6163a57b119d1fbce243c93d0256fe1e0aab62e2e9654fc5e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98a80017c25176cfdb0fb646db4dc196fc1ff9a4ddc3419cea9ae04977039825
MD5 32ec0573f3418c25cda598155a125b77
BLAKE2b-256 c07c5625c50c8ae0d6a1dea00487930d6c82af2c1493ea3b5cf701a7afbdb0e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4aa1b9042e4c883b79d4c0e9dff517c58642fa6965c159afc1c20254292169b
MD5 df173703c58be0ad81fe958e71d51365
BLAKE2b-256 a70765d17926b9d27688f1b8c7283e6f005a67a198731acef6d19641b7597451

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16ca7fd1fd0047e8e4ae831ac22679256debd56fe80f9095c2df2434b11821c8
MD5 3b33b774c653d2ad373e837245352a0c
BLAKE2b-256 50e31bd3dd04aadd07f25dfb3eb08420360cbf23cde6c49d6e04dba0ca468dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b382886ab6af6cf6806322a40afc8d465e6eeea03c7ed561a07b84b8d130cef5
MD5 6fe09e130349b60fcda0c8fcee5ecaa5
BLAKE2b-256 f5a845ab8b57fd4eaefe7036c2465aaffde70f16a8781650e4923cb7f4fd3eb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0b8c6abbc9a3cb04cae081948e2ea70d453ffbcf71e8a4903bb9f722bfddfe0
MD5 e99cffc55bdf3e4e3979fcaacde32f0d
BLAKE2b-256 be8f7708f2336a33c2886aa25137899c6307c8970cb111077710ed7176fdaae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c3559a8f1840437af42f7f76a080ad77a4166fe5c5175d835c9ac4b346d50d92
MD5 1144f6763ed29cd69bfc1ce956a86799
BLAKE2b-256 7f274618dd7742629929674dee0bbfe2fe2b32499020a8b7ca226273f5f9b029

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 de96c76fa9430b32f6b725c6328e5d289cff526fe5d815e85aa2f567c8c479d2
MD5 e8528b7d297bdf1900e1707f6dadd5b1
BLAKE2b-256 e41adeb66361b13c3be760879e0cae44b1e1115072657c758cd52c27e8d126ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 329.7 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a78c50106ebcf1216986b4c19d261080741c5401f6cf5f6ab157b0f54b0c99ad
MD5 7132712bcb9024b03cdcd148325b02c4
BLAKE2b-256 cf37c440835400a0f70ef1003f1e926bd65193fde3674f1f919cbe62a872dbd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 332.1 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 791226932709352a0da3226b59da2bf5736903534831b9b69564e2a7c75a5067
MD5 4915406f947ad4e81f806a91fd5e845a
BLAKE2b-256 e2a1ebeb3f9d7e1f2850cdb1ee25be7cf94a8ccaf8868c7d77e89db0758351ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c94d1c8b545c7910490f4cac63ee8c2c8932749059d1016bab56fb2f83d5bb6
MD5 3eb6486c4841478a1d52e2d849f05e96
BLAKE2b-256 c864ef30606258a5b305a89049a35acd680588bcbafccfd60ddf1fa4088831d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e8b213e0ca30443a3cabfaf60f18097ff04a8ef73ce1185774da13578bd0edf
MD5 d622145f7d5506053fcfc71197c20b8b
BLAKE2b-256 32c0d785b840d8f8f52606582e6a381585ede8519b31e2505244d26cfcef6aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3562448a87d353f8b6a876280ad445103256eea6e18b49b30bc02afbe157081
MD5 bb7c598199e99d400e30d36d4afb9527
BLAKE2b-256 ae6aafd9e3d10115ee759ab5f0b5bdee0f297770f72176617cc2fe8ee9637b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed8d857085d867a810bd1b8aa915ffdbfc3896d0c526928188ef6eac160ed26b
MD5 c942d3f1756a746975948af3f4233c19
BLAKE2b-256 a5c8c9144c93b52efa06ec1efcd9111402923182cf13e8af5e499a559a981e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe09515caba384d82db32cf77fe3661b12377ca8d12d3624bef324698f99d67
MD5 419a10fd185635724cde2efb97c08942
BLAKE2b-256 9831d99d267ac56732091c1d7dff61c19ad8dbd6e01f1bb2fe08164f2bc8d262

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cb68f70ec1e5f10869d5ae4387b7aa8b6791b28931930c45d16db4e5366717c
MD5 b6b659fb8cc1be58928187f7ee99d1ce
BLAKE2b-256 781770cf4994319fc3ac7739b5b55f41ec579df8b553e0f796d1ca209260a158

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd26a0b8b518f7c650cff3c09189a836a7858b45d5d6e1abce81d5738d57160f
MD5 fc80fabe3d5e86dfa554f60e6a9df59c
BLAKE2b-256 7bc5db1a42b49000d299cc86dc73ac33ec0af736e4c37291974f2d9fa86e97ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 328.8 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b9f1dedb20f9b6f2ee9a0c39e3cc95e4731e4d0d70a9a67aa17b717f520069a7
MD5 2e3921bd21cde300271d74767039344e
BLAKE2b-256 6fa6c63ba454c838728180b5d2d07cb7f69b05d2eceeff70ec4da0a8a967013f

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: usearch-2.25.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 331.2 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aaf9b050f87ae1cccca5cea72638f8c608a1098577465e0fe2b1b6a5b9da96f3
MD5 45b5953731665e95cda13bf5757c1460
BLAKE2b-256 524587c84862009f8a91bd0bdbe555ede45bbb0bd26dc82e29a785c7a67786ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0029e5cab0248d964afc056ab30cf46ab81fec6dc1f67bbd1ac16efccd1626c0
MD5 5c9bdc6489a3cd89850924408adca7b3
BLAKE2b-256 29929f82fa44da183981b2e1465bae687ce9dfee8065d89e9017ff5ec4efb1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89b8a5df7d009e2203ab76c5308b4dae55b50795131752fdbf756d669547561e
MD5 4b17c43c9069c2859baa105f54a036d6
BLAKE2b-256 ed0de4d474cae924a0aef5f93cf66d3347b1740e6bdbb8aa6442523019800081

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cf807a9f23749ba31dfda91151aa11319191861ad9af4680629526a8de18d3c
MD5 d2f4f8f687f735c56206a499b031877e
BLAKE2b-256 f87d96ee0409142db59304c95a4eb70b72354205ddf82d71186803da1a08ebac

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 173cfc03a90928bb0a454f49b8e21b224fc9c217b564e7801a6a667bd129208f
MD5 a7ae82a83f4f874e238bb7a45a1e1bc2
BLAKE2b-256 02b97a237ebaa2bbd784da1f2acbca2224e1c7fe9cea1ecf13d5f76499f1ada1

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2b0509899d6aec4e9dc6c5f8aad140e468c3ca8938b581740516249875a783c
MD5 386b9e1adf9c1cb8f1f7f72ff7bcc623
BLAKE2b-256 aeae8aabf8d7f01c5af35c22a4a7a85197f6e54d12b234892167724fd6807c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b775841ef811e8d629eccc3c387ea7ba65a1d8850432632089400f8a54762d6
MD5 c19669abb4416115800d5cfde0ae658a
BLAKE2b-256 770d92401d08beb5916183f6e1c21e3257e4e1ce0f30971659d7b45bdbc53566

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for usearch-2.25.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3042e9cb593191bd07679a7424ece9bd08c0fe68c429b543d078349d31dcb457
MD5 3c9f32ee27bbd13032563fc7ddadb565
BLAKE2b-256 631dc28ec18279bc2a27c6b55979ca94fe56ba8f8bba4ab8ab007a9d262517c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for usearch-2.25.2-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