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

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.24.4-cp314-cp314-win_amd64.whl (422.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (573.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.24.4-cp314-cp314-macosx_10_15_x86_64.whl (605.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.24.4-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.4-cp313-cp313-win_arm64.whl (417.0 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.24.4-cp313-cp313-win_amd64.whl (409.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (576.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.24.4-cp313-cp313-macosx_10_13_x86_64.whl (608.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.24.4-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.4-cp312-cp312-win_arm64.whl (417.0 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.24.4-cp312-cp312-win_amd64.whl (409.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (575.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.24.4-cp312-cp312-macosx_10_13_x86_64.whl (608.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.24.4-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.4-cp311-cp311-win_arm64.whl (414.2 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.24.4-cp311-cp311-win_amd64.whl (403.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (567.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.24.4-cp311-cp311-macosx_10_9_x86_64.whl (594.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.24.4-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.4-cp310-cp310-win_arm64.whl (413.5 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.24.4-cp310-cp310-win_amd64.whl (402.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.24.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (566.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.24.4-cp310-cp310-macosx_10_9_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.24.4-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.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.24.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 428.8 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a492336fb082a2488c64dd84451a8b9826469ade268540113c6599b92969bde6
MD5 79f7c6409737b130e07afcd53a88c9ac
BLAKE2b-256 0d5d1e6b0dc6206a504a7e385a4934869dfc2505cc802ddaddb7ce4616dbc174

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 422.6 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f09687600b8eae343e2463e2c2c4f3cf5e36011ddbfa0935472e916b0780658
MD5 33063402b8f54c22435e30afc8341d46
BLAKE2b-256 f27d21795ce5afc28fd3b3fba58856ea323a3f44e0a2c0abe1e4ed1624471257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7ec53acd6e09979e88a42d54b9a6d6ce73332412ba9a486c1514dec1fb911e5
MD5 37ff9c85a8612b84e7eccab9188eef03
BLAKE2b-256 2c21d99da24307273e4d95a21bcb57ebfb358c0ce4a12c5885bd18591a1833da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 990fd1a3aaefe2c5a9ade6ab1c65fb2b26d78d075a3dde767c9a340af4a5200e
MD5 44f9cfb505d46c612c412550b0034bd4
BLAKE2b-256 9736436b1a60252ec48969e59d55051f50c00310853e73f0179a7b9a2e57c7d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95b8aed8b5aa3cec1d29520297f2fcbb8d585c817aba324fde5c6f7454b17dd8
MD5 b79dc30a899bbbf288e4ff3f8b5eab61
BLAKE2b-256 a83fed4f79e60b89f84f879d1f102f8aa886e4963e8f9033745056884c95b942

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30a857737c2c45d79b2003742d913935ad21109c08b45b052b6cb69c8fcde432
MD5 13589e3d77e61fef8c8c6cb86270bf59
BLAKE2b-256 044ea5db7a8d7483319500525a15de235ccd633be7d82b8734d2ec0c49fea11c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 573.6 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.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b522731d106755b6cf4926d93ea960fe14ee543ff46d3884470378b090351a
MD5 3e5e08dfaf7ab95d7809655636d1d9e7
BLAKE2b-256 dc793001a0615be43d8b634395e0618e0e1dbd1fcc2ec8a6146fcf117c20bcda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 605.3 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.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 59c42e37a21c0093300aa73701a85cd673c717b9c97521d47bf0147bf1b1332c
MD5 395af8a4e0e747c59b827973d7114a1e
BLAKE2b-256 120587c168ad473537ce1f07f3ee0845da19d08d2022c14596341ff7ea59cba9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 be8a9b200a314dfdd305f89c5dc360dc2a7e8666eeebe3c2bf5923788d2155ae
MD5 5660ea7268dcd3fea806f64a8b79149c
BLAKE2b-256 5a51da60bb3398a471854f451933b6a7c611a0eba342045349950936b74d7371

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 417.0 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 767ef4fd594652b91c88081092698e2f06b6119195eab9b0d279b479befde48b
MD5 06484b4d720a705242f713d43cb894d0
BLAKE2b-256 ea0de53fcbd993c0b8a9b98e9abac4479fd057bdb1e52cc78144c7da4c1083c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 409.6 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a6d1b888ed309dc3ab0c2f4d6e43eff4a57273149c31e0d7718514e94d5555e8
MD5 d77e732fde890bb40666d1cf31565820
BLAKE2b-256 1300b6aa5391bc557b08087f906efebe6fad76d62a999e41e38e191d98f73bb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af891cb1eefe7361c98c3b9978ad4b80e494b843e63c37d4dd93ef22ac64cac
MD5 e8ef246248056dce1cf6a57d37aec710
BLAKE2b-256 cbf2ae02d1abde6ed23db37623505d7484244adcb7c4cad70df791a3cfd66537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de888d9c68c467fb1b5472410ea2b48a3889d2164c4b5359dc382d6f2d2da901
MD5 42975f3004ae780d24f67667e18590e6
BLAKE2b-256 dc6a99c2a309c53618406b58f963a3dddaa45413b213b841a6db10a0490747be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1195f6a37da6941f93473025f70d3db6cd27aa698a454628b1e0451e99f42a54
MD5 fed2489f44df982d9726b676ac081fd1
BLAKE2b-256 d38dfd4697957929646b5b041d423ff15e73c702962078bda97ca3dd12e04cb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00695b3b92ca2659eba63cc46be4c73cc298c2062907e4011de2420c2db7ce6c
MD5 fcd44c09f1df2ce0f5f93067b1146e10
BLAKE2b-256 cb0509a70704c66b41b9de2321f8a207912c92db37783b4b2cf35e0f2375f024

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 576.0 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.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637dad666f7416afbb04fc11cc4e4915d468f01e2ee95fc9ede1268d0a791243
MD5 2be763ef808a178d9a9c1318f940892d
BLAKE2b-256 f766d9ee01d5f58d63bf05a054866675ab6948c048f994fba90735d65fd2d54b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 608.3 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.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96731978cc2cbbc260feb8578737c8f1b9175aac47c912dc7b744f6d693fdaae
MD5 421413a2822a3b8e56863a1430932530
BLAKE2b-256 232a187849d09e3d29e81114daecc00401cdf1febc14ee52cd167a2b5d4adc59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c58f7686727674699db2311271c7c299823190b1b281d92fc750fe7995c5244b
MD5 f4d9dab507e88dfeed4bc3440f0dd6d8
BLAKE2b-256 531fafec15f94c72847d9c98b383dd33ca5e61125ec245cdf03f86fb5999d54f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 417.0 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b662975cbfe3f7f3210fe05e5c370a41067d7b1ef0f3897c32dcc97d417814d1
MD5 8027d86da13053472881af52c1b7e59f
BLAKE2b-256 d98ed51364bdfebe8b376fbbb90a5ec4eb785ec6d1b26f2d79d91406d2c209c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 409.6 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08bf3d3e4a2f4e31fc337c0e52759931f5e1aec59ffaf7ce45389fdea27c7de4
MD5 f8c2c94e317e5e03a2805e83245e75fb
BLAKE2b-256 cfb36285f66ae73310651e08c51f100809b92f5e7acd308d635772c586d2e887

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a07e5bd6525d716c4d969f65513a5656c7c00571b9843b18f65ea47e441ff739
MD5 cf6903a457a28ecb63a225477af1ed19
BLAKE2b-256 1fe621b3009171263439e7f5375c0be6732ef16591ecd4639653572091c945cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11d6605a4245287dce8f807d69bba702efbaa8b60e505c75ec9a65c6bc4bafbd
MD5 85ed424e4008bf18b6282c8620032d1b
BLAKE2b-256 c86c31afd792414e0eaa93ae15d6d7c917e6efa15c1f568db0554ec8447da255

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07081365e5c4bc112db1bd0518e64fd0f2da0587fdf10f93ef9b907a72b60e8e
MD5 0aa9623f37a897d6a2c9409000122085
BLAKE2b-256 7e0213b5e63d1e817b4a3f8bf1bec70965ad39ab75216e6b2e28ee8c81bf28a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 232011e100da81c06a2cec5879348b13ed8cee0f526220a7b107b7f272a093b7
MD5 cd825c25e11081991a1e81380bdba562
BLAKE2b-256 e3a6e47bdfa3b73580fdb08e36607fcbfeb71064cf96576a0ddb8767af503394

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 575.9 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.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e214cebe56b985a61c8d1c89615546117a076cec2f37bedaa9e3df4faf89887c
MD5 214b86c2ab695c4a0315dc0b8aeb90a8
BLAKE2b-256 ba29a2e2e408b2e16eafec624907b921a5d86e41c8e23bba1dedef8ca598e117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 608.2 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.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d7f2e5db92ee41090fe7bc5fafb0d1e4bedeb5e914ee565b5b683146a3e4574f
MD5 3433af62c5e209f205a04d230a2c7663
BLAKE2b-256 780adf5f8be0c9f4b91f261d2c71ca3a85351d6c8a7ccdf55d57cb21a03c9aec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3084091a62827e795127a69b9385898ec8616e1e6835af30263bfee7c29f0f1e
MD5 ea5be8b04a6ae3721c86e96d1349db31
BLAKE2b-256 c8736af24bd8cff6bf586c3d06820f80e8681b1c4b515cb72a272d1a65e52927

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 414.2 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1bc5699b42c041de36e6e88aed22e6a6606d4747dd0ae71f012a21f5dbe16b15
MD5 4eae0bd1dbfa5fdfd49dfaebd5c91e74
BLAKE2b-256 9622bef514b1cd3d77b14dc84642029f7016419334a2223528c7fc71ae4e7192

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 403.1 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fabbe10883a6a69ac2d2fe2ba3330fd724dfaf6050cb851b84c7dd2359fcd17
MD5 2d3955cdd70fa5d26d5ba29054f896e8
BLAKE2b-256 5c23d10bfe35f550acf60ac2cb60502ad4a3c5f4da047be559d84d080a25ea6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c32a83e0a9171927db76fb78faeb00cac5575bff300834e5e47565db7501e60f
MD5 930fc21aa27f1d04bdd4e122b6025835
BLAKE2b-256 542a36645e87694cdf470323453b60624347065a6ac89586baf21b0a97eea863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f9492a70c8c0d7bc074c2af1fbb2a84ab620e662c90c47809b6618f88a14db3
MD5 734ceaf41040d7bd469a3b20f0bc83bb
BLAKE2b-256 4012f93ab79d1bd0679b3c4837ff0e0dfeb2ef078fc3ba529afcc71530941baa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26c61629bc30ae9bde272d2a2ec1bbdd8d737ac1d6cd5f0ce250dbbb15aaa99e
MD5 64e54efb925d11b7acad74ecb2507017
BLAKE2b-256 963ad545ddd3f3a895d9bc1e9d01600a73b4ff9df8a6bf0c29d28e51333cbfb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17b955c67534c34a43e3130932e6bfdd6b0914ba6163d0dfadee643b68a57760
MD5 0f3e7d76619601dec2819d6a14a36068
BLAKE2b-256 0b229764aed716407f8cd7d45cab2feb07590a5f31beaff92d056e8867cc7707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 567.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.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd97f0f022a29ae1c35c4cd6472476d9a747ba9d7ac6d34ff4e2e29ebd3007b
MD5 7fde1fe11f66ffc4db8c911a86dc65f7
BLAKE2b-256 fee9ed319b5387a3512904351b92cc31a35e88b2f2a992d3159852f93dd1e77f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 594.2 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.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 508511c61afe01e6c275dd784835d1275f77d863b5fbc8b964ab417c5f13c123
MD5 6d0499ef7435ead273846e5554e6c926
BLAKE2b-256 2c7faad03f72fa9ab6a99da77985580e1bd0d4655821641a8b296116f20e0f1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5280a9783e69302210af2589287b7ac6ed0506d142e1c5b218540a2a3964cb31
MD5 59f7368e1bc29ec61420db65f34e3b97
BLAKE2b-256 4957073560ddcd5d2cbb19ceec15750180baaa2dca7f13a534540dd581eb43a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 413.5 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 711ad4d7a22cdfe55dc5fd25baf962057b59aa222c3d48dc691ae7dc2ac08aa1
MD5 27e8a0c7993a8cd4fdccebcc44b76eb1
BLAKE2b-256 75da9515fe107403c35ea6868335a303fdada19b3b55a9fa1cc373f71e20e0a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 402.1 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1378297fe2c774f96b0c1371b4ae0abfc24d60ca4bb1b0fbbbec27641c914a5a
MD5 5ed9a4150262b5b8cbb268a1e62b661e
BLAKE2b-256 44281e9c15f0eba0956244230fb8a009693a9c608f53970f80f73dcf9f01fd57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0faaf9bb8b1a8b70a75cababeaf8ac6ca066e28380e8c7a6d902ee709f394a4d
MD5 1286c229dfd5be87c3b92ad104016a12
BLAKE2b-256 4b4cb80549b2945ee082c79dd1a4735e0a96b602e3133e5b2455978fa423d37d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e43cb1a2501d6211559140ce828897a8b6751170f5210391209de69f60a220
MD5 a569c915aa93678cc3dfd48ff533aec7
BLAKE2b-256 1a5230e8df661fc84185a73dc38a9a5d1f29bccaff418841f95c09a6f276ad38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e79a9f53152c61181cca6c8147a48c4cee0b452719c34ec50be82645bb17e46e
MD5 f8dfed68e632f7f7f2d0f6015bba4a64
BLAKE2b-256 2352987fd87dcc32a7cb772c24c38740945bfa38128db247da342c8f102b7a03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0a6c6e1c89e6cf111d1aa8f19156782b9b2c0dfcb5309d026f54ff5771e1345
MD5 ed4e18c18cde3d7b55db1fc644e83da5
BLAKE2b-256 437c4db472b2f5c92667eaea4e751357d7e4871273180012e8b0378fc17ec497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 566.6 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.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e031041cacc43b4e9821884ad0c12d65e80043d9a83863664ab03e97bf8966ee
MD5 641e1493425f017c37a6976ad70df960
BLAKE2b-256 6070003b48f53b3fb7bf98bbd8f51413957ba8b2656b5a772306361721e1ff7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 593.2 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.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 991bf1777bb17538e1173f6c0c632d6ed4c800f6052f2783afc9f521951a980c
MD5 fc84593228ea2c4919a80ab61d68368f
BLAKE2b-256 081f184f3efa0fb253d2396d524db5f0414fae2cf5da5e5da25f277298c67214

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.24.4-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.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3d0c99111f340c6382898cdbea59c135bfbd3e1b35be3bc61443e53370696fec
MD5 7af654b8803f4905b400460cad081e4d
BLAKE2b-256 9f5ed4570b74e2b9c6ab61b353bfd51129a9ff00beaa40120645bf7723132986

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