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

Uploaded CPython 3.14tWindows ARM64

usearch-2.25.1-cp314-cp314t-win_amd64.whl (365.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

usearch-2.25.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (503.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

usearch-2.25.1-cp314-cp314t-macosx_10_15_x86_64.whl (515.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

usearch-2.25.1-cp314-cp314t-macosx_10_15_universal2.whl (971.8 kB view details)

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

usearch-2.25.1-cp314-cp314-win_arm64.whl (338.5 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch-2.25.1-cp314-cp314-win_amd64.whl (343.1 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (482.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch-2.25.1-cp314-cp314-macosx_10_15_x86_64.whl (495.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch-2.25.1-cp314-cp314-macosx_10_15_universal2.whl (933.8 kB view details)

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

usearch-2.25.1-cp313-cp313t-win_arm64.whl (340.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

usearch-2.25.1-cp313-cp313t-win_amd64.whl (351.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

usearch-2.25.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (503.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

usearch-2.25.1-cp313-cp313t-macosx_10_13_x86_64.whl (514.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

usearch-2.25.1-cp313-cp313t-macosx_10_13_universal2.whl (971.4 kB view details)

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

usearch-2.25.1-cp313-cp313-win_arm64.whl (329.3 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch-2.25.1-cp313-cp313-win_amd64.whl (333.0 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (484.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch-2.25.1-cp313-cp313-macosx_10_13_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch-2.25.1-cp313-cp313-macosx_10_13_universal2.whl (937.4 kB view details)

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

usearch-2.25.1-cp312-cp312-win_arm64.whl (329.3 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch-2.25.1-cp312-cp312-win_amd64.whl (333.0 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch-2.25.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (484.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch-2.25.1-cp312-cp312-macosx_10_13_x86_64.whl (497.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch-2.25.1-cp312-cp312-macosx_10_13_universal2.whl (937.3 kB view details)

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

usearch-2.25.1-cp311-cp311-win_arm64.whl (326.9 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch-2.25.1-cp311-cp311-win_amd64.whl (330.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (477.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch-2.25.1-cp311-cp311-macosx_10_9_x86_64.whl (490.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch-2.25.1-cp311-cp311-macosx_10_9_universal2.whl (920.9 kB view details)

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

usearch-2.25.1-cp310-cp310-win_arm64.whl (326.3 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch-2.25.1-cp310-cp310-win_amd64.whl (329.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch-2.25.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (476.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch-2.25.1-cp310-cp310-macosx_10_9_x86_64.whl (489.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch-2.25.1-cp310-cp310-macosx_10_9_universal2.whl (918.7 kB view details)

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

File details

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

File metadata

  • Download URL: usearch-2.25.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 349.5 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a85713b60b94d091b9ce2289f950cb5c3f88a31494fceeaa234e1903222bda4e
MD5 be8fd1fdac6987a3d2077419eca29282
BLAKE2b-256 c222ce639fe618a2140bb728859e7dafc63ddda59f7d6244164540c310339ddb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 365.3 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 010154f0b956995daa0c1e1e9d6f6918839455dd90890a7d2f3ec838180bd3b1
MD5 1b4f1d93abad76033d55f0d447ee0980
BLAKE2b-256 cc40dd3c2c3b72274ab0e6d2e81b81c45f3af6ac23161263a5a558672307cfad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06a44a051c3b4ad4eef51c4c187189666806aef36e20d98928ae99fed864a999
MD5 0107918287317eafa7205b2c64baa439
BLAKE2b-256 8a2cc222f1cf30e52f8079a1f5a4637e8d4ad2b6f2268269963a0b902e306121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 337fc50275f0e7fc94c2f5ad17e7936708eb589aa0b495bbb287216f2cf3c23a
MD5 ca08a51b070d021fb7fed9e82f14e6d6
BLAKE2b-256 c21fb33bcd80d0dcad810496fe69243c139cfd7a20e828a5b1f6074f52f17632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d543f8d5adc3408421b513612d3a2c41ef4cf4b6e938d701a73309141b0de3e
MD5 ba9bbb1fff9817e9fc1c4eca9b2a36a5
BLAKE2b-256 8e6157311b55e2fc3d582c5f6f591576cb5e502b26a8433a9dc19162debd713b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19a53c2ea2576a73f65086d015e4993abf4ad05fbb3f1610b45892f0b277e938
MD5 7cebc1f944f13cb4f9d90b619f24fbc4
BLAKE2b-256 6a553f92e7d5341256c3b3d193b90246f59c38ac367b7cfa37fd250800953415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60645aa0c9a855e275de08cc07f0cabc816111a690367752b6ce5ea04b3359ed
MD5 e5a1b930f751e3baba9970543f79b36e
BLAKE2b-256 febeaadae849987d6f51e46f89cd72a7a91e32f05e6e385ff89ea0fd32afc3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 47d6f68ed45c403c7e518d9dc59c53bb86b79568b0a1ca3b1e641bc34bb8d841
MD5 e9e13e219f30640b33821621c72860ce
BLAKE2b-256 e39f868caaa1259c8a0cfaacec71e65f21c4629caf7074d7920217e02f081fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 87b660790083f013cf84a202c67307a644f4ee955206560a727b66805a39ea8b
MD5 c6088edd0daadd41c8a1ba93e8b4153a
BLAKE2b-256 8fecca54323a4b29e2b0413741bce03c96b32eb04a4ad3a5f4d587dcb6c317d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 338.5 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9dee1af99d2fabd9679f59c2ddfabd67011a3eb6f2670c1ab54049926fc44b9b
MD5 df7b9082d468e2e50e91b4ed702dd05d
BLAKE2b-256 f64d17bf22cc89e5bc78f945498c295e5a79a0648d1324eb35271e9ee60c4806

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 343.1 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 10a50a6cd3e3d807d75404592d720e7c16131381c4d240998cbb93d44fab6ab9
MD5 8ea314fd2641d87eef7ecb6424d25010
BLAKE2b-256 31e3420ef85edcdcc8c1202ea7605d2566af73dc0b2bdc6a97f6d5065a12ec96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e807f74757085493892f4531192c8fe488cbecefb8ded02b1131bd3116c515ee
MD5 a4b0dcbcf0d80c01e7dcbee23018cf32
BLAKE2b-256 a8ec6edb3f46a5eaa890db0e1986b1b7cc36a63c702d45882e6c354c90d46ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d13ac710971fee96eda4eeafa9a04121d278c7812f31945d764f781e4e91ccba
MD5 a9028613632416e3510bbda05e2992fd
BLAKE2b-256 9c6ce61f2bfb40faa1595da0b66257a4a1ea6e8cf22d8b370ab24faa972183c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1b65d7b3e43b7b1587d8c40b0fc6ce37ffe2f77885e8bbeb30f2371c5a4fb71
MD5 d4a419acbee8eb20d8b44983df39012e
BLAKE2b-256 395b4920a6a83ef49c43083ea9d8d5eeb22f8fb0e451b5e05ecf01e573248a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a72f03cdabc66582d753e27406ae9590ca1b6adbb3a41d7bf2f8f00ef79400f
MD5 d1801790b1bf85e779a0c4f6f1f1fc24
BLAKE2b-256 88ba1a976a181b520b176d1c89544ab29c88db610e8976d1046f8916d9f14716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3abb7f7e18dba78e17f3dde28918c8a08a44bc3fb8697192248e59cd916a4111
MD5 874144989ce4efd34244ec8fdc3b5925
BLAKE2b-256 19174fa610ec5d9cc4f4e7bcecb03a39c0d8cf71d392c43a6af5ba98df7aa127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 44119067c25b4fbfcdd1552d373cd58b6aaff568eb9c9b8822fe7461b5094b43
MD5 c00eb0aa13d11f5f2caae2c17ad722b1
BLAKE2b-256 e4b6d90b2c255f8fc442410e832c054d587e1587680ca8fef26f2b7255f32e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cc3f78f498e471ca0ee4a8ebec224e159e007c9082b5c63852556a18cedc4e33
MD5 2b63c6f00351bef403e13494d051f5d4
BLAKE2b-256 c88fc4599362b5c315fa995e1f2692921c6095e589914fb460d3c982ccf4b8c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 340.8 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.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c05b00e25492b91a8fced05327c3bfb667118131b7c4a44d363a1a000175fb96
MD5 7f01f04aff6439d6279c10b77037a54c
BLAKE2b-256 7f164de5d3213c902070995f897309d4111abdcd9b342c7c48f0fe23b782f413

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 351.0 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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 78c74e7ff94dddc35f51f9b2d22960273847f30ecb670ac2dc40e2913813d3cf
MD5 75e2322941e1da3fa15949790c7792ac
BLAKE2b-256 5b0c4f010c32319abedb10e567b7f1efbf34cf2a6e79e33e09190dad8dfaae03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87c258ab4a13aa1037b06375883a185c740fc4cb6ca9fb72489188ad2e0c2c00
MD5 feeb4b6bd8c068bdfb4b3207552e62f1
BLAKE2b-256 be047bc4123f2706cb7b302fe760e11b9fc080900a10450769a53149a12b2787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f8bec396e51df858a75d99078a7c36d64bb71618aea28f2c92bb4ba9354e602
MD5 af52ad805277880e0dc040c5ffa7fd2c
BLAKE2b-256 07332ce392a1401aa0457ec7f134e2a26b20a2de0a6cd66b9277f3a7151b4d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d865b3ad4616a07d4f52fa6d10e9466cd972bdd311315b9b5dbb39ab1840fe7d
MD5 b763c339d9ab4108bff16d70f25a686a
BLAKE2b-256 64567b6c8e8327b63493d3ace8ef9b3063312853d9c90d5f7d23906bea0ff4d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6151b104e4c8ad477b5df48aa5a64afe5e5217ba1683e3a452e542bb3dbf6339
MD5 95053e302073a99635d4a848a5d1eba1
BLAKE2b-256 a4fa36e918cdc3ba55c8db43c0ffa36be6c0ecbb49204ed3b2f44fd1cc219be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1efeb8a08d22eb70e8cbf5a821deecaa1d84f4853f11efd62c641baf3d3ff3
MD5 fbf9f1e4147f74c0398f7d134ff0f0c2
BLAKE2b-256 705b6e4ea3f7b1f3506d3f80d5f6ac799adb12187fb79da6e5d4c15646c3ae6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 484348b0f08a3dca9d6320c9574e9fd4b6836d79ecd019815085b36a7a262b6c
MD5 8b934d2e3511be5aa0e2d57424fdc250
BLAKE2b-256 4eb859a44f10bee1e03a203afe81fb922ed345c35a0fe9dc5684142fd2fe7850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 65803e0c2e27aeb0c675916f35ec44401e5d8b071afe752ba3dd975cbdaa8d91
MD5 ad0bc8a02dbc6546f812aae4172a1149
BLAKE2b-256 2485f84d13452e4e9841379b9d9545beb2dd39327632e83005c44cdfa76ebff6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 329.3 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 41f9229335979a5ca76f699e31acc8607a3b6b5dfff503e9713ca0dd9f6c8955
MD5 a25c820d405590d3401a089aa5cf6a18
BLAKE2b-256 3057cbbbf6e1f802ac9c1d1488b4dab5c1e9763bd90dcce8beb38ea2ddb01e99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 333.0 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 996453d890195852fe34492e8938a331576bd66096c984124f728a469224b0f3
MD5 616b26f72850d3d776e185969388aaeb
BLAKE2b-256 8f62c41738d1fade48b15dcc6626f127ab12a109175fd47e9401831a8134fa98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e7179624ce83a568ab3f6ccd5c45fe44478600dcba77ff643193bb0cb1b3fcb
MD5 264f93b7bb20569ca0cd5ece8c5099ea
BLAKE2b-256 9fc698987a9aeb61aab6778777602a17ee273c3697ada0f4025d06d9e158a186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2079bce949faacdd50301763b4eddb5dfa53073b2641cd02470a8b8eb7547a3
MD5 4aa29b33b8dcc1c491eae495361e4c3f
BLAKE2b-256 90d81234c08b2789ca83cad726dd7305ce79ba77b90c800f3a123fbd65ff8445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9f4d599648b53ec26599ea94f72976819facb5a056763cb71dcda15a936a68e
MD5 1dfdc887f6b5e071bdea1cb35f6e6cf2
BLAKE2b-256 2941e54cbcbaba89c74ceb872b46c48f804ce78e4f927af805213b59f0acb7fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 375b853086f367e5c79f15c05295d3719e86cf69a421050c02d4dd32a7b531b0
MD5 4c0e37e950ea1315c646e3db6cea92b5
BLAKE2b-256 06441a80cc6728e477f111173f269bbe5632d6e9e0ca666db673c8eb0734ce3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75ca15fb9a06fc2f5cc43d7cefc74853b33fcc98ebb0b930fc8dab1cbf46b2b
MD5 f7b83cbcd7f0f810ccfec6366d787c22
BLAKE2b-256 1838ad448f4882d1a814d6221fb78a718796f1d4ee5aa4d18c80b618d2326e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d8348ab3302ef22c91395e4049b31e3410dedd0b382e3e12a9f08d1a04be12f
MD5 e36d97a5d092d7789b6f79eac0f8667e
BLAKE2b-256 a0ab39350b8e5cd6add82d72c3b2e2e9acae1c36e1d7ffb47a64abcd84a7c2e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7232c8d8d03494b142626bc9629dada96d9838806f01613e5f011cb5d2ea2e36
MD5 ea1fc1664653e24c22085272b1492684
BLAKE2b-256 902fdd51b4330bfed9b1a5ca0a4af6aa27ee42f80c133d2499f14f330a0452da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 329.3 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d6497100d499bfb13cb7a5468fd4b9423c41628384845d42e4b68ede8c4d1bb9
MD5 fc83d38f537c3f0ff36872ba3bd582f9
BLAKE2b-256 429148cd9fa41965b8064987d5dca760bcd40535587bf7de02ddefcb87428423

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 333.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4dbd34f9547f1a70a4b10606816c923cced5152533fb6e0a0caf33c70d4e0736
MD5 11ce7232694fee3ab84eab7493e3b283
BLAKE2b-256 a0ebb160164abecd4fe53396e191bad4f9d5447684214603239c704f39a14ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eecb41120468b57a825cc569a36f470d90b77858b52f746346254db344d29f7
MD5 548c74ce4bddf2184041c77931d040ff
BLAKE2b-256 bc920c1fbecd5b681843c0f288b6479f3d0eb0c73a0265f45d83fa58918bdf35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f0c5999cdcaceddad49ebc0d25b9d873280efcdeef4132cf3b7a96662875454
MD5 6f903828850950506ebf36e2feb00d2b
BLAKE2b-256 16faf7fe56246721e6ef1a775dd26603e89fd9bb03cea20664c8744485b41d5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64c6d5aa3310aa9add9a3ee3d0277d53c53645df6cb36fed8a35880bebe43a55
MD5 0bf110cf99535f454c97153893e7d3d4
BLAKE2b-256 9f3a2497f35c71ec05f87c009a8eedf57c477044f75d64ad1d8cfe82f9fba09f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83306707df9e8fbe40e99a4fc3565b6a38dba0c47dc71173aac855fae5be70ce
MD5 aa1f85333256924a04749a12302fc861
BLAKE2b-256 ae9663aa21cb594a2ecfe6d00618e6ab5ea906ae5a82878851f4f823d71707d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 045b63c72c253cee7540fc83da7e926d62d471c322c7b7ff55614a526b5efd17
MD5 16ffea25faf836dc362eec812376b9ec
BLAKE2b-256 abc023861bfaae00add882590942fa4d3e4ea24a28be1f62358efb2314b58789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33c9986393adc717e2572073df828f653fca4908950d71ea9ba93b6488616e79
MD5 bf9850cfca974d782c18e6ce44b5b473
BLAKE2b-256 462f6103ef38fa7f7420eb7c3874809f49f844c6e33d8e93fac7f40e317be801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9c61c69258eb708025a3d3ba00d86643dcf487c16db745d413bbea5a97ce5300
MD5 fe57506dcfbd54d4cbdb7e379c04ca1c
BLAKE2b-256 2ebf47e6f782edb880f3980269b7142e30e0d86dd77a5cdeb399456e90ea33d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 326.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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2d5503cba37faf8fec0c995f84dd0c8836280aa94e0d48e788b19abfa21dc31f
MD5 4252b35e048390aa00bee5b2acfe5d38
BLAKE2b-256 7fed8fbaadb78af8730e6ee20cff24f4a84be64160618be0e00e66ad943711f2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 330.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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 008a0c1363a4132390f7d5bfc2227bfbe211237f5b9aa4b98b46185611f716b7
MD5 51733200a87faf0c3faac5649cee9935
BLAKE2b-256 71dcb0481be79fe25f82c287ce01b4c68665b4e56eb8a829c890793515ecd132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1556a06bda0201f8275199dcda1bc376e0047ceb62fdb05d0fefbc201a16f445
MD5 cbd4f0bf2deac33bc91e588b322914d7
BLAKE2b-256 52a71a241b26487320dcf4da83730c635558bbe916133341e252a66a3488f210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6e12b76f7d4c2ca141045b45712075f8be88832542e6c10b78f5d11629892f1
MD5 5567e25a12013d0bc267fbee3513c8e0
BLAKE2b-256 0f867698f592141fce91d7b38f546de0e9e0a09b526d0dc5c32ee66288136acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e275188331d897b70da84c5df138d726665ec59fed910c68eb027fe80fcf0315
MD5 4dc985047afbb7e3670d09042acf4d34
BLAKE2b-256 8492b6ca1594a00d4ea7d4bc76d1870f789effaf877f691ba8e6a51a93678bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 159ba14ddc4164118179a5b27c31decd3db0c1ddeafd137d2065ae2b545694c1
MD5 7b429c7080babe378a066447a89a724c
BLAKE2b-256 3b3caca2c0362d22addb93c0e2fb3006c30334604e8fdb6608418a9473a28eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 508530cec09ef7b503111aeedca9e90bbf6d1f96194556264cfd1fc370b9f4c1
MD5 28a1f4d169f58b8865aa5976e1e2a3e9
BLAKE2b-256 11ac7376aa7a5dc6cf633adeb8d52242805b358da92fe4d25689c2856dffdd8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d5945fa1d9ae6d9bc3f3ecc40705361e2dc1abbb6120498c69e39d5beca14ab
MD5 929411f9615def1b66b61855ff551660
BLAKE2b-256 5db2f07b85ae649fd25d23feb066625ccbe9edfe7f06846ae26e2db7c5f1550c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd6925a05969ca443a7ce6746b0a42264e0e8787227656da2ad46fe4002602f2
MD5 c8b6367c6f7dedc3a50dc79d2e5ebfef
BLAKE2b-256 9ca62bad145ee043147a6fa2edfc65607e95d7d1c08bbbfd71c0ae0e19cabdeb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 326.3 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 32b7aa865c95ec539732a0d2c92b16961e75e2ace0cdbdda291a0f7b82ac5dab
MD5 68380d4a00b6e5e0d2a4f2b9fbf7b564
BLAKE2b-256 6d3b3365258e1ba3edbde933231a95ce745958aaab9cf95fcb66b1216f1d3100

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.25.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 329.6 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e29fad41568c627c5602af6e2ec72c5206be8486cd56120ea37d79e4c5a9b8e
MD5 5511f9e3a9753febc6fee3917d5e30b5
BLAKE2b-256 de9ac9b9f8135870b85c7f12922212924254d69d4115c0b94c25ab9cae0fc80c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 492ce3d98087d96a49ed109493392886a61b4d11173eaf7c516771f2339f29c0
MD5 d9d0669172b38f5a91ee0ffdcd92ae8c
BLAKE2b-256 ec26a0b77fa10759fed8d37017813027b87ca9489d25ffae96d8d1809cac3499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ef55de6978681139a760da8648bf0d938557a2d09faeb27fe8085bc44af64cd
MD5 0c50a804ac921f658478f0b73a7576a6
BLAKE2b-256 7effedcbe34fc0fe6356ea29630db8ee08db4f0a301deeda62e8373188a3d4b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c52b959cb184d5caa702ed18079a7a197af7b2c3288dd742ae743577c549155
MD5 8cf9561738630ad48aba331206a71ef0
BLAKE2b-256 abe5c52aeb0fdcd96ec5d581b572b30a0d7486f20c9c2a42286ee81cf68b08c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb3feafad0ce699324f32e19c10f2be9ec85b5d1933cf4186cac9226a71984a0
MD5 5e739d968b25ad477051bccd11771cd5
BLAKE2b-256 54324566f186c6760dfc4ee99cd2ee32e19178ee9fe6db21e2ab4e1c147eb448

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d332bb9e52ed0a4c5341b2160dda303c782f3257583ade17c656ecb59a1c68
MD5 41aca30f9f9945b47166233cc0bd0af5
BLAKE2b-256 20954ddc91477c62a702b52b9198493aefe6d1c5cceb9ddd617737740b7de761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d14d081dfc5c5276b6e6eaa41e38b6710733cd981b926f30a7caf674c7aaa47
MD5 66dbe22ccbc9f2e3249199d144ab82f7
BLAKE2b-256 7df668438d57f07111ae8b421cdca608939c77d970505539ef006acdab97988e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.25.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 88d8428e44ea26c69d245d4f7d2e1a106b49c17ee8a674dc063194ceb3262742
MD5 5023e15c930997904c89c7618549f692
BLAKE2b-256 a76ce49eeb86da0dee20420300a76e02f2076d1c9ba3220d4f55073e8055ae23

See more details on using hashes here.

Provenance

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