Skip to main content

Smaller & Faster Single-File Vector Search Engine from Unum (ISCC Foundation Fork)

Project description

USearch

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


Discord     LinkedIn     Twitter     Blog     GitHub

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


ISCC Foundation Fork -- This is a maintained fork of USearch by the ISCC Foundation, published on PyPI as usearch-iscc. It includes bug fixes and patches not yet available upstream. The Python import name remains usearch for compatibility. Install with: pip install usearch-iscc


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', 'f16', '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 SimSIMD. 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, f16_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, it's recommended to use half-precision floating-point numbers on modern hardware. 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

# Define the dimension as 2 for latitude and longitude
ndim = 2

# Signature for the custom metric
signature = types.float32(
    types.CPointer(types.float32),
    types.CPointer(types.float32))

# WGS-84 ellipsoid parameters
a = 6378137.0  # major axis in meters
f = 1 / 298.257223563  # flattening
b = (1 - f) * a  # minor axis

def vincenty_distance(a_ptr, b_ptr):
    a_array = carray(a_ptr, ndim)
    b_array = carray(b_ptr, ndim)
    lat1, lon1, lat2, lon2 = a_array[0], a_array[1], b_array[0], b_array[1]
    L, U1, U2 = lon2 - lon1, math.atan((1 - f) * math.tan(lat1)), math.atan((1 - f) * math.tan(lat2))
    sinU1, cosU1, sinU2, cosU2 = math.sin(U1), math.cos(U1), math.sin(U2), math.cos(U2)
    lambda_, iterLimit = L, 100
    while iterLimit > 0:
        iterLimit -= 1
        sinLambda, cosLambda = math.sin(lambda_), math.cos(lambda_)
        sinSigma = math.sqrt((cosU2 * sinLambda) ** 2 + (cosU1 * sinU2 - sinU1 * cosU2 * cosLambda) ** 2)
        if sinSigma == 0: return 0.0  # Co-incident points
        cosSigma, sigma = sinU1 * sinU2 + cosU1 * cosU2 * cosLambda, math.atan2(sinSigma, cosSigma)
        sinAlpha, cos2Alpha = cosU1 * cosU2 * sinLambda / sinSigma, 1 - (cosU1 * cosU2 * sinLambda / sinSigma) ** 2
        cos2SigmaM = cosSigma - 2 * sinU1 * sinU2 / cos2Alpha if not math.isnan(cosSigma - 2 * sinU1 * sinU2 / cos2Alpha) else 0  # Equatorial line
        C = f / 16 * cos2Alpha * (4 + f * (4 - 3 * cos2Alpha))
        lambda_, lambdaP = L + (1 - C) * f * (sinAlpha * (sigma + C * sinSigma * (cos2SigmaM + C * cosSigma * (-1 + 2 * cos2SigmaM ** 2)))), lambda_
        if abs(lambda_ - lambdaP) <= 1e-12: break
    if iterLimit == 0: return float('nan')  # formula failed to converge
    u2 = cos2Alpha * (a ** 2 - b ** 2) / (b ** 2)
    A = 1 + u2 / 16384 * (4096 + u2 * (-768 + u2 * (320 - 175 * u2)))
    B = u2 / 1024 * (256 + u2 * (-128 + u2 * (74 - 47 * u2)))
    deltaSigma = B * sinSigma * (cos2SigmaM + B / 4 * (cosSigma * (-1 + 2 * cos2SigmaM ** 2) - B / 6 * cos2SigmaM * (-3 + 4 * sinSigma ** 2) * (-3 + 4 * cos2SigmaM ** 2)))
    s = b * A * (sigma - deltaSigma)
    return s / 1000.0  # Distance in kilometers

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

Integrations & Users

Citations

@software{Vardanian_USearch_2023,
doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.23.0},
year = {2023},
month = oct,
}

