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. The Python import name remains usearch for compatibility. Install with: pip install usearch-iscc

Fork divergence from upstream:

  • 128-bit key support (Python): Index(ndim=..., key_kind="uuid") for packed 16-byte keys
  • Multi-index UUID support (Python): Indexes works with both u64 and uuid-keyed shards
  • NPHD metric (all bindings): Normalized Prefix Hamming Distance for length-prefixed binary vectors
  • Build: published as usearch-iscc on PyPI with independent release cycle

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
)

128-bit Keys (UUID Mode)

By default, USearch uses 64-bit unsigned integer keys. This fork adds support for 128-bit keys via key_kind="uuid", allowing you to pack structured identifiers (e.g. content hashes, chunk pointers) directly into the key.

import numpy as np
from usearch.index import Index

# Create an index with 128-bit keys
index = Index(ndim=128, metric='cos', key_kind='uuid')

# Keys are 16-byte values: single keys as bytes, batches as numpy V16 arrays
batch_size = 1000
keys = np.empty(batch_size, dtype='V16')
vectors = np.random.randn(batch_size, 128).astype(np.float32)

for i in range(batch_size):
    body   = i.to_bytes(8, 'big')          # 8 bytes: content identity
    offset = (i * 16).to_bytes(4, 'big')   # 4 bytes: chunk offset
    size   = (1024 + i).to_bytes(4, 'big')  # 4 bytes: chunk size
    keys[i] = body + offset + size          # 16 bytes total

index.add(keys, vectors)
matches = index.search(vectors[0], count=5)

for match in matches:
    print(match.key, match.distance)  # match.key is bytes(16)

# Single-key operations use bytes(16)
single_key = keys[0].tobytes()
index.contains(single_key)  # bool
index.get(single_key)       # np.ndarray or None
index.remove(single_key)

# Save/load preserves key kind; mismatched load raises ValueError
index.save('index.usearch')
restored = Index.restore('index.usearch')  # auto-detects uuid mode

Note: Auto-generated keys are not supported in uuid mode — you must always pass explicit keys to add().

NPHD Metric (Normalized Prefix Hamming Distance)

NPHD is a built-in distance metric for comparing length-prefixed binary vectors. Each vector's first byte stores the data length in bytes. The metric computes the Hamming distance over the common prefix of two vectors and normalizes by the shorter vector's bit count, returning a value in [0.0, 1.0].

This is useful for content identification systems like ISCC where binary fingerprints may have variable-length prefixes. Previously this required a custom Numba @cfunc metric (~500MB of dependencies) and change_metric() hacks after every load()/view(). The native metric eliminates both.

import numpy as np
from usearch.index import Index, MetricKind, ScalarKind

# Vector layout: [length_byte, data_byte_0, data_byte_1, ..., padding...]
# ndim is total size in bits, including the length byte.
ndim = 264  # 33 bytes = 1 length byte + up to 32 data bytes

index = Index(ndim=ndim, metric=MetricKind.NPHD, dtype=ScalarKind.B1)

def make_vector(length, data_bytes):
    """Build a length-prefixed binary vector."""
    vec = np.zeros(ndim // 8, dtype=np.uint8)
    vec[0] = length
    vec[1:1 + len(data_bytes)] = data_bytes
    return vec

a = make_vector(4, [0xAA, 0xBB, 0xCC, 0xDD])
b = make_vector(4, [0xAA, 0xBB, 0xCC, 0x00])

index.add(0, a)
index.add(1, b)

matches = index.search(a, 2)
print(matches[0].key, matches[0].distance)  # 0, 0.0
print(matches[1].key, matches[1].distance)  # 1, ~0.15625

# Save/load preserves the metric — no change_metric() needed
index.save("nphd_index.usearch")
restored = Index.restore("nphd_index.usearch")
assert str(restored.metric_kind) == "MetricKind.NPHD"

Key details:

  • Only valid with dtype=ScalarKind.B1 (binary vectors).
  • The length byte encodes the number of data bytes (not bits), excluding itself.
  • When vectors have different lengths, only the common prefix is compared.
  • A length byte of 0 yields distance 0.0 (no data to compare).

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=[index_a, index_b],  # Merge in-memory shards
    paths=["shard_a.usearch", "shard_b.usearch"],  # Or load from disk
    view=False,
    threads=0,
)
multi_index.search(query_vectors, 10)

