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.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/USearch},
version = {2.26.0},
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.0-cp314-cp314t-win_arm64.whl (360.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

usearch-2.26.0-cp314-cp314t-win_amd64.whl (377.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp314-cp314t-macosx_11_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

usearch-2.26.0-cp314-cp314t-macosx_10_15_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

usearch-2.26.0-cp314-cp314t-macosx_10_15_universal2.whl (950.1 kB view details)

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

usearch-2.26.0-cp314-cp314-win_arm64.whl (348.8 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch-2.26.0-cp314-cp314-win_amd64.whl (353.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp314-cp314-macosx_11_0_arm64.whl (469.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch-2.26.0-cp314-cp314-macosx_10_15_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch-2.26.0-cp314-cp314-macosx_10_15_universal2.whl (910.9 kB view details)

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

usearch-2.26.0-cp313-cp313-win_arm64.whl (339.8 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch-2.26.0-cp313-cp313-win_amd64.whl (343.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp313-cp313-macosx_11_0_arm64.whl (471.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch-2.26.0-cp313-cp313-macosx_10_13_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch-2.26.0-cp313-cp313-macosx_10_13_universal2.whl (915.0 kB view details)

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

usearch-2.26.0-cp312-cp312-win_arm64.whl (339.7 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch-2.26.0-cp312-cp312-win_amd64.whl (343.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp312-cp312-macosx_11_0_arm64.whl (471.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch-2.26.0-cp312-cp312-macosx_10_13_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch-2.26.0-cp312-cp312-macosx_10_13_universal2.whl (914.8 kB view details)

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

usearch-2.26.0-cp311-cp311-win_arm64.whl (337.4 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch-2.26.0-cp311-cp311-win_amd64.whl (340.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp311-cp311-macosx_11_0_arm64.whl (463.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch-2.26.0-cp311-cp311-macosx_10_9_x86_64.whl (482.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch-2.26.0-cp311-cp311-macosx_10_9_universal2.whl (898.3 kB view details)

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

usearch-2.26.0-cp310-cp310-win_arm64.whl (336.5 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch-2.26.0-cp310-cp310-win_amd64.whl (339.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch-2.26.0-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.26.0-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.26.0-cp310-cp310-macosx_11_0_arm64.whl (461.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch-2.26.0-cp310-cp310-macosx_10_9_x86_64.whl (480.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch-2.26.0-cp310-cp310-macosx_10_9_universal2.whl (895.7 kB view details)

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

File details

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

File metadata

  • Download URL: usearch-2.26.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 360.2 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.26.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3e6c8df9c418102658d7e6e692e1d1f6d14b7d61f514c665bceb5eee3a4a0e83
MD5 9041243617a7df4c5fe02fc47bec7c50
BLAKE2b-256 c315c8ee7fec7d9c55405b4ade046e04c82fc7991113c03f563255ac6e723661

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 377.9 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.26.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2b626aaefe38e860833d68006e0de655a7ec19c651d2a57182e9c103b08fe0ac
MD5 9782667aa953d8dedbfad3ffe35720b2
BLAKE2b-256 9de5a6150a0e39ff6fa758309f7a6ca676f323e9e72b2c4703a399b47a6ebb88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9ea4927eee40dd733ed4d52aa1b3e30303b82c73b3d22d7762d294af07ed9d6
MD5 ab5d5a2735540fcf6a0075fb1e0b0586
BLAKE2b-256 2e8968b45d437ed2220531cf35202258d88da74b7070a9a5a9f3d0a8b150ae90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24637b4db4b87f5edebe4ecbcabab842c41661248f241314b822eab0009b9933
MD5 d360c7d9c53c6ffa0f998cc7ae5a45ec
BLAKE2b-256 f3ac35b0510ac5eb484895ff3e8f8348638e896ea813fd65ad418e0ca6a96779

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cde6016e2c874d968441e3c5fc9e348061324e4e136ad5f2c1e0607dffe7c964
MD5 758816f6ef73245f4339fa0f4c14cc39
BLAKE2b-256 4ff8b2c75a343e5ac9957dda2818f867199742a35230a1f9db869285b2081532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a30d19ea2110fd1f099e5510c30d1ad614782ce67d7f678d1d31bbf06f7aa0c
MD5 fb009690d39d30bdebb4a8f18176f40d
BLAKE2b-256 05bac23d48fcd8a8f7fd9808565cf031c1182b1abe265dae76c1358b8cf8c6fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9ba2d3c255eba41ac6ba99ed86821357bb47acb8b0ee793f6b6ff021426f6c5
MD5 7e518bfab4b0301068c85e11614b2c65
BLAKE2b-256 0f39ddcf460895643b81b3ae605095381b7a17df2e8340b602fad200e2463fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e49dfeb351c030403ba172d3b8ea383b3dd6804b4dbfa9079e2c22314251a7d
MD5 b870e5f89cbe0b568d6bace112428d05
BLAKE2b-256 42ffc0f01f44a0ebad506c4c3680f73d91922916aa1d8430d8037e86aa3d963e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0b0369dea7e6a03205b1e93b2fc0903cc006f1159edaaec5a17970efd8d7fbce
MD5 7be95b8fdb3d4369bd077c6327100b86
BLAKE2b-256 42cbb719c3c85edd5bb2aa26c7f658cbc5f563806c78dbbb1c9f5cc562790238

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 348.8 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.26.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f03bb61519155adb7b4fbcc49c107db2e5930985fa7e7e87c0ce680ebbe84823
MD5 dbbe2f8c8cae18e35b75285b7de50b90
BLAKE2b-256 ea7e7553066ddc26c077995e238a6720a3a46cc112ed15ec7f3461bf4b330240

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 353.9 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.26.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5a8d5fdd8a2f3e05cb19020edd9012c5c6463965e057b77666891a726b0f3c4
MD5 1268f298d660723fe83d045ed15b3c95
BLAKE2b-256 5b6731a136a0f4a76e040380cff403b8cf41c316c07d45a122c8e92f59343335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00a745edc60a3a50020064ac6d5f338b1dba4244a91f2301a051951c1461944e
MD5 138564b7895b2ea3620179249d83859c
BLAKE2b-256 57f82767465000bd692a88eccb2f16c744859e1d469868a3afc9819665caec64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c952cf279b2f35fdf6d7b3e1ff0c3c804f4dd32055829c4c8a7f37d41b2bce0
MD5 6fd6ba310c05c374783f3354c23ba844
BLAKE2b-256 51a04ad54d617d1c707243e5342fe82d12b469f317faa2a008acb769f2ade8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55c16f8aaaeade920d592df9edd632f00bd871bcfc2a6ccca7812c3cb3606e45
MD5 66e0ed995c4dfa60e3848fa2c5cda42b
BLAKE2b-256 b999d48d3ccad898aaff259018caf072b0ad49b67220c968b8eb5e6d96b131a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b310e3730282f695b8f65d895c47335e7656162032fe39a60d900ac499d5de7b
MD5 1cf54bfddb8f921a297ba8893bed600f
BLAKE2b-256 1dd5743502c9367c7f596c6b40f2deaf4a9481dce3d064bb6b49cc45ce7aa615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33d612b0261fc8149ab99f3068b06854af2540ace820f89ca8de36a250db7c6c
MD5 26c641254c13a1c1be4c1791f1888228
BLAKE2b-256 6d0b89da3ef65461544902c317346b5ab4eb0b0ab3eba76aadb65c90c6606bad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e29ddff74f5369598d76526b6ab73e78bf3b93ebaa92d69702b1f222716d33dd
MD5 8f92e30f46c752426695a6a35f71b57d
BLAKE2b-256 b920c14bb356dd30f7b9273c5a6d0ad2ff65c6a88e59b3ed9b24827013f4bff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 16f62e572d16ec97abe963d4750ad7ebc724351d0af84b8ae082a41df536f5a7
MD5 b2880e113cdef6a606cc9746142d1b9a
BLAKE2b-256 7aeb5be51104e14bf653ac2efe8115f392e090919fb60b25d3734bde0eb1a4fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 339.8 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.26.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c53824665f6f883e79b0bdbc95f5c3b1bbc1024b13a37930304c90199cb1974f
MD5 aae130f50566bfab70fcbf2bc5499155
BLAKE2b-256 d93438c53bef4e5f905701f0c57adc8f36267ae5defb187e0558e0e7cc6752e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 343.3 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.26.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed17d46f05ef90b681621efefc28221188c2a47d58c99b229f7144aee15a158a
MD5 4404df5921ac7aaedd586797c9b2ca0e
BLAKE2b-256 26fc7cd8a7a208612922f0eda754d6cf64095580cc9a78a23f8d7d1034f65d16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f84fc0b9832332d48d3e414db2dc5f2aaaef76afaf19f23c91a43295ca3295c7
MD5 4e51b704c219d9a704cc2f2176d3d66b
BLAKE2b-256 426d15b80a28ee6362855ff8469fe9684b7f8d0c12d53f3ea9ca5fcdcf7f7d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc884c594559f2aaf38c86eb37eafe0b835fc5aaca999825fa78b3383b3c54af
MD5 f689950b73f4fa9588206ca194d9d319
BLAKE2b-256 44db0ca20f17d871b6da21296bad0953fbb5b9d54ca97566b07d1608fc8b41f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ed96a7477045f12149d667da49ca0ca60fb16e23c8aaea42b297da1bf62a30e
MD5 fb9c2e442cd8ced42b13c4baf73614ba
BLAKE2b-256 1a33a93647ad4602306fb9cc0104372bc0f4dce080666d2d1ffd27496ee7f72f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ceebadd98c12f44a24ca896c7fd66db46cd213c31660f8a1040dd727eacb6ba
MD5 6356b66d171e17a74837f018a6c3a639
BLAKE2b-256 260e93f60d8a3c42ed149fdd2c89507f77b1d184dcbcbd040cd2e0be671082fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b926de6750ccde78022621e4c015a08e59a3a30e9ce1cf8f0625a9946e91c97
MD5 858a9e748e3cdb71b4200a00b6842488
BLAKE2b-256 c105f3ebd249d9e0af6dfaf8a23a57beff6283dfa68f56c10ca694a190cff0ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5a065317f40cfc4e6cd5c380a6fc638dc16db31bb65c60b1c9c8286e8f6734a9
MD5 d5ca6f6cca4473338f3741700689a752
BLAKE2b-256 cac817e5ff28f46e81ed501f6b13f7c8a4d72cc986321c3a31930265f050e503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9d0d90aedb89ea7fd280357f7bc921361e9a36cdfebe3298704ed055d3fc3f83
MD5 0eb97f0ef8749601b9be67afc02cc6d2
BLAKE2b-256 bf63c5dd848491d3b81b1099152e6e764ee6c52a802cf3cb13599c27ca2510bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 339.7 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.26.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e6d96c6fda61e774c0bcc8c8782c2705b9a14c28596e2bc279adb12895836297
MD5 d4eb7d3db27ad11c535ab53f2fe3f735
BLAKE2b-256 d62c7295ae3aec0a0e5894020fdca24c070b5929116d8271e7dd3bf72e5b438b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.4 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.26.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ec38c038546f076475fe3ac32d7022da37a56203152fb8f42790d25ae5091d9
MD5 ee370c0733c17ff840fd7c9e7e0728bf
BLAKE2b-256 381db79db5f321e094fd0d48c609daa9d49dc7c316a28f3885f5b3513549b347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7bd1ba72ccee5df480cf1f731b211b7b0261164ea6a160a2036b40ab47c356b
MD5 e82655f4e599d4316d34ad660c8fad3a
BLAKE2b-256 0a480ef94586fff3f818b0991f8095944b44c5bfab112bc7cfa3da108058cac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1aa9da78ebc0270b2b3479dd9bce7ee2b68b791de86d8523826b76b28f4e1142
MD5 c73ea8878b8415acb21451221d441245
BLAKE2b-256 6a822f8483f1780a2e7ff64228a888b0bc31a0e0920e8a89cdebd94999b2001a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20ade914b8a9e7a870784681030b5d4999f4ee100813825173f4db1bf4d49147
MD5 415901cd4004208e554bb42bec3c1594
BLAKE2b-256 2dba70069b0701216c88fdf05c8f23e54e6902b4cc40bed975fe87d517ad42c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b90ba737b41e1e736c59315ed8e72c0274e6bfdc25407bcf3b3661f3392a3eae
MD5 67b3552470316df74045dd62579209e0
BLAKE2b-256 1797a02d2998f36383c8b9498699d53cb86bc43113f273747c7247e8afdfc3e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f678c9e01abc7240f8d59527e3f30034335816f0bed01b6b24041f20b55f84d0
MD5 52cb620835f33115d2597227e822dd09
BLAKE2b-256 4eaecb706db68cc1f361d651c6729ecfedbc8924a520a79f9a7f01a255cd3e1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 391410d67e3f3ccad4e95a583bb0b8b65b5c5384a9789997da635f3cf3cc0c5a
MD5 da6f8aa143e21ff35151693420850e66
BLAKE2b-256 d252a366ed5d3667f6f0f935b087dc7a128ad201cab0806a4bd7d033bfe96451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e8bf0386033ba44b63c27e4af7b58643acd8046e2dbdedead3be45469da7d6f9
MD5 664eaa26c34312c41c8489f79c552d82
BLAKE2b-256 f03a20e9d41fcec585d54467b5771286fc24bf6209fc2e50ebf6316857352a80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 337.4 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.26.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6721b0bb4b452ddadee3d871675016cbacefe7faebdfd5e603a92d1a2ec64994
MD5 cb54b58f5673859cfae6d67a1fcd6dde
BLAKE2b-256 d2e8265e110ba78d0451fcc4a1de3ad8bdcc73d95528ed72050b2f966ed6a2ab

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for usearch-2.26.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf12a5626d02af9295027365bde81ceacd689190257530584d90b4c2c63635c1
MD5 76f41e02552bf390887b1681994ad702
BLAKE2b-256 13cd7f00c793bb47d3e6031edb69c4426dcb1112725bb459f677dcca23045103

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 746e74284edfd53cacf721423c403f43f5a0dba607e2d98ec0df2467c4b8f3d7
MD5 0a0e6a1b5a0d4470139cfda6e65e1881
BLAKE2b-256 c0ca7114bb9456a86d0c4db59d9a3ad16c7ab8fbf6c5589b29c35ec5f22e832b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30ba6fcd5e30bb0679f1be81f902bf62213a965ee9b3bd82faec3a21b2a7cb02
MD5 cfeb6b2449c1ef4e74a4fd3d391a2f01
BLAKE2b-256 3b6f339383261c2c59b70816ad4ca73967049871745be6e308192017cee8fcc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5aece0331577a6da46b5a19772bcc884e3aae66650dd800e2518154e3438cae8
MD5 c2ba30a50f0a220c8fb34ac04008abcb
BLAKE2b-256 37b50cd2035eb7bc211a9d691e83a106d9fc342a9922f5e00f44dac2c23be3e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ffa3a68708005adc64f9b639263ab15bd896e7f82256f218855ab9c843691f1
MD5 ec8e24790b4a8f22b607cfb343a711a2
BLAKE2b-256 13d081652399b5b96e36318a5d888f82fb7cc95da650aa98d0fee6c9741f31ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8d345d28db57686f2a3433e54cfeafcccd4f7ab584873f6e0f8e9f67af7a548
MD5 1279b99e65c8ef597fac9d89305c7d8a
BLAKE2b-256 4ffb21c49123a665d0e1f4f6e05e349c27e7c06a57706a02d95e32c94c214807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82190ac43e9273e80909a1059adda70b7a44c3f08adaf2b0ac6ad9aea279f75e
MD5 0cf9c11fa99d2ae8ba37df36aa3e07b9
BLAKE2b-256 10617505ec7ed98d5a12ee262e5d2a6a55a5b6077902d37957df8292fa921392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 64c27945ddd3ae91348a6e9218aee3e49e796e06f6f99300a0b520c85937784b
MD5 4fda8c3282587b92d13b8c451abf2c80
BLAKE2b-256 36598ff9283e2f6806340e06514d200078f7ba785fa8b5b2c05358376cd0951c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 336.5 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.26.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cd2bad7d92b473802a409b1a7895c61b80f34a12de618a5c31692d9cb031c5cb
MD5 afe74cda7a0e7c00d4d4ee1fe91b5cc2
BLAKE2b-256 bf87f3459f7afda9923b1a03c5c8a41c018cf63c1e2aa3100495dc28abfbc0d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: usearch-2.26.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 339.3 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.26.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbd3b718f7d887b847d917c02ef1fadbd4c56bcc31c742d433651b429e7a37e9
MD5 3a9bef9b7cb83ee3ccb5efdaaf2d9696
BLAKE2b-256 1274a4f1c6ace2d1625f61d97829a09a6c990b15859676d5917fc0fd85917dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a26e9fa49b1a542e7bb61d8825818fdc913a7f99a546b22a1876f7e58e0ca0a
MD5 6599f88db3904aae277e3c94adb67852
BLAKE2b-256 cd5028397266e73abdc37c21507370ebebf14290da5b47918c8961ea0d5d1329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b56136af192abf02149974e0388ce42e9338d8ca9eb8bb7ae6751b3d0dc095a5
MD5 3efdcf922bd6c00c90f1907b884cbe43
BLAKE2b-256 485f4d57afa2d127e41f860c14d3619b7b55a8f0778122a8800ed0d0b69fe2e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d439c3e3f98fe4b37b02920017fde35875b5f704e909074abcf2b2e8a1aa72dd
MD5 c801ceea4afbf1e0b2572c0f12b4595d
BLAKE2b-256 b9924d1ab9f3afaa5f5511872cfc6f73eed052534c3df5af994ed427e2c003f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3bdf93e779a45fea436ee677bfec8bcb5d9d694d47ea943c44064457a874746
MD5 a92f7795ae9f7da3b9f1291a2e9958ab
BLAKE2b-256 481b3b2c57bc6b536d4b8df7b6976147c02e1f46ce4c4fd579698651517a11dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bdddfbccbcb194c3ad5def0bf7e841eb0d5e61572e3d74f279b0e4763d492a7
MD5 e54bf53e09e4d369b4af5dd61ab7ce8b
BLAKE2b-256 297fbdb57517a203983b5d70ba5f5d476fbb2d3f80bd31fdd62171c0ca12b961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da3c384b6e74f3a5e84cb293630e78b2ca941948a22273ed58dac88c706188f8
MD5 87c4d7d7dfbec408539dfad68ee3f269
BLAKE2b-256 a079a64e10cbfccbbaade88595b878c55adbfd9d6c731b8ee7294dfd317b4019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for usearch-2.26.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47e70f378a279afc312c9130c827d59a1c7f46ba3e0221e1e094eb01e517bcee
MD5 3bee3b850c32b189ff98166726d7beea
BLAKE2b-256 76352972d1718e4c09e5d5e92848beec49687fb437fcf80363086c94aaa62407

See more details on using hashes here.

Provenance

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

Supported by

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