Project details


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_iscc-2.23.3-cp314-cp314-win_arm64.whl (309.9 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.23.3-cp314-cp314-win_amd64.whl (314.1 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

usearch_iscc-2.23.3-cp314-cp314-macosx_11_0_arm64.whl (403.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_universal2.whl (788.5 kB view details)

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

usearch_iscc-2.23.3-cp313-cp313-win_arm64.whl (301.9 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.23.3-cp313-cp313-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

usearch_iscc-2.23.3-cp313-cp313-macosx_11_0_arm64.whl (405.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_x86_64.whl (427.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_universal2.whl (791.9 kB view details)

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

usearch_iscc-2.23.3-cp312-cp312-win_arm64.whl (301.8 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.23.3-cp312-cp312-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

usearch_iscc-2.23.3-cp312-cp312-macosx_11_0_arm64.whl (405.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_x86_64.whl (427.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_universal2.whl (791.8 kB view details)

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

usearch_iscc-2.23.3-cp311-cp311-win_arm64.whl (301.0 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.23.3-cp311-cp311-win_amd64.whl (304.2 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

usearch_iscc-2.23.3-cp311-cp311-macosx_11_0_arm64.whl (401.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_x86_64.whl (419.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_universal2.whl (778.0 kB view details)

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

usearch_iscc-2.23.3-cp310-cp310-win_arm64.whl (299.8 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.23.3-cp310-cp310-win_amd64.whl (303.6 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

usearch_iscc-2.23.3-cp310-cp310-macosx_11_0_arm64.whl (400.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_x86_64.whl (417.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_universal2.whl (772.6 kB view details)

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

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 309.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 48b50495a2b466a00b5aa055a09a57d684a74b6416370edeb717aedd1978e875
MD5 ff1eddb7596ea0be6c1d119a39ee05a9
BLAKE2b-256 7a185fbdbf32fe2ee3e361e629f0e247b7d648fcfeb263535c666fc48aba6b5f

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 314.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f08388e9c0fd7b4295609930f66a9a7f2486041ab1509639291726a66f2c0c24
MD5 2a57e41fd7d7ca239d2ece49c300f9a8
BLAKE2b-256 0327d8f2a939b06b204ffdfec92f059a11dbf2bb1091b32a3c49c5b8427291a6

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d61ad84f3d792c8c74ee777e43d64e3a1a938155ae9e5471d2bf7c8d94c23557
MD5 f9694b71d0c69b92940d3b1b77f30c07
BLAKE2b-256 531856c12060911d90bdb34054d3b6784bd066b0bf7baf17c2e75c7d90d6094d

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5577a95ab30190d4b6fe3310ac41ca3f6696fe955f4709e73f58d69ce135e299
MD5 ebb43a0e57f5a87d52f12ce981563eb1
BLAKE2b-256 704b29c5dbcce32c0a97f9b23daf9121d1fcebe9e6a8408b64607e0203491e02

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.26+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cef2d3e90a8f195d7e2a2f1ff8725a3f2a77a0c8729deac329918a4165cf190f
MD5 d02217f1689b084aedd6fdde5a77c981
BLAKE2b-256 8b7b6ff3653e894f09b8dd3f1316df633d87103b2c59ba700a9dc9de6a076936

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb18f82e882672a9595bc191d7d1ae131d5ccc090fea458efb34575e9974ac10
MD5 38fd91a1fe315365f4f30430374a90ef
BLAKE2b-256 b341c4ff13e8ac46af29c3c517f47e5f728e8dc2a53f3be50380810be0a9a26b

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 403.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c572c4fff9fd018a02a6458aabf1e54379095e7be24f746f3d2487ad0c2ba227
MD5 c1652d30d88c76164d53de7ad1395f1b
BLAKE2b-256 1b57caae8bc2f3c0ae5a67eca0dbf461b21402d8d59362d3f16af89c1be8dc6e

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 425.8 kB
  • Tags: CPython 3.14, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0263073546d66abfc4d2a58b90003b56766a969aa6cee049e1389808a11f775a
MD5 b968c5af59e3de846652198fd32127c5
BLAKE2b-256 f23067c837c8fb763eed1eaa16d09ab5b9f6c519885990908b07c7c703d805b1

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_universal2.whl
  • Upload date:
  • Size: 788.5 kB
  • Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 edd7543850530009abd5c6205194984cceda0e885eece6cab1f7f95707b84659
MD5 11a5de4cbfc7dced85e86d1bc9b9dab8
BLAKE2b-256 e9e92a7fd70c579f868ba4ec8de1b8d5e67ba25b064d4cbbf99e0f070dfa39ad

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 301.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 45fa9d6055bb18e8ca6ea59f5bb5d27ab9928f1bc9e54a5137224da78b0ed738
MD5 b7ad27250e79643e72f9f8a5f157589c
BLAKE2b-256 511461bd0365d09ce690a4b4a0c3b05659dba46ca5a4ae657cf582f614ffc1d6

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 305.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43160498bde7d02af61fc5f8cbe8e8288f41c10891ca8ad9cb0f27be46e7a5db
MD5 6e658c2de9bf90143fe169c2eefcd626
BLAKE2b-256 fb716ffe4a6719eba0b1d26e5a8d002fb6eef974e3fdba648a8a8a2e1b9453d7

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b27864a51a7915282a55ef45613817b0386ac5ad9002a020cb538bf3ad4f741
MD5 c5d74850fcc08f7ef937f601938ccf9c
BLAKE2b-256 7d7b71c2bb91cad4eccd62f7a1e348be7dc75c5ce37c73408778383f1df46f7f

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a9909cca836409061f280dfe0b23cf5077190fd72a5d6ae2287f8190d5db659
MD5 1a4b0d607ee3e7ac366836429c360e24
BLAKE2b-256 bf87d530cf47d672cb20e7103b3e628367e782eb8b37cf46a782404abe2efeec

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.26+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b70917a4e1021f3025d051c22f72abe709c91cba099d92651332f33ad1402b7
MD5 8df0ed88b402debf265d1852e8f0f3d5
BLAKE2b-256 89a27288952ac70f6ab47e26a8034a26f7850af50589310ac2c6764a1c5aebca

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70a7d0a8271cc431a5575f7b7aae094a551847b6d4f6b66c73e3b63e9c4f0e3c
MD5 b25e6a2342711f020fb5c912f99c9ad6
BLAKE2b-256 e3038ddc7545aed26d3389e5fd7d8c9305284ee097d124af8e9ab92985475640

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 405.3 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68149bd4cb37dc21bad86903d14173b0515e907236254387325ffdd807cf90d1
MD5 985651524cdf3c2544f968f0c90d9f25
BLAKE2b-256 80f6e74260e26cf8d9b46d6f73628b704aa4a7822a4a4cccba43068580317df7

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 427.5 kB
  • Tags: CPython 3.13, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0b8b28691727edf3e891617e083619f17e90b1a9c5c3682f4e511b7a18f7f733
MD5 06d965c95a8faa5e22f82517566a20f4
BLAKE2b-256 22957025aac8c53f89d3bf80e371b1494de5f5988f594cf11e960962a800b894

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 791.9 kB
  • Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4d1e247ca9cc7baf9ee549418d63846d89a8a2fbac359bc9e37094432337fcba
MD5 0d83f9576a17fe736f968942c89de391
BLAKE2b-256 86cd7492b88535bfa27082b1de07a2857d59c0ecec0e81308a83c700994e8bd4

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 301.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1a1387da9adef637bbb734532458e00aef254a88f16dda09f278d42f5523eacc
MD5 ec64d32a9d396f90326dcbc3f16c7ff2
BLAKE2b-256 51ba6e64060cfd574d3792c7872696ee9a47211d4b94d22d35f08b2221fa1b5a

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 305.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62be03a3e3d22adc4746f619c270562c03ae4ca207bf1b37e042079701a7073b
MD5 d6205277bdff373b6c2d9cabf8374364
BLAKE2b-256 4c30ff704b5cceaa6843d4c67dc6eaedf5e18f526915b78a634956e2e1bc6010

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 357e91be0d99dbb8118ee2c62dac6e8512cf1e4eb2c02fc2cdac9c159588e2fc
MD5 9e8067d3949bdb95543939918791ac14
BLAKE2b-256 26bdd8a43f970db9dcbe99be0c12600554d49a90e3c7251bd457e90bd74d0aa7

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c86e23ac15080005bd888795b802d31a445b23b146948cd944a76c5c5611d4aa
MD5 93e9233c6d750b5e7493b6f1d5cec64f
BLAKE2b-256 302b1911f523630ecb7e748a444dfc65b3c1541fba8e92714909e2f7b7ccc626

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.26+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd605b4fc8280d3a227f21a3277908ae6486c998c60619d441af530ab8fdb10f
MD5 9e5d07386162109f8dff918fa6bc707d
BLAKE2b-256 b31be154823d2d6fe5afd39be542be795ef5ed3810a7e5ef09b781cb10f667ae

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2453aa235c5db439bcf0dff0841bb13b824c18dc1951ed467b259fa25990cf3
MD5 ed26d7b427bef47754378337a192a384
BLAKE2b-256 6994c0cd925b731f995c4fd1c16660b9b86d1a3a1b02a28280bd0e69a71e9cfd

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 405.2 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 742fd5e7456151e8a9ee559e4923848e3d3dbf46be4e31c0065bf4ca461495e3
MD5 488b7b10c3064ad239cd41c714fce130
BLAKE2b-256 e59ec48b0c65b8f98812b8923d50f13411a3960600d2602895603a1ca6f8a410

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 427.6 kB
  • Tags: CPython 3.12, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f46b56a86dc8fe7bfacb7e7e256e4823d6a837227b5255dcb749dfd66d58385b
MD5 8cf8488ec76e47a37495494e6b192ade
BLAKE2b-256 31bf0c3777f1100e6a4bcc7a4f707a2e0dbec2b13ba5ada11cee76023bc7e5de

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 791.8 kB
  • Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a92cf2559d10c37a2852e0c3b8f2caafe3bd66f0b5e1e4f62747812e13848e18
MD5 8fe7090da2bccbaf7e1edc133d85268d
BLAKE2b-256 5895ac8af8631c99de8ba1295c921ed74b89013d2c9298b9588463feacafa15f

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 301.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 02fb495d79477ad51ac8daa8156e7a7330e677be922d7c38688628b568027942
MD5 50c4ad0ffea3a41eb215f2fd491c9770
BLAKE2b-256 284ea135d9e3cae562183b2b6d073d6fad84b1a463483cdc0789c42aa7e926b8

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 304.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 639ce9daec27503b9f67f8118880e35d60cf4ef5c067e33365adb17037e4a990
MD5 e3e248ffa7c6dd30d46c269bae8fdc97
BLAKE2b-256 57c8b077c282f93dc036bdba6d22891d2be4d78c7ecb6fc40d779fe7c81bd4e4

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da42ce00add98aef560e304d8649fa7a98cc4a58c781e9d9448050eff5c92831
MD5 b429862bd5ca794762539834f21f1001
BLAKE2b-256 e6fa358ecf6242c01a12517097d2f073daa4e5a4798cc7ba73ba3f81969740d8

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c3c1c3a44d0806e3d61311ef013803bc3271a78177be6bd1279138ea4208950
MD5 eb8be962d8e22bfa147c8cada638fa8d
BLAKE2b-256 6171683cf8d1b1ea7597c73a79fefbada5b0429cad41a9c2f5aeb0b34dad514a

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.26+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1b4751947d0adabd3008abbba39a5f53d5b225a63fd58af54a173d3a481ae40
MD5 fcdfc33fb63da78175c45620b5b53410
BLAKE2b-256 3210db521ea630ce4c20930561f6623a40b7ece42f2883a393831811ce5dd65e

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d86101b351444800516c9d88530e2a79d1c43ce58de187edd43c294b9138dd8
MD5 f0ce3782901b73f93acbdfad8e7e70d9
BLAKE2b-256 11d395d7c262d097d7d7490cc99ab7fb339bef25393f33292ffd39886d9e5ee7

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 401.1 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b546f7597961c07187d058f4c3703efb690e239f95a39df6b180b67dd2eb9b2c
MD5 e14f650a88d1ca9d5c340fa0c00e5d58
BLAKE2b-256 92a286090e665da9db01595040ac9a2308217715a8415a0ed0144603224f0530

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 419.9 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef74d1cf88759b98b45676ef3cee296fd8071dbba4eb679abcaca2fb9eeeca93
MD5 04f1f7f14afc73ba90da3940cc7eff29
BLAKE2b-256 638e272c95e229c48505a0c6bb75be79522c3a020acb419e276fb82c1922a176

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 778.0 kB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 48d5d4d6d2637b2aa6b235a78c026567b2902f41db6b65fea170c3a2a5a682db
MD5 258056dcc444de92abb413d0f14ed1b3
BLAKE2b-256 696f9ee2604b8f61ea522fd674d188c379b890804495429f6e7101be730eea66

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 299.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a022a381b48ae14df660d56c67830c6597c3944363f17a8def883b8e943b448c
MD5 543d04b575d6c569ae82001157ebd790
BLAKE2b-256 4507f4165daa72395123e6373d00b25d9e021a014a1e193649f6a429fed15985

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 303.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa99fe6bd2c6ec973152c09d6aac53e6888149832467b5b1c7e9482e4415639e
MD5 6348e7bcd90e7a76a77a94cece5198c3
BLAKE2b-256 763fa672794ddc63c56c013b4e43dd59066a5799124a78e811e1dea3e149edc3

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b91ac0036dde777a44ca1c9804d46aea394e9c3039fc3430f5e31f21ba82d38e
MD5 66d831703b67de82fe61f7bea1fcd4c2
BLAKE2b-256 0df27b2c5327a88a10ae0a0c13bea80a363309e9bb51641f72b085e64bba7dcb

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 212ffdc970a5738f5ae4bbc77b25fa519a88faa9fa68c66bf76e07eb60f921ee
MD5 6110bc6fbd264b0650277504707ad65e
BLAKE2b-256 b70159f42d82a7536d2757ea689a4516d4342fd76dff5dd0d57fb7a56bad504e

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.26+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6f2bb9e016ef8d37d97e8442390bd6e6c7016a9616e3e1bed8d5cf532ace862
MD5 9f5706298c0b7a8508a7508d33403ac3
BLAKE2b-256 07b9affae5c4720f7d96ce738640105d672e8dcf29faf8119a7ccb5b7abc5dd2

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa9f2804bda2e59b4d6dd4c666232f019b217cd3b3f6fdc90aaf6f37eead0d7
MD5 22a2e45ca68fc96dd30b413abde4e344
BLAKE2b-256 718ca9b28ec3ec3f29d4b51217fa053ee8e88a62dae1621c5e8ae1b9676bae69

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 400.0 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9137b833e426291ea617c2135eae18d95b095a432366cf289bd34761dd04219
MD5 b29327833ca17047959fa978dbfd8859
BLAKE2b-256 281e63791445749725c56576a7962815ed6bbf7ab181dd747aa2eb1d935f16aa

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 417.6 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0e1eac0f62df607fd4da9ac4e867d11e8ef6491017e0f095f38e2a7c24e657a
MD5 bcde50a2df8591274acf384adc294644
BLAKE2b-256 f3a77f0c7cdd949825b1a88192827dcbf4aeb2af1860eb4e13574678854f273d

See more details on using hashes here.

File details

Details for the file usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 772.6 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d390431c8c420614fa137b88d8f351cd598967d31c41b5fd4d314a737c5fae8f
MD5 742f78f55ae9b309e0c243b571cc072d
BLAKE2b-256 bd96d7873c86668036f535cdef70862db6f04a38016ca00530fde6f77e1c7c79

See more details on using hashes here.

Supported by

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