Indexes supports both u64 and uuid key kinds. The key kind is auto-detected from the first merged shard or path, or can be set explicitly:

# Auto-detect from shards
indexes = Indexes([uuid_index_a, uuid_index_b])

# Auto-detect from paths
indexes = Indexes(paths=["uuid_shard.usearch"])

# Explicit key kind
indexes = Indexes(key_kind="uuid")
indexes.merge(uuid_index)

# Incremental loading
indexes = Indexes()
indexes.merge_path("shard.usearch")

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.24.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.24.2-cp314-cp314-win_arm64.whl (426.7 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.24.2-cp314-cp314-win_amd64.whl (421.6 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch_iscc-2.24.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

usearch_iscc-2.24.2-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

usearch_iscc-2.24.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

usearch_iscc-2.24.2-cp314-cp314-macosx_11_0_arm64.whl (570.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.24.2-cp314-cp314-macosx_10_15_x86_64.whl (601.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.24.2-cp314-cp314-macosx_10_15_universal2.whl (1.1 MB view details)

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

usearch_iscc-2.24.2-cp313-cp313-win_arm64.whl (414.8 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.24.2-cp313-cp313-win_amd64.whl (409.2 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch_iscc-2.24.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

usearch_iscc-2.24.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

usearch_iscc-2.24.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

usearch_iscc-2.24.2-cp313-cp313-macosx_11_0_arm64.whl (572.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.24.2-cp313-cp313-macosx_10_13_x86_64.whl (605.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.24.2-cp313-cp313-macosx_10_13_universal2.whl (1.1 MB view details)

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

usearch_iscc-2.24.2-cp312-cp312-win_arm64.whl (414.7 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.24.2-cp312-cp312-win_amd64.whl (409.2 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch_iscc-2.24.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

usearch_iscc-2.24.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

usearch_iscc-2.24.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

usearch_iscc-2.24.2-cp312-cp312-macosx_11_0_arm64.whl (572.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.24.2-cp312-cp312-macosx_10_13_x86_64.whl (604.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.24.2-cp312-cp312-macosx_10_13_universal2.whl (1.1 MB view details)

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

usearch_iscc-2.24.2-cp311-cp311-win_arm64.whl (412.4 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.24.2-cp311-cp311-win_amd64.whl (401.9 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch_iscc-2.24.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

usearch_iscc-2.24.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

usearch_iscc-2.24.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

usearch_iscc-2.24.2-cp311-cp311-macosx_11_0_arm64.whl (565.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.24.2-cp311-cp311-macosx_10_9_x86_64.whl (592.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.24.2-cp311-cp311-macosx_10_9_universal2.whl (1.1 MB view details)

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

usearch_iscc-2.24.2-cp310-cp310-win_arm64.whl (411.8 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.24.2-cp310-cp310-win_amd64.whl (400.9 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch_iscc-2.24.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

usearch_iscc-2.24.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

usearch_iscc-2.24.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

usearch_iscc-2.24.2-cp310-cp310-macosx_11_0_arm64.whl (563.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.24.2-cp310-cp310-macosx_10_9_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.24.2-cp310-cp310-macosx_10_9_universal2.whl (1.1 MB view details)

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

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 426.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c62c9a36374daa8678b36789fb021a6d95b3f617db2aacb2758e19ae4c1581b4
MD5 2717c93930e1c1ca4f7d00170a5b4c9d
BLAKE2b-256 8b2b6e05589fb1f1a6979cb998c30119ca6ab7222b4bb99677860173d4d65e96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 421.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 635175d47bc584265fd659cc8ea6c1fb09f51c438a16bdc92557bff7d8cac000
MD5 7b326a52fc5f12f2cc5e58413df9de69
BLAKE2b-256 7bee635f3a69fcd83b088812e3058a26fa41c1597e016af544d09890f3b005bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f68d2f5412c74fd57ec97a6c910ac4ab18f0950c8de8f7edcdf68367f0f0a426
MD5 df5d49284f7cce5ed169c7f46d109f9a
BLAKE2b-256 4ce07431c4107993a0c2c67a3e17ec85a5b95275a59c84f22dfa80fc4ffd7988

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47a4ba5b718d66166a5b822065060ae95c7788b2ec0bade1d93c87345f462d1f
MD5 860d53e6c08d7b4801d90b6038cc26ff
BLAKE2b-256 ca0debd0048cd0f632342200af503042f1c75a6c4a32afb7fb14445da51d77c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.8 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f68c4623f72029dfbf49d9697d628550262f158dea79a833a39cbac5b8ba889
MD5 5e928cc8cdb47ff3d93b6f4f9a4a091f
BLAKE2b-256 963221ff3593eeed93f2c218e8ad5bb7d73b4607f531c79ca0f1999629cc7a40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.7 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5f9f9170ee8550698028d098a62a3091cabe7dcbb83d79f12381623bfe55212
MD5 2ddaaafa7babba5d01b99bff71349562
BLAKE2b-256 22b0731e396445f42a29bdf1575ab20998096204e582130d315acb9464469c6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 570.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd3201f2b9179119981f3603de18f2a78a82b8588e1c73dfd2161fe5295b870
MD5 6e02b6c3a588cb507d3f3fb5d027f022
BLAKE2b-256 ac32357d9f38e061fc2e3dec49d4920ec2534262cc57a728f2208bca7112d9f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 601.9 kB
  • Tags: CPython 3.14, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 12389e4cae5ec0267f786801133c7c5b8ff06f745b7d9b570c3585023e8921e4
MD5 1c23c041ec30977ecf0d2d4b32115bef
BLAKE2b-256 ef2f1643ffe63ceb98923f5531bf26e36b6bd8d22f19e7b3df512d8c025f003b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp314-cp314-macosx_10_15_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7fbc2d5c959a974b66cb8ed87ccc3ca6473f33c38565ac2d008e75512c7fe46e
MD5 ddf474e7388f561b432797276409cd0c
BLAKE2b-256 a4659f4eaf01013447f2ff8dee733f78f60005a6beffbed5bef5d5f117953e9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 414.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e87e4056416856d14aa9ce8b56fc43803edd6bfe438ebacfc14fc9324b11a09
MD5 36ae8d84ccaf693427192bb07614e1bc
BLAKE2b-256 2ee589dde9f3d963dee605fd783809e91043201822e0c9e5e014768fcc971712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 409.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8cc4c5a40344bb0069f57349e8aee829f6e879932d6f1f324a39eafddd43fe3d
MD5 55220986363b5645a4127a1b37339b5a
BLAKE2b-256 846e4721bdb4335b883e5e3ef000bd9d8e4825ffd81ab8fa81ab6189ce7e6fa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b40cd2d0ccbf899235aa7beb0a367fb0268fc859d2abec27bbbdae6d6500da6a
MD5 dd73e47d5e247e48185f179b3dc56896
BLAKE2b-256 9973f5d99146030a58f894a230d6153460d82f1af0d1092bdad7bc088c36f62d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b12b53b5c56e3174fd9c7010470b563b29ca587a13c79e85ac2a3b6077b2cc5a
MD5 eca9913f238bdbbb89329d5055a69588
BLAKE2b-256 c3d7deb720c468cbe77d6f49768c2aab2192d58247b0bf857f683a6dd394d2be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.8 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01d58d34d7a4e77b26777c22bae8093b886f457f74883765437ad95ae6a6e8e6
MD5 5d466734fe224ce9dd62d723c2b47181
BLAKE2b-256 4b09bef33267741e8eebe5af86e69b69c593e6f9337ef49b4e8dced86e16d41d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.7 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 672603aa34aeb9f28b5f700695bbc689d2556b99f1a141b0f8a845d946994a77
MD5 c17d99c99e45266999ce3af104321d3f
BLAKE2b-256 9ea0d16adaf8d0ddd7de1a8e3d3b413b63e9f27b1ec6ed78c80be577f93ec6c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 572.9 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eaab2d074d1714573fc0925f60779b1478ef3c5211d53049e128dc2f8808f5b
MD5 d4f2e1d3a781b0bdb7e2aac9d349d09c
BLAKE2b-256 10ad58c8e863e089f0cf6e3bbe8beea605a74d9c05485144625eb7331c272f2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 605.0 kB
  • Tags: CPython 3.13, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8e9fbdef3c02e7f9c54d9395421e40b7fe16deb007709694296cc9889f3a98b
MD5 c3d6581ab0580f1c13e984897bfb3f1a
BLAKE2b-256 f5d1e6ee8d2c265f60f679a1d491cee1c0379103b64929136c2f4749425a21ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp313-cp313-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7153e2bfbff491dd2759581b2b500c4c40a10a98b7d23cee8d52aa681cb42d52
MD5 ee1d64329a6b94bdccc031275b73deda
BLAKE2b-256 15cbcb66e87744664870a78804d324fcae5c4d89d3c470399a756d41b15a1d30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 414.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9ae829859a7eeee87a9d95eae2a332cdbdc28fd9ee74905f8cd471dcaaddabcb
MD5 76f53a4cf6a5dc5bb65a81edf399ab70
BLAKE2b-256 c98b0cb248a0fd8256a0b46b5d93159b7aba6182731284abe7e03b6b3c52a292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 409.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b40ceb58ad86e87462263c7b2b71992445210a375760a2a241a11e81e6b22ec5
MD5 a1cff87e8f7b600cd1fde36842ffea8c
BLAKE2b-256 ee96ee686f698b620643e95d53145b7231e72cffd94865124a9af6d3cd53b9bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d51b5b7c8b698c63ed9e8f5cbdc99ab134eebfc1bb487ed0748c11941c4caa3
MD5 7b25b62434c07b77fdd3d04f418f784e
BLAKE2b-256 d3447487589991723235ec43459085dcc0ed3585ed571665963e82f3a7edfacc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8fee03935816de0e34d62042d28c6513eff5b0359c7e972c95d669c293abb54
MD5 3ffe6bdd38fdb52a037ad1c37ec4c0b9
BLAKE2b-256 ee7a1be9ecdce45addd15d42f6acd92f7482148090fc6097a932a53197c71470

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.8 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6540e353b8a2bada8807dc3124bf3b77da49d165714fb5a49161b33717c8c4f4
MD5 a85f039547383a60f46158ea3bd7367c
BLAKE2b-256 1f09be78a1ed33439551c8af8a6853dbf0e93c16c3779d160f53250e00e60fcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.7 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5797dc89f45cc573651fd6135f893dc1ef498fdcfa8e1859267ea690156b28a0
MD5 2b21bd1da764e04e459731486d23333a
BLAKE2b-256 d75a02c267100cd806cc7bbfef1668679ff418d2171ac3cc6c5f30b918c6e8d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 572.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 148d6be49fee705138af5edc21128d627b833337cc546a75e1f43ecb844479dc
MD5 49426064050d162412a8541b4e00c84b
BLAKE2b-256 0a694b7d44c6e8894045c9c65a509cdc7714779ed6532601e19857e0dff775c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 604.9 kB
  • Tags: CPython 3.12, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85b80a59c404978408e7812cf3fe47608e65cc9da9f8dad44e6220431ff06cf2
MD5 a9ca1b811d0df51f0d9ced5287277359
BLAKE2b-256 bed4ff581aaccb013f31ec964f3bb201dd6a500553b37d9a07a59ba1cb2fae10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp312-cp312-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9981d6634800afcf1429fa9d48d8252a2f20de1872faa765762791421f5caacb
MD5 f1ad5a7ed1b1ef193cb4ce0ffbec2717
BLAKE2b-256 c359a80ba35716b0723ba2a8144f36b30ca2b00ed4d0f88aa78b059220daf858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 412.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6f16734e562e567408b8594d23969c5a948e4c96de4b2082f817c3453ab5fe1d
MD5 72a5aed596feb2e33f87fe8eb5f71262
BLAKE2b-256 b7c9ebb2abc95c44cfd13c822c855f8b72558d03bad7340617531b90ce592f9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 401.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e32d98db5062a5ef955ad52437b0be342075605b9329602444e3f009f4426d2
MD5 6b8f19e05e56dbe31a38a3854ada775d
BLAKE2b-256 ae514c5c900b802def7911bfafce3af0ea243c1a2e408a90bc3d904b1bf14658

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49e2a966e8a136fc1cb4ff0a1355c3d7054b6cbe1102b9131c49efc6338f534d
MD5 3848983d0a1c822f357e073b66b3ad79
BLAKE2b-256 8893b8326b21b58ff2668092bb3dd513ba323d563ad8c9031eb9c378451eff2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2634a76c65e14aec277b35eb44889e3c3908f9a8df45dbac0e7a4766fd905532
MD5 b67abf408ab73119976f9ca139cb4774
BLAKE2b-256 9274b29394aefc5b69945f045a0f39ff19fce345e86f6f9f21398ec900b69c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.8 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd3fcc1c32014d29cad3246dc217bc2c50e512553bd61e1b4dda8bb1ae6c57ba
MD5 0363ce38869e02bc24ce9e21f6e94b16
BLAKE2b-256 13e9038663516f628d267b57a1fe6e58fdc3d7f7d0d8ea90836f0620ac7e4b3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.7 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a9e5b3b64cf2d192f8cdb0329e3a6317b04d67b86326df845f873f11c13c590
MD5 294d8ba19d440f52495fde651dc07b00
BLAKE2b-256 5c9b4dc128a9c3ceb211c8b6601e71e7e54d1ff4252625f789f17ac7a0bb4987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 565.1 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa238c13381123f498d3801993cab9f7131f720298ed8c97a10687a0818fdcfb
MD5 e43ee8843a814d0d19e5fb251fef6716
BLAKE2b-256 8e7056baa149f36d8c74d5f11d93d3f726cda2dfc9cb7adaee7e2ad7131ea6c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 592.1 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 452856d86aa6b341de32ac148d5565706825a7c81bf36a3b8f920d21a6e98c61
MD5 318f937b62179ad33e535d8b231b35a3
BLAKE2b-256 f0375fa6e50295475a6371844f21a8f4ce1fde29b7ee06698dc2bedaed88fdc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 991399ac69a9388c10af9e22dacc2968bf28d4f6a7fb395031abb8aec286e749
MD5 0cafcb6acd75427ba085034a6a6a5aee
BLAKE2b-256 23a59345ec489f92bca8777a7711899f9a25a398a44f1ea7433871c771c34573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 411.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8a2540bd5047f3204f0292defe54aeaccec8c3fc901d27f46d4709b7f534aa20
MD5 fb01e95300a6c42e6401cc923932f321
BLAKE2b-256 893ee47bd9ef4c45729326ecf429b8e8f390b8d96e55f7b6d86a93abb10f5920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 400.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9a3bcafab8b7693a316c1d1e94c3c3fa37db0dd49473c24b63d6eca6595065f
MD5 53a2526f7f3f798064560b3cd9017d6d
BLAKE2b-256 fec75d66cec99ac73db5f57333cf97448bdc9de3d331a25600d67dcb90184955

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2d92634f106a1408c459a50154c98ec14c8f9d8aa4db9435f75f5d02afe83a9
MD5 f204059a813ed04e6a9014fa95d548a9
BLAKE2b-256 153a95bec96b41dd335c7cac3d775702792def641b33bfc17e71d23715d95841

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54fd7d3a076e29956a0a0d02b590a5bf47f5c803f5e3ef561f39d2e95332e1b4
MD5 0f5ba4440c3f2d23c566b49f6867ebdd
BLAKE2b-256 05845d02dd10952187ee9f099f2c901f0f2a2e9d85b4c89fb1d6889226e7c42c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.8 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f34d1978d9bad1e6dfa67a2a609506b1ee45e1d9b7307a393776a999afd45492
MD5 7ee7e39e5e2088fde71aa7c494f736f5
BLAKE2b-256 026c4776d9b80dbba797d4894db7ba1d31061cfe019cb02903ae564eb39f7f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.7 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.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c6185ffa34b5fc7600c53ed39f6d7c6fcf5167f8e1a574f9e5c629f6a77ef66
MD5 1e13062be37d9449bb05882584eb572f
BLAKE2b-256 f251a7020d5cbd6579f1d41c3236a6ac0779a533ff64372a569a4b1e15fcf9b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 563.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cf5be270139c61b7ca569b138b18f6926bc7d5ff88132b5ff24c74dfebc0ffd
MD5 50c5ab4292d4e0387062f7df5f45829d
BLAKE2b-256 db0dca663ac11d78c13785ef16f93ce376ce3705531769f7da49481ce6bdd3a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24e4f7da990f5baf116f503489e38ac4690734873d07fb4467ef213b99020c5a
MD5 806dee3fffc5d6d76b34943fbca94d8e
BLAKE2b-256 0d8fb145a8eedf20fa8400de1a3f29286050745618a89bf4129b62bf29ce9b65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.24.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 18e2b6728e8bf7ea275f0fccff4d522bf61f88594f9fcaa408637aea5d5dde92
MD5 4e602421de2e146bbc1ad438b6c51cc0
BLAKE2b-256 395d3e196db40f7e3f272e6eab007375b26730d9b906d6efd06d2da68a0a788e

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