Skip to main content

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.7949415},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/USearch},
version = {2.26.1},
year = {2026},
}

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.26.1-cp314-cp314t-win_arm64.whl (370.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

usearch-2.26.1-cp314-cp314t-win_amd64.whl (385.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

usearch-2.26.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

usearch-2.26.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

usearch-2.26.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp314-cp314t-macosx_11_0_arm64.whl (517.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

usearch-2.26.1-cp314-cp314t-macosx_10_15_x86_64.whl (535.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

usearch-2.26.1-cp314-cp314t-macosx_10_15_universal2.whl (1.0 MB view details)

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

usearch-2.26.1-cp314-cp314-win_arm64.whl (358.0 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch-2.26.1-cp314-cp314-win_amd64.whl (362.0 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch-2.26.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

usearch-2.26.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch-2.26.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp314-cp314-macosx_11_0_arm64.whl (487.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch-2.26.1-cp314-cp314-macosx_10_15_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch-2.26.1-cp314-cp314-macosx_10_15_universal2.whl (948.0 kB view details)

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

usearch-2.26.1-cp313-cp313-win_arm64.whl (347.9 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch-2.26.1-cp313-cp313-win_amd64.whl (351.2 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch-2.26.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

usearch-2.26.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch-2.26.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp313-cp313-macosx_11_0_arm64.whl (491.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch-2.26.1-cp313-cp313-macosx_10_13_x86_64.whl (512.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch-2.26.1-cp313-cp313-macosx_10_13_universal2.whl (956.2 kB view details)

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

usearch-2.26.1-cp312-cp312-win_arm64.whl (348.0 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch-2.26.1-cp312-cp312-win_amd64.whl (351.1 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch-2.26.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

usearch-2.26.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch-2.26.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp312-cp312-macosx_11_0_arm64.whl (491.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch-2.26.1-cp312-cp312-macosx_10_13_x86_64.whl (512.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch-2.26.1-cp312-cp312-macosx_10_13_universal2.whl (956.1 kB view details)

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

usearch-2.26.1-cp311-cp311-win_arm64.whl (346.1 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch-2.26.1-cp311-cp311-win_amd64.whl (348.4 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch-2.26.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

usearch-2.26.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch-2.26.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp311-cp311-macosx_11_0_arm64.whl (482.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch-2.26.1-cp311-cp311-macosx_10_9_x86_64.whl (500.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch-2.26.1-cp311-cp311-macosx_10_9_universal2.whl (934.7 kB view details)

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

usearch-2.26.1-cp310-cp310-win_arm64.whl (345.6 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch-2.26.1-cp310-cp310-win_amd64.whl (347.7 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch-2.26.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

usearch-2.26.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch-2.26.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

usearch-2.26.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

usearch-2.26.1-cp310-cp310-macosx_11_0_arm64.whl (480.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch-2.26.1-cp310-cp310-macosx_10_9_x86_64.whl (499.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch-2.26.1-cp310-cp310-macosx_10_9_universal2.whl (933.7 kB view details)

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

File details

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

File metadata

  • Download URL: usearch-2.26.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 370.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 16bf5b951a4c2af47a25bc0d41cbb81343d428ee4006208bf8146b4c4b4b9d96
MD5 62846b413dd1cdf3068a22b1f73741a4
BLAKE2b-256 7143778f330c958bc7e269db9ef276d0b2815feb6a08db4aba851581d2f014fe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5dabcb2c31edefe6227ae9f761e2e4c359c54600220a02c191b46499bde566bf
MD5 a65973e8ba6787cb488f6a83546f82f9
BLAKE2b-256 1319ff62e8422f58b40dd39b490c9a0e115ee3a72e0460ea9bb92f7342bf0b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adf1da40189952174774d9dde8a77469c9bd4d2bffa9525e7028524a8c31bb35
MD5 5e5f86e1a99982c465c67915f9486476
BLAKE2b-256 03e63877c1376768f909a54ed3b265c77e0628e158a34738802ba16eda9fe204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aac890ee388e6d171be9810913179664405fef55617a25d04fb5a86c7566b4c
MD5 a162e2a42ab09a1c0e4858763bf998ea
BLAKE2b-256 04ca89c7b5d86713da0929d4c6b99ffb1193a644643b10a84704b523f5cb0e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d100fcd9725c78dfe16cb8962ff2ee5e1088d207170f81ba46db3b330604e2bd
MD5 41b54841f82e4df33c5ff24c1f04423e
BLAKE2b-256 ecbe57f52c465332a3031ae31798a8aea1a2515b4f52c3bdd5448ffec49ee1bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f59eaa1fcce08b48e4647d82df7ee030a507e3507224e098ba5d7b9bad0b691
MD5 4d5a3e5272ee20a5c485db74bf949de9
BLAKE2b-256 e299974632262bc9c9b0bc13841125b639b80acc1460eadbc21d1fd6e1a2e754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d02584f0ad4724ad73019c650c7e5c4fc13ad5eb7cc6deb2ad835498cf441c
MD5 d8732dc4d791abcaa3aee622b7776cd1
BLAKE2b-256 a5ded150befbc7f8fb60fffa124ce63c9b135d952202149c5955846aabf4b6ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dfb87c7c90e3d9c7ab9d8608416eb82272ce1ca430340810010f7afe37a692b6
MD5 3ae9d5ef6496692295bac9b2ae51cb81
BLAKE2b-256 4ac973be03853bac797bfee70d6dd2045a47acc3bc65a92436a3b55d434e1eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3079b9e32f4b9aae21432110902acf1eeb36cb7da84d2059d71f9aab60fb45f2
MD5 d250ef1fb8763b29c3e56bb45e1c8118
BLAKE2b-256 6399c7f59753da7f4d1ffc2d6a2fde4563141a0188b39f6f74363af9e730fb56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 358.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 aa96115ecac5fbc1a5a9f215014820c5136207482a654f2f15ae624c8ef453d2
MD5 c71f8466fc5a6a073135acb8694ae730
BLAKE2b-256 76f7edb8189b30857251afaead35e7f77c8bd619eb995b03d25f26b6dd179a64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b4023f4182c78be3ae893fdeaff5b9083cc4d3dedc743f67b3f891c957dc4b05
MD5 1bd48c580c56ef76f6006ce4ff057b7a
BLAKE2b-256 cbc38d4a71027cacc0718fd25984fab5f582aabea694c0d075342e525f4f9dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dacc883fd7b23805740c7c4616cb3e38176dd2c31571775ce29625c867570bc1
MD5 a6f548db9a8c0d845bb31c95a626eae6
BLAKE2b-256 07459194e601261456f8aa264c9fb9353b9625643996cbc3304c1c38e10d1b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d165f5f7ac6fb2726654c4cfa278a7448db54c83cd17ba847de5600590c1f9b9
MD5 1aabb7f6f3e0557e6686f3f75543a033
BLAKE2b-256 41e6c252171fa13efa5a10c764c93a78b531fd518be55dcf5aa23555a58a0705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9bd56c32006101defb194b8121c4ad7180d94b55316c0351836d00751a46a13
MD5 ebab42dec7d58a07d2a72c47f7817934
BLAKE2b-256 4351b961acad89cbc1362348d79717b7b07d45dce3ac3e55f7a75fc8d1ab9198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 299edcc17b962c6eec12c74e7eb74f4a1c475e7d495858008a092db455dd07fb
MD5 169744dd9be51c6ad6e4c9d339efad29
BLAKE2b-256 c1433c19f7ad55f95f73aaf9419ea6ee3df9244a9e13d30fa287de5880f49d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f0a9dd81004f8c7f24cc8edf03a52b2d8f436b27bf3ddce5bca1a9494059da
MD5 020c5f7bf36e54017345fbe5c6d71e7a
BLAKE2b-256 3193c242002de3bd05ff8e8eefde913967518650489b876348fa63da2f65b400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5378bdfa7dc42a4e599b4d5ce39b6b90ca05f34fe04952ba85be0622af9c99ec
MD5 b405e434d2d37eeacae9ccb3da28189c
BLAKE2b-256 1f84a0b79816d62dc908a7480b464dee481372e35784b6c47b59a555935f58ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b110f6d71f3098836736681f5a1cae8e2214713de9610521ec8354df11b2f2ec
MD5 1a63e97d6669dd3a77b29b59b4eb7052
BLAKE2b-256 6d51c69ef76068227cc4ea284a18e77e81e7bca89ed0041a78c25a2254d7492e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 347.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 eec86c9fc03b1a8f825b13754ae302a5bc1a5fb4a35d7b135f2219adc6dd2f30
MD5 72c8b59c7c2fe55ec3ece0d6b0d87787
BLAKE2b-256 1c60b65afc17bee924e977ab8e696ccf9fa8f97b3c13564e6c1a91e076c40232

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 351.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9b062730ec41ca6bbf3084785fe1a17fde7b20c26d9bc255cbacd627dd4db5c
MD5 39e231f2ca052cc12b85c11cb987ade9
BLAKE2b-256 99f2938a400c69e9b1d5694a40f09ced516c048a82021b75c42c3707d7810f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4669889e7a0df5e0d9fc76b4d72e1c36dda923a22531594003265fcd43c2938
MD5 583ebaeedae024391025ffb656d91332
BLAKE2b-256 b86bd2249ef3731b13eadfa1a8ed35c34ac658c67f109ebd7b36fab22f878114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1202cc5243a5e446c6410a2e184ece04304905f179f30b1bc17398c2f48b7c7b
MD5 b7c2b1eef11e845b12047112c26cdc77
BLAKE2b-256 a5c00460d88f2e6ff7d0f9e7f9944c1cc0f0899c0efcfd832e871f94d4f3747d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dc3ec4417cb33c209eda1af4685d86b4fb743139e3e2513ff2c6354a89e5e85
MD5 ec71ebdbb5172a410255cdae5ab52e5c
BLAKE2b-256 aeaf3bedcb685bcc8926654836d06b93a088754c16cbe71f739eab85fcaf3974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8d902d03aeb921c796fcc86e462cc2dafdf3cfbc1ff5c2cfd58033a6d354555
MD5 796eee39420cb00f72f6161d4173d511
BLAKE2b-256 18996ac74d664577d579be01c8ee40813ff559fbd6f5380de7958eea08308c5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e60ef333ddebb28182303db8a8fe33ac3a6049f035e1009d2fc0fc19c56b7778
MD5 e04a73950f0b8463ee54b35f62a012b8
BLAKE2b-256 b672bcaa1c465f6eba2810b71ae5a1c6538d8382ed4ae242103046d5ec5a17e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 62afec1324889367b61eb3fe57bb7d90caca6cec7d3cc6c2777e0661b275c320
MD5 8aecd3dc9f8fcc257f5b2259cfa2c86b
BLAKE2b-256 43b5f753d6ec01a75f41c9e751a1b965716f00fa4edd9784f2668e231bfa1aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8138b903b76d98150b9b5248d825b8350bdc8c428f23843cf7ad115f7eb35fee
MD5 4f27ed3b50e91782a1dd86931961edb5
BLAKE2b-256 46b0d08770b6fb02bce066f2ce22e8721e2e2b2d7f33c6a8fc0c3f7525f91793

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 348.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b158be92122d5c2e3fd0f5deef080451771cdcd12c098ace61d30b37a533b15b
MD5 9ba5d7b5da76eb536fc52fc1e329b5da
BLAKE2b-256 b5bf64d9830eea711dc0b6773ca940af88fe4cb3bef74bdba3ce1d5948b0dace

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 351.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab7694ebb3bf05bcd89105460f17df0cc03b8578412c2f35450a4545755376ad
MD5 897941167f90a56bd2d120fb1c442ad4
BLAKE2b-256 9472995e0b53d63c1ea346b4e3d6901675e62fb7bad17a67aa40ad5a1a51e37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e68acbb9e927c9f2e00b7f10b766e058e6bcb62856e360fb811ee9f86435d30c
MD5 f2041b33cd9ddcac4c27a865db257dd6
BLAKE2b-256 c7d83300e5430a064fdbea5cde119f50a1141df64a5f151c31fa7f414d17d972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9b6b94658b87f8738a1cbadc6702c0110c3a7cbb358cb3bd4df2d9907e8cb04
MD5 f4d398cbb8f6a8f344212021637f3a01
BLAKE2b-256 63dca12b97ad7449ae7696f57364541ce776f86cd4fa6cbc56b712361fb7013e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33bbb13215ceab7d745c1618cbfa57d20d25754416c21f806047473f6e335595
MD5 a76f812ede868a49117a223b3b71ca09
BLAKE2b-256 3cd87a35ec9f2b5c56419c024bea797441eacb46fd82362120eff6a5116255e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7562b5c8f3abd297baf9fdab32f29ed3e968146db5491b544c9834a98b82d29
MD5 9e1e63e18e568f5b7f5cfa1fb7681c98
BLAKE2b-256 d073632174d6de53a79a5bf4091842207a4404b5edbd9e09a267bb2f9daf375b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 171b752118e84f5a77e5479b0e8775b82009276d1fc7711beedc4b92952526e9
MD5 cc523234b53853e4a5caedb2fd1d6ace
BLAKE2b-256 d4087c8f0b87092f77afe9018d9cccee8a1b1502bdf22aeebfe1761d4c54d935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 813e2ef1069dcf2ff37227eb85968aac2bd6047cc876fcc7bcf4f7fbbd34a223
MD5 b65f68238ceb11f381832699b51e3023
BLAKE2b-256 e169edfefed2aece1f9d00d27dbec15d14738d209e80607d0baf215ed8c7f131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f06a58c87f26dbc30076ef55d2cb44b3ef9c4bac79b8e252bc966e0d10023f2e
MD5 1ab224d993739703ef9ec09bb179b364
BLAKE2b-256 c447a105da8ad3e88f51751f92641a18dd3fd002db359b5d91847e01ad91cfbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 346.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 52e3f4203c59a4a8ef3f6b312425a578859f7a99006fb113f6cc875654480aca
MD5 4a01f387bec76003d41e6126346e7de7
BLAKE2b-256 73d3aa55aa1a0b8ccbf70396569c0cd0ae6cac2f80ebfeb28d3f6e9d0fa4c58c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 348.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ff22a643b9d43dcc1160d952390c872411f396b9d7b9bd7729245a1c9854f78
MD5 a53a98bf8d51e185175b45f3e8b1f04c
BLAKE2b-256 f71cd84d86fc7056a68c32066163c8789b1ffa432aa6eb60cd6327a12b3f85b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 201f128ac24a4e0ad18a345e9746d103f14545df76fa87ca6e95e8f770b72d75
MD5 0f4f697f4d29d8f8cbf8c40798e3f55f
BLAKE2b-256 8a3ee531ebb316bf7d396605c64c9b4320ce7078f66018b94f368e5da8938751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6386030517450d04c2c688141e39477118769f5178a7ab5501ac8bd0537834b
MD5 c279aaf2a4365d3a407db1e0ce81fb58
BLAKE2b-256 dc82086f4394ca1b09f0104b047023c116e9fe9e79f9931b041182e9bb44a3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a61004f9c8d8b2819acffdf44418242d910a83ec6c6802a521f895553b2821f3
MD5 6abb7020789cccf27d8d8286e3c9c386
BLAKE2b-256 8b8aa1f6df191cf6ffca42cbd380b74177036b400eadf22c81562102d24fffbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cff7f9b9c459bb0b88b54a8fd025bb210cbb3f04755b9c0d58a3135ba54150a7
MD5 ffee6bf4dffc379c3ebd7447b7a18888
BLAKE2b-256 c08ba79289e6ab6a11e43555c5009c817b43498812c16b0a985108c69b43177d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec710df4f9c96ced03235c804f72c43993941206f4059798666988af42357ede
MD5 5707b0747eba9bbf113d98418a9a28cc
BLAKE2b-256 e1e99cf8ebb6d2069c0f35cd3328eca938979e41b7a59b0b4e2c79f35ab6fb1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b85e99f913be08c816bf1b27b8cf01d36b9fe477c9d3a3072c410eabb615a03c
MD5 20c464d582af1c55a70ac22a3008ea4c
BLAKE2b-256 bbdb53675c85c7e955b19d3897910762728f25a5c0546a1a887a80514da5b47d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d7422ad328501d2158cec4e44309163540940a9c73fa9b3332b4ffff92139a8f
MD5 0b7a053f56addb10c9cc38f3881e9e25
BLAKE2b-256 d0242c62e45b6b4e2d6454fbabec99e0bd900ab83f3f50953843e2a3b198b171

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 345.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 943bf1a09c9f14648dd9f9fbb457352cf9e8916e5fce7c9159b2ea33d7a279ba
MD5 5236053babfac1da2553e356bc311849
BLAKE2b-256 559c88c7ee5bd6f6bf67a03cfb0d798acaf3dddbdcfbf4d387ed2278ce996922

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 347.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for usearch-2.26.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06b4dc398610b7eeac5490d3a6f97659b73873d704b2847b897ec5826e51dbf6
MD5 ba3e8e61d8df91fc800d0385ca33ca16
BLAKE2b-256 46979d53200ce78f38d6a804f1c2842d8e398236d8e5248b3a3037867bbf1bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18265f2dff7d2689268c546efdc50d1e246a8b608f128d301a5c67b29ffd3d84
MD5 d88a21b285fa12b9418fa643a1570119
BLAKE2b-256 a4d52746fd043ebf8597bfb058322577144827cd0a634ddb5874dfdf10d27eed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5c10440f7e3d266088bb790dc68d5f2b908d3ae9bfdeeb68c737e99e997a5c8
MD5 bca3d6c0aa2f823e14ddb36a0cbfc8ea
BLAKE2b-256 3d3c7bc785c729a91626e712c5750d3bba9d49f25a532819ab0dbc2fc88c0754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c79d97bc3ee05c03f6d1873936ad7f95cceba18ce9d86be8b84fd1f8539bb220
MD5 1b357082cf9b89164fe23f247feb4d6c
BLAKE2b-256 010dd0a2320a32f76b45fd4e312ded683f83697f54078a618a18dc3b55502ed9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11541ecdc1f12f7650af6d4154a9836ecde89814295df4feaca181a4c8615634
MD5 d3673709dfbe5679e87ef06d55a357e3
BLAKE2b-256 48714649c6d7c6c2e41cac63e605f879d43f8b1b86f7181a546aa5b4f942fe35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d8eef7b0581a8470069ae653687e4dfc23858cd51ce98f5fa4a8e58480b4fb
MD5 a539015235b3a3c8227fec82e5b0635b
BLAKE2b-256 7abb0108b427405b059b30370dee6e0cc2e79f27b1fed4056b346d45bc479977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 748a8ff51edfcbd74f2e8d955657806cd4335f99bab6ae64486235d4b6888eb3
MD5 8f54d964495c333ae54e988e21493dbd
BLAKE2b-256 6f42d77ff93e0ff17c0f34240069f12a7cf12ed0bd49cdfe0da40295c494201a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ee70948f0691ddd8808895bf2cd21e113fe7a5962e4d767f92119b86823803a3
MD5 be817d7fc3cb225c5806a9ff4c01f5c3
BLAKE2b-256 e4d93359ec8e501709699bef0ce31b2cc4951880c3f69d031df17775c37f995e

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

2.26.1 This release

54 files

2.26.0

54 files

2.25.3

63 files

2.25.2

63 files

2.25.1

63 files

2.25.0

63 files

2.23.0

80 files

2.21.0

62 files

2.20.9

62 files

2.20.8

62 files

2.20.7

62 files

2.20.6

62 files

2.20.5

62 files

2.20.4

62 files

2.20.3

62 files

2.20.2

62 files

2.20.1

62 files

2.20.0

62 files

2.19.23

62 files

2.19.22

62 files

2.19.21

62 files

2.19.20

62 files

2.19.19

62 files

2.19.18

62 files

2.19.17

62 files

2.19.14

62 files

2.19.11

62 files

2.19.10

62 files

2.19.9

62 files

2.19.8

62 files

2.19.6

62 files

2.19.5

62 files

2.19.4

62 files

2.19.3

62 files

2.19.2

62 files

2.19.1

62 files

2.19.0

62 files

2.18.0

62 files

2.17.10

68 files

2.17.9

68 files

2.17.8

59 files

2.17.7

59 files

2.17.6

59 files

2.17.5

59 files

2.17.4

59 files

2.17.3

59 files

2.16.9

59 files

2.16.8

59 files

2.16.6

59 files

2.16.5

59 files

2.16.4

59 files

2.16.3

50 files

2.16.2

50 files

2.16.1

50 files

2.16.0

50 files

2.15.3

50 files

2.15.2

50 files

2.15.1

50 files

2.15.0

50 files

2.14.0

50 files

2.13.5

50 files

2.13.4

50 files

2.13.3

50 files

2.13.2

50 files

2.13.1

50 files

2.13.0

50 files

2.12.0

50 files

2.11.7

50 files

2.11.6

50 files

2.11.5

50 files

2.11.3

50 files

2.11.2

50 files

2.11.1

50 files

2.11.0

50 files

2.10.5

50 files

2.10.4

50 files

2.10.3

50 files

2.10.2

50 files

2.10.1

50 files

2.10.0

50 files

2.9.2

34 files

2.9.1

34 files

2.9.0

34 files

2.8.15

28 files

2.8.14

28 files

2.8.13

28 files

2.8.12

28 files

2.8.11

28 files

2.8.10

28 files

2.8.9

28 files

2.8.8

28 files

2.8.7

28 files

2.8.6

28 files

2.8.4

28 files

2.8.3

28 files

2.8.2

28 files

2.8.1

28 files

2.8.0

28 files

2.7.8

15 files

2.7.3

28 files

2.7.1

28 files

2.6.1

28 files

2.6.0

28 files

2.5.1

28 files

2.5.0

28 files

2.4.1

28 files

2.4.0

28 files

2.3.2

28 files

2.3.1

28 files

2.3.0

28 files

2.2.1

28 files

2.2.0

28 files

2.1.3

28 files

2.1.2

28 files

2.1.1

28 files

2.1.0

28 files

2.0.2

28 files

2.0.1

28 files

1.3.0

28 files

1.2.2

28 files

1.1.1

28 files

1.1.0

28 files

1.0.0

28 files

0.22.3

28 files

0.22.2

28 files

0.22.0

28 files

0.21.0

28 files

0.20.0

28 files

0.19.3

28 files

0.19.2

28 files

0.19.1

28 files

0.19.0

28 files

0.18.8

28 files

0.14.0

32 files

0.13.0

32 files

0.12.2

32 files

0.11.1

26 files

0.10.0

26 files

0.9.7

26 files

0.5.1

38 files

0.5.0

38 files

0.4.0

38 files

0.3.0

38 files

0.2.4

38 files

0.2.3

26 files

0.2.1

26 files

0.2.0

26 files

0.1.10

26 files

0.1.9

26 files

0.1.8

6 files

0.1.7

26 files

0.1.6

26 files

0.1.5

26 files

0.1.4

26 files

0.1.1

26 files

0.1.0

26 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page