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.5-cp314-cp314-win_arm64.whl (430.0 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.24.5-cp314-cp314-win_amd64.whl (424.2 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch_iscc-2.24.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.5-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.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (575.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.24.5-cp314-cp314-macosx_10_15_x86_64.whl (607.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.24.5-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.5-cp313-cp313-win_arm64.whl (418.4 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.24.5-cp313-cp313-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch_iscc-2.24.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.5-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.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (577.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.24.5-cp313-cp313-macosx_10_13_x86_64.whl (610.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.24.5-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.5-cp312-cp312-win_arm64.whl (418.5 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.24.5-cp312-cp312-win_amd64.whl (411.5 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch_iscc-2.24.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (577.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.24.5-cp312-cp312-macosx_10_13_x86_64.whl (610.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.24.5-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.5-cp311-cp311-win_arm64.whl (416.0 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.24.5-cp311-cp311-win_amd64.whl (404.5 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch_iscc-2.24.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (569.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.24.5-cp311-cp311-macosx_10_9_x86_64.whl (596.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.24.5-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.5-cp310-cp310-win_arm64.whl (415.1 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.24.5-cp310-cp310-win_amd64.whl (403.5 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch_iscc-2.24.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (568.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.24.5-cp310-cp310-macosx_10_9_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.24.5-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.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.24.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 430.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d58547f4988326267872b75f7032ba2f1820b100b60d4f0000db8f6b80c11fc2
MD5 75d8657426c4e2cd4037db00fd6dfda3
BLAKE2b-256 9914b72701d7964b724293e6ad55381f801d775de546142b3ac25ba6d1d114d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 424.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa75c96ef089d127b377ba03f4f9219676aaeeb0d71faeb32c762d4473b12266
MD5 63f3302345986ae3c964ce1c3160268f
BLAKE2b-256 539300775e8f35b3b5c7952067f4dd0a81fa918143b85ffef29993da29f72197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c0fb354f348f926df7769d2a481de61be941e358894e41cfb7a39904f76ade0
MD5 0f1c34781b692e31c8a7a4ea56b88492
BLAKE2b-256 a426bdb1802433142757c51dda39c2d01085a91ec647c6c002c80e036eeee61e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82e4708e15f2d453c5087bf6723f3ceb86dd730b3173e5c63449b990c3412c4e
MD5 834eb50163d341c2562d82e07c4cfdb1
BLAKE2b-256 1d0814e27ce8a9c8ae6b9ea7e08cff139d6e738b9d9945dec84b4fddc8c1a783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c68c1deb63166dc88ec43edc3b2b861f94ab2f33ee975054e86d1591a90951dc
MD5 c060934d8f3df248330a7493f7911b9b
BLAKE2b-256 99e60e7f171b00dc8675130ae8cdd5d1c64597f5c1a773e46317836c12b31af0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 195d53707461c37a0a1bbb3f9caed2e22d24ecf4e1d823fab622bc76e4d9dffa
MD5 5efb4b90382b67b98f3a18122c81e59f
BLAKE2b-256 dc7b73c11157f342d5c5a14ab85cb8e43cf9cd9a8de42fb15fa0232bdecc9072

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 575.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfdab0d43bd57a6549a8c961095a9150453a2ea791488e29cad788ccb08d2f1a
MD5 0ce788f0a807fb4ed944d841cfae8434
BLAKE2b-256 09ab1cc737e698c356061f931bfac268c94664515f06e0e2ba8d054c001a4ad8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 607.5 kB
  • Tags: CPython 3.14, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 67de911912fb6f2536b7cb7dfff2d478651eee5e05e628669eacbf07b1c7e39f
MD5 b5f7cdc83fb3c056da5a9dd66a72c4dc
BLAKE2b-256 c93307ec0bdb70a9d7c63eaa0016925579aacf51086bb410e12458d0d878c3ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 13d1571a8189186c9b5819f29dfc93cafb3956758a777cac234bdcb25c57e086
MD5 45ae1161c5dad8e936b2dfa77d80690a
BLAKE2b-256 d8ee0853e40389ed94ce109519d29e8fa784585245908d074066d1335322f82b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 418.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bdb7d87c7bd32c9342f9e3db08d9bc06688ad8c1eebeb9723a282f754f6ed1a7
MD5 524879ff7ebc651c95989bf908f88ca1
BLAKE2b-256 0073fe4b3b673ebc59161eca2f8ceea1c1ff82502f9842e65babd1b4ca820045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 411.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f62d30c307118d588d6b6fa3e210387243c8b4d182054657b5040aa31fbf76c5
MD5 4e7d48c27287802e1350077715b703db
BLAKE2b-256 9e4aceca1bacd96e9504996325ea2dbc2ea19ddfee83517914de7b3065b23945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e73be176dfe33ca483f2ec3e514a97250bc9cda530b69ba36374b34da5563c08
MD5 90b1232f0305150cdce93266c42c5d19
BLAKE2b-256 f67af423cd78fbde5d8cb6f82f2baa231c2c68df5142d107b70b75315c79067a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4abc74f238fbbaf7368425a5d45e951ac38e145ab8e46c7f8926e7ab39aa9ecb
MD5 2d1582c5a3ab8922737c411279126e48
BLAKE2b-256 cbfe76ba546c2b47d6850c5e8d7425c480bf18e2ab25c6bd9ba101343192e53d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2568422fb97e8b487a6b0a8d89e463d82eb5e9760e8fb837be9447b5107c8200
MD5 2f78c534165327f7683e797aefd09885
BLAKE2b-256 1c9252d8d9ae3e668b1a06dba126da5ca842c14ecacdc51f571c1f4a636c8e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0595a865dd5c3b6e22c83f4dd1c780181fa01be656803c9dd79942857fd13190
MD5 bce9c1f1a3523d066e270ed25822eb4c
BLAKE2b-256 88f15fe2b4a6899be7d84b5c9402b92f6263daf59c22b5212256769dc824db73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 577.6 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e0089517ce957a38211ac8dc75e506a7499a96ef34293cfa1eb5b34b973ad69
MD5 443c15032290b278f8fa256fd8bb03cb
BLAKE2b-256 280f45878c3034ab1f4b58b49a74b8a78ecc53d645a3877566849c4632cacb51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 610.4 kB
  • Tags: CPython 3.13, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 608688255e036a8f100c4727b7a5a82f482e79fbfceada437080ba63ed0f427a
MD5 fe140f5b51282416573e789160f8284d
BLAKE2b-256 170605c84c02d82899dbba45760315d36b5dfc3eb848286a80d43b03b65d3983

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b8e448a9becae325b4316d855136714c9dbbbf71540007c5a94e7fe80be18f1d
MD5 a476ba61b34109024da229d76d670bfd
BLAKE2b-256 96fe2d4917d419c80a33e90942b4999c109e66cfb513634ff0f30e7eecaacf7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 418.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 aac84626c80bfc44bf0d8cfe35c62d29c07bd23f228d9ad63d9d755d207ead9a
MD5 d3af4d9a72b76d5789a8dad1145a5b1a
BLAKE2b-256 05caa94e455a5d996dc5d80f3dfbaaba7eb231761b2f6ccf650dc0fcf45fe01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 411.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7eefdbf242ea2d50f1730f410bcb33cffa72c7fccaf8bdb852f6202586aa2606
MD5 d1cbe854c5c4f4f48b670d6bddb4e81d
BLAKE2b-256 682ef07cffd244832bae379d524d3242f3da8bbe74b18fb93854335dad66337c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30ff487ce1c41f66c80e71e2b781198ccf957989c509aab88fdc397c412239e8
MD5 514c41ee74fae7e940a8517294681ec8
BLAKE2b-256 b830b5a59f2c98897566c46af312bf294d0fecc225dbbbd72fdb5486207a71ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab5ac001b8564cd521c086b09e3d6a6fe078265df115de928bacbd40d7c366c2
MD5 5e36e86d02942b2813295824d9b7a7a1
BLAKE2b-256 824fdfbee897bb0a1f4423ab44c308981841b7aa8de0cd5f710abd408fa7c212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c89f3779ab61520976ae79b4722f58ce7fb58fb1c1e5c5630697aeb801734343
MD5 adbcdb1b8e95d050879e01abd639a146
BLAKE2b-256 f11b0dc5a324875e3ffa02cce967be752b8369561d412e25a474991e5f6bca58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27100084bb22793ac2c8666362ebffc5d4cba094e479aaea1d516b15b53f8e9f
MD5 9c93f99ac094df0b5721e109d350d4ee
BLAKE2b-256 44238a9f84d9fc64a2734ef2608b6f18e127e267d0757316afa27a0d2291e4ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 577.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f769e5e4fae4742ee1579960b4ce148318ccb3f5cb7c444927618e30b04f9fc6
MD5 bcfa9fb2077d26ef3a4b2224401e82a5
BLAKE2b-256 9b4e9b7270ceb84c893b50ab95f1408db7ade5deddb0ecc92b2beed8ca62ffe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 610.4 kB
  • Tags: CPython 3.12, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9416e5beab023e47731cf63f07d091f6eb36915fbe6556639058c9425f50f8a3
MD5 2d82b288f602b12c06c984baf468f781
BLAKE2b-256 36811ad6870ddc2f2d1df326fb70ee4c0890d5d1a8c6f29460217c0237e56606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6fd97af6b088c39f00459d97c3240705d498c29d1e94492b0676e98c52bd4e87
MD5 34d6b9db96395c9b04712fc9e4e9244c
BLAKE2b-256 dc986cd9032c2a8b214f0e738defd31e8a8cdca73d646d8ea82b8e289a01c746

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 416.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f4d228d935cbeb8c963b21e680f5692afd80c0194a7c8fb3b19057385faec41
MD5 74553cab39ccd782b6162730ac7d58de
BLAKE2b-256 cca894b84e1c7a34b4cd13b3a91b3bf537544fe8bc4d71ecc19cd81ec79a03f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 404.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 052b14e287889cda678da833533939fac7751a7abbde60f3edc7788d95369058
MD5 f641dd305ff4744015c279efe245eba5
BLAKE2b-256 5df523c5e1016820f3d16f56c96cf6174fbefe2c95981638ed5a1b0f1a01e2da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd0346b46e8748c2860bc7371943936d2e772a3e811845beff57287ac8ff9ca2
MD5 ed07f26a99d2cc91bb86bade85e207c1
BLAKE2b-256 97a0d469c0fa680ec8f052631acb59351ccd78a6e2012a57938f92ebbba1a2cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3619219a8ecffe27d8c84c62768116021c3317e9f531b6c5f4323c1ac6c52a45
MD5 ff9c26cae218f3ab90a94f3be28c0b8a
BLAKE2b-256 843e12e83f6c95c34d19223c25482139000610fff1985f39b322db81a2a8c119

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20978237811bf811f27518e8f4ca4fd7f9b6e024613a3b32b604ed44fdaa315b
MD5 fd8e2fcb26b900e943a3ba799ae1cfa2
BLAKE2b-256 15e334037f69f4664ca8e41abe7b03453721ae2288f14f8f88464aeecd915a0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d3471b8753ddcac68b437df4df689972279dd7a003e0bb7d9a4fb8a12e9baf5
MD5 aa8d02bfdfe2a079c9f8ee7a05925005
BLAKE2b-256 b4115ad957b717ce1b728e1489ba67c773f9ed29cd20a3638faa58280e1452a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 569.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c737aac342ba22623448b0ae06e09bd623b2e16463ecee61eb5469174ef749b7
MD5 b5834aa930ff71490dac89f31a1a97b8
BLAKE2b-256 1125365a1f8de1e797ed55b3e5c5bc69bf4526dd2ba128d20b10e7ea3c7d73ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 596.3 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25aa355fe6602bf37859c05ae8b10e91585901e07acf67d548f68630b453a946
MD5 28ed4abda390346a0612c4cc6e1e7e36
BLAKE2b-256 edd0874383aaaf9ed94f6a2ebef3e765f39710c250bbb13e27a11965117ec53b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5fede77c905b89186e27b9ca957567889a1ddf82350372ac105deea3f6e83b10
MD5 42343455a62ddc3cc4e3748cd1af848a
BLAKE2b-256 1405f29e54f2eb928f60809d20a51a72a04217ecf2f20b4afeec3353d1393a58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 415.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f0b5b605b54fc716c79561cb7b0441ba3194a3b172dcaa54b68af3eca4fe5af4
MD5 6daf9c2c8b6c41d818cedcf53245580d
BLAKE2b-256 713e603cbf3fda43f8bc015074e57742e5ccfefd828c52075e47735495fdd5ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 403.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d375c1b553e3767ca9d9988b108aee60b2e0a5b2d8f9486f17e171bb69f2b87
MD5 d5525c23ae68d04f064e8a542d65f32d
BLAKE2b-256 d0aa0393b52cc061419374769fefbaed7ae12b073bdc850f6465e08405393f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d37b8058b8911230fd0360a6e0a570f80f0022f70c816261a764bf8e737acf8f
MD5 f377bdb2578e7836371090ab317293eb
BLAKE2b-256 4ff66601209b0e28cac2aa5ce7f39dc9ca5c4057eab3d021faaddd7725d0f237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55c447f05f59e6a2434853e3f1b184c4bf250905610e10799944a15781153547
MD5 70272f6e1ed0b002bd25082aab19e947
BLAKE2b-256 b90aa46dd28c487fead9978febd130aa977870b4fef2d944f78258bc7c5951d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fa9b0bcf2fb33418bd8c6babf2078a82298d2dfdbf912e679b246580d37ea20
MD5 bf4770baefe14be3f082cfd08584fc69
BLAKE2b-256 3838bf78ec0b293f9e909c8a71c9fdd974056ddeffe77e552c5bdd55493ecbee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb2139c7aba670a59566af5a4c65af4d5befbc6635b946165f5c0d60ce9d6cc6
MD5 d4e8a9c5a3c13c8498c60f4898874382
BLAKE2b-256 bcc69ab1c6c88dbd1eb2c6655d9032a4a3290f824d8deaaa28c1f97f38410fa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c2f066b6d0dad34bae3625daa81c516d947c174a6b0326a5e5e224bd50bf8bb
MD5 67ab5480a4b19b9116c3026e4ece6482
BLAKE2b-256 c9481d1655e7b12882ba64e67be9440629b656a0c33339a1910486d9bc57cd3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 595.1 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eed67a2c616b1aea7dff4cf66f83b3e119a9e3a438eb459512d85763610717e5
MD5 2665337a55a6ff3d224574f51c8d3553
BLAKE2b-256 cec987835723ecbe9d847dc19affe9a0537fc38a2c3ae195a7a04c9725b7baf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.5-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.11.10 {"installer":{"name":"uv","version":"0.11.10","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.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 37ed116b3f7e10318cb5229a095e179df44e8182b7ecef75b8350ba10e157ab6
MD5 30b0693feb4e59b3e58d1a488ccfdb08
BLAKE2b-256 4a7036ab3d4004a05e6fae41d615883bd97a583ab3f12857cb950889bd560d5d

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