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
  • Bug fix: Index.vectors returns np.ndarray instead of broken list/tuple
  • Bug fix: self_recall() wraps index.get() result with np.vstack() before search
  • 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().

Serialization & Serving Index from Disk

USearch supports multiple forms of serialization:

  • Into a file defined with a path.
  • Into a stream defined with a callback, serializing or reconstructing incrementally.
  • Into a buffer of fixed length or a memory-mapped file that supports random access.

The latter allows you to serve indexes from external memory, enabling you to optimize your server choices for indexing speed and serving costs. This can result in 20x cost reduction on AWS and other public clouds.

index.save("index.usearch")

index.load("index.usearch")
view = Index.restore("index.usearch", view=True, ...)

other_view = Index(ndim=..., metric=...)
other_view.view("index.usearch")

Exact vs. Approximate Search

Approximate search methods, such as HNSW, are predominantly used when an exact brute-force search becomes too resource-intensive. This typically occurs when you have millions of entries in a collection. For smaller collections, we offer a more direct approach with the search method.

from usearch.index import search, MetricKind, Matches, BatchMatches
import numpy as np

# Generate 10'000 random vectors with 1024 dimensions
vectors = np.random.rand(10_000, 1024).astype(np.float32)
vector = np.random.rand(1024).astype(np.float32)

one_in_many: Matches = search(vectors, vector, 50, MetricKind.L2sq, exact=True)
many_in_many: BatchMatches = search(vectors, vectors, 50, MetricKind.L2sq, exact=True)

If you pass the exact=True argument, the system bypasses indexing altogether and performs a brute-force search through the entire dataset using SIMD-optimized similarity metrics from SimSIMD. When compared to FAISS's IndexFlatL2 in Google Colab, USearch may offer up to a 20x performance improvement:

  • faiss.IndexFlatL2: 55.3 ms.
  • usearch.index.search: 2.54 ms.

User-Defined Metrics

While most vector search packages concentrate on just two metrics, "Inner Product distance" and "Euclidean distance", USearch allows arbitrary user-defined metrics. This flexibility allows you to customize your search for various applications, from computing geospatial coordinates with the rare Haversine distance to creating custom metrics for composite embeddings from multiple AI models, like joint image-text embeddings. You can use Numba, Cppyy, or PeachPy to define your custom metric even in Python:

from numba import cfunc, types, carray
from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric

ndim = 256

@cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
def python_inner_product(a, b):
    a_array = carray(a, ndim)
    b_array = carray(b, ndim)
    c = 0.0
    for i in range(ndim):
        c += a_array[i] * b_array[i]
    return 1 - c

metric = CompiledMetric(pointer=python_inner_product.address, kind=MetricKind.IP, signature=MetricSignature.ArrayArray)
index = Index(ndim=ndim, metric=metric, dtype=np.float32)

Similar effect is even easier to achieve in C, C++, and Rust interfaces. Moreover, unlike older approaches indexing high-dimensional spaces, like KD-Trees and Locality Sensitive Hashing, HNSW doesn't require vectors to be identical in length. They only have to be comparable. So you can apply it in obscure applications, like searching for similar sets or fuzzy text matching, using GZip compression-ratio as a distance function.

Filtering and Predicate Functions

Sometimes you may want to cross-reference search-results against some external database or filter them based on some criteria. In most engines, you'd have to manually perform paging requests, successively filtering the results. In USearch you can simply pass a predicate function to the search method, which will be applied directly during graph traversal. In Rust that would look like this:

let is_odd = |key: Key| key % 2 == 1;
let query = vec![0.2, 0.1, 0.2, 0.1, 0.3];
let results = index.filtered_search(&query, 10, is_odd).unwrap();
assert!(
    results.keys.iter().all(|&key| key % 2 == 1),
    "All keys must be odd"
);

Memory Efficiency, Downcasting, and Quantization

Training a quantization model and dimension-reduction is a common approach to accelerate vector search. Those, however, are only sometimes reliable, can significantly affect the statistical properties of your data, and require regular adjustments if your distribution shifts. Instead, we have focused on high-precision arithmetic over low-precision downcasted vectors. The same index, and add and search operations will automatically down-cast or up-cast between f64_t, f32_t, f16_t, i8_t, and single-bit b1x8_t representations. You can use the following command to check, if hardware acceleration is enabled:

$ python -c 'from usearch.index import Index; print(Index(ndim=768, metric="cos", dtype="f16").hardware_acceleration)'
> sapphire
$ python -c 'from usearch.index import Index; print(Index(ndim=166, metric="tanimoto").hardware_acceleration)'
> ice

In most cases, it's recommended to use half-precision floating-point numbers on modern hardware. When quantization is enabled, the "get"-like functions won't be able to recover the original data, so you may want to replicate the original vectors elsewhere. When quantizing to i8_t integers, note that it's only valid for cosine-like metrics. As part of the quantization process, the vectors are normalized to unit length and later scaled to [-127, 127] range to occupy the full 8-bit range. When quantizing to b1x8_t single-bit representations, note that it's only valid for binary metrics like Jaccard, Hamming, etc. As part of the quantization process, the scalar components greater than zero are set to true, and the rest to false.

USearch uint40_t support

Using smaller numeric types will save you RAM needed to store the vectors, but you can also compress the neighbors lists forming our proximity graphs. By default, 32-bit uint32_t is used to enumerate those, which is not enough if you need to address over 4 Billion entries. For such cases we provide a custom uint40_t type, that will still be 37.5% more space-efficient than the commonly used 8-byte integers, and will scale up to 1 Trillion entries.

Indexes for Multi-Index Lookups

For larger workloads targeting billions or even trillions of vectors, parallel multi-index lookups become invaluable. Instead of constructing one extensive index, you can build multiple smaller ones and view them together.

from usearch.index import Indexes

multi_index = Indexes(
    indexes: Iterable[usearch.index.Index] = [...],
    paths: Iterable[os.PathLike] = [...],
    view: bool = False,
    threads: int = 0,
)
multi_index.search(...)

Clustering

Once the index is constructed, USearch can perform K-Nearest Neighbors Clustering much faster than standalone clustering libraries, like SciPy, UMap, and tSNE. Same for dimensionality reduction with PCA. Essentially, the Index itself can be seen as a clustering, allowing iterative deepening.

clustering = index.cluster(
    min_count=10, # Optional
    max_count=15, # Optional
    threads=..., # Optional
)

# Get the clusters and their sizes
centroid_keys, sizes = clustering.centroids_popularity

# Use Matplotlib to draw a histogram
clustering.plot_centroids_popularity()

# Export a NetworkX graph of the clusters
g = clustering.network

# Get members of a specific cluster
first_members = clustering.members_of(centroid_keys[0])

# Deepen into that cluster, splitting it into more parts, all the same arguments supported
sub_clustering = clustering.subcluster(min_count=..., max_count=...)

The resulting clustering isn't identical to K-Means or other conventional approaches but serves the same purpose. Alternatively, using Scikit-Learn on a 1 Million point dataset, one may expect queries to take anywhere from minutes to hours, depending on the number of clusters you want to highlight. For 50'000 clusters, the performance difference between USearch and conventional clustering methods may easily reach 100x.

Joins, One-to-One, One-to-Many, and Many-to-Many Mappings

One of the big questions these days is how AI will change the world of databases and data management. Most databases are still struggling to implement high-quality fuzzy search, and the only kind of joins they know are deterministic. A join differs from searching for every entry, requiring a one-to-one mapping banning collisions among separate search results.

Exact Search Fuzzy Search Semantic Search ?
Exact Join Fuzzy Join ? Semantic Join ??

Using USearch, one can implement sub-quadratic complexity approximate, fuzzy, and semantic joins. This can be useful in any fuzzy-matching tasks common to Database Management Software.

men = Index(...)
women = Index(...)
pairs: dict = men.join(women, max_proposals=0, exact=False)

Read more in the post: Combinatorial Stable Marriages for Semantic Search 💍

Functionality

By now, the core functionality is supported across all bindings. Broader functionality is ported per request. In some cases, like Batch operations, feature parity is meaningless, as the host language has full multi-threading capabilities and the USearch index structure is concurrent by design, so the users can implement batching/scheduling/load-balancing in the most optimal way for their applications.

C++ 11 Python 3 C 99 Java JavaScript Rust Go Swift
Add, search, remove
Save, load, view
User-defined metrics
Batch operations
Filter predicates
Joins
Variable-length vectors
4B+ capacities

Application Examples

USearch + UForm + UCall = Multimodal Semantic Search

AI has a growing number of applications, but one of the coolest classic ideas is to use it for Semantic Search. One can take an encoder model, like the multi-modal UForm, and a web-programming framework, like UCall, and build a text-to-image search platform in just 20 lines of Python.

from ucall import Server
from uform import get_model, Modality
from usearch.index import Index

import numpy as np
import PIL as pil

processors, models = get_model('unum-cloud/uform3-image-text-english-small')
model_text = models[Modality.TEXT_ENCODER]
model_image = models[Modality.IMAGE_ENCODER]
processor_text = processors[Modality.TEXT_ENCODER]
processor_image = processors[Modality.IMAGE_ENCODER]

server = Server()
index = Index(ndim=256)

@server
def add(key: int, photo: pil.Image.Image):
    image = processor_image(photo)
    vector = model_image(image)
    index.add(key, vector.flatten(), copy=True)

@server
def search(query: str) -> np.ndarray:
    tokens = processor_text(query)
    vector = model_text(tokens)
    matches = index.search(vector.flatten(), 3)
    return matches.keys

server.run()

Similar experiences can also be implemented in other languages and on the client side, removing the network latency. For Swift and iOS, check out the ashvardanian/SwiftSemanticSearch repository.

SwiftSemanticSearch demo Dog SwiftSemanticSearch demo with Flowers

A more complete demo with Streamlit is available on GitHub. We have pre-processed some commonly used datasets, cleaned the images, produced the vectors, and pre-built the index.

Dataset Modalities Images Download
Unsplash Images & Descriptions 25 K HuggingFace / Unum
Conceptual Captions Images & Descriptions 3 M HuggingFace / Unum
Arxiv Titles & Abstracts 2 M HuggingFace / Unum

USearch + RDKit = Molecular Search

Comparing molecule graphs and searching for similar structures is expensive and slow. It can be seen as a special case of the NP-Complete Subgraph Isomorphism problem. Luckily, domain-specific approximate methods exist. The one commonly used in Chemistry is to generate structures from SMILES and later hash them into binary fingerprints. The latter are searchable with binary similarity metrics, like the Tanimoto coefficient. Below is an example using the RDKit package.

from usearch.index import Index, MetricKind
from rdkit import Chem
from rdkit.Chem import AllChem

import numpy as np

molecules = [Chem.MolFromSmiles('CCOC'), Chem.MolFromSmiles('CCO')]
encoder = AllChem.GetRDKitFPGenerator()

fingerprints = np.vstack([encoder.GetFingerprint(x) for x in molecules])
fingerprints = np.packbits(fingerprints, axis=1)

index = Index(ndim=2048, metric=MetricKind.Tanimoto)
keys = np.arange(len(molecules))

index.add(keys, fingerprints)
matches = index.search(fingerprints, 10)

That method was used to build the "USearch Molecules", one of the largest Chem-Informatics datasets, containing 7 billion small molecules and 28 billion fingerprints.

USearch + POI Coordinates = GIS Applications

Similar to Vector and Molecule search, USearch can be used for Geospatial Information Systems. The Haversine distance is available out of the box, but you can also define more complex relationships, like the Vincenty formula, that accounts for the Earth's oblateness.

from numba import cfunc, types, carray
import math

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

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

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

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

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

Integrations & Users

Citations

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

usearch_iscc-2.23.4-cp314-cp314-win_arm64.whl (411.1 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.23.4-cp314-cp314-win_amd64.whl (411.2 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch_iscc-2.23.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

usearch_iscc-2.23.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

usearch_iscc-2.23.4-cp314-cp314-macosx_11_0_arm64.whl (549.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.23.4-cp314-cp314-macosx_10_15_x86_64.whl (578.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.23.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.23.4-cp313-cp313-win_arm64.whl (400.2 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.23.4-cp313-cp313-win_amd64.whl (399.2 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch_iscc-2.23.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

usearch_iscc-2.23.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

usearch_iscc-2.23.4-cp313-cp313-macosx_11_0_arm64.whl (551.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.23.4-cp313-cp313-macosx_10_13_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.23.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.23.4-cp312-cp312-win_arm64.whl (400.2 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.23.4-cp312-cp312-win_amd64.whl (399.2 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch_iscc-2.23.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.4-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

usearch_iscc-2.23.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

usearch_iscc-2.23.4-cp312-cp312-macosx_11_0_arm64.whl (551.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.23.4-cp312-cp312-macosx_10_13_x86_64.whl (581.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.23.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.23.4-cp311-cp311-win_arm64.whl (399.4 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.23.4-cp311-cp311-win_amd64.whl (392.7 kB view details)

Uploaded CPython 3.11Windows x86-64

usearch_iscc-2.23.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.4-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

usearch_iscc-2.23.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

usearch_iscc-2.23.4-cp311-cp311-macosx_11_0_arm64.whl (547.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.23.4-cp311-cp311-macosx_10_9_x86_64.whl (572.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.23.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.23.4-cp310-cp310-win_arm64.whl (398.4 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.23.4-cp310-cp310-win_amd64.whl (392.1 kB view details)

Uploaded CPython 3.10Windows x86-64

usearch_iscc-2.23.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

usearch_iscc-2.23.4-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

usearch_iscc-2.23.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

usearch_iscc-2.23.4-cp310-cp310-macosx_11_0_arm64.whl (546.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.23.4-cp310-cp310-macosx_10_9_x86_64.whl (571.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.23.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.23.4-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ec128a309a2a25defab1b0252e1fd21a4bff9257cd7f0aa8d6c4e843ab42a494
MD5 e2152721dd7348bfc99c46679caa5e39
BLAKE2b-256 3080dcd4e8b1fd46a7f237325d28623e205a2b85e6497be56ebd9ac8b2986f15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c856a0df3a96a8d8807d34f4d1e2413e42913cc6ffb51974dc74c4c6659b3065
MD5 1138848185ccdadba49c99f9536d2c3f
BLAKE2b-256 a95372341ad629be7242492bc6e35fd837dd480d8177b50335a1a65a80438e87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a8008e853422d9f74577c38a75aaccc2d2d215c1d87717520eaeddedf65dbcf
MD5 90b139d99fad637532b14641ab8fabcb
BLAKE2b-256 09fbd7b846d18ad29c81b40e01fc666b19f05f3b7b7c81388ec224d2a5bf2e52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a58523e742e0476f34164868fb1571f5745f8d712496b337dd52f820867280d
MD5 8e33a30670b62dc3d487c78e671e0c4c
BLAKE2b-256 080cdfe4fce2bf0d333b44e765f193627b8722cee90ef1ed00cb565a28743fd3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57aa56bd151060b41e63d64402a845a84363f23025d5aa43bd71d074d12282b1
MD5 37af7ba03c2630660dc7a02050d65935
BLAKE2b-256 ba9f28552c06560056338cfa5fa391384d4b5b2877630264156f375d5ddbc244

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bc83501ce985fbda8ab30a91a00f471178d8ecea6b5e9ae9734bad72b2122e0
MD5 bec2170284001f72bdd5f09d9367ff7a
BLAKE2b-256 50dcccc83db0cfacc1bcd44ad9bcc4744d6a960f1b27c59bc4f68ef821ab3073

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6652695c1c56c7bd3b722f3210146aeb0d31f6137a1f5958fac58d559c4b5e0e
MD5 e52a67c9705f50d9c6f5f8cf9f21848c
BLAKE2b-256 58ccc5dc5dbe488e15db68ef521eb06cdcc0adc83590583a5950b03533797386

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e9d69fddc336d86aeeff8029de3a503975df7f79f84eb9a40c56ec72ec31f16c
MD5 1b94175f284f2968c02999fa2dde51ba
BLAKE2b-256 df4780cbbc26ebbbb78b770c3ebdac3826010254d74049bbf8be316e1b660207

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.4-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d93aa6f6da7a67b697f9d04f6e6dbe7ebf91afe6a957fec7a5f660687acf3c5a
MD5 2d099157e1ad7ebd520ce7ff17972d1b
BLAKE2b-256 c932b4852cc1119e3a0a00ba5c9efb14761e4a3605767c924a0b196ab96b8d42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6ff7ffbaec9024c7d347d9b60b579a165ef0a0aca9d15affe0cfe346fcbaca9d
MD5 d9d44a427a1120f7038b1d9a1d378c92
BLAKE2b-256 aa524cae661c0b6270c5ea14f46759bc3953630e3f5086489d56afe7e630b65d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99cc233a14e26d34e76856a253869db83414669bbffc36fb82555deec4e5809d
MD5 522408e8a34b73b31a9cf6f2338b2f80
BLAKE2b-256 e944bf2f12dfb16d9bb558532d977b52df438e51c2ac1148f699541f2b7591ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5161a005734cfd9b38e1141c572e3a24218d082a0c039be2b54bf1dd9e16dc4
MD5 3b134d3df6cbc6deb586053b441d219b
BLAKE2b-256 2c10aff7afad3f74c12e2c6c166d1ebaf50c052035a1761686ebae4015153727

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9d876cb67fa7a78e9c27665254cdae66e7bfcc4322b5f2b69f5a2242a35db92
MD5 f9efe5f308bfd3f7ade0b4786f6b0e84
BLAKE2b-256 5cb5c85d70f360571966653cac977c67227b6356ac2305da48d8fcb55dc33bf2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28c0887654f91aebc54d1ac5fb7584b7688c1f001cd2172772dc8082e80d7f7d
MD5 c54317892e4f15f1836e1891ce960dd9
BLAKE2b-256 1443bfe7436875128c6b6016ba215b665537d22cc79676cc171f2571516ad6c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7448c8a2eee3572116f9a4afe1a5fc1ce896a7d70452e107e5fabf237b2edb7
MD5 1d0f4d2f286e9d8e1e35bf8897581606
BLAKE2b-256 764247968d6c3bbfbdb526af9bdf46a56198ad158d07db1ae9bb8bcf31891c73

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c5fa44775720eab65288d072672ac563dff98f926cb2eee7abe10e4e7e90fb6
MD5 05a2fc9a8b2210feb1af96df798e1c00
BLAKE2b-256 03dff1b0c73b756b2bd264359c3ce0044c2bdb8edb1e87b3914a4ecdd71468fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 483cae8b9bf82831051d8b5ef88c1171cd2f62c42892f5a236bf4080475d614e
MD5 a0dad67d6fc26964dac44db7fffbca98
BLAKE2b-256 2bff149135703a9e973d66a329f23724383459b361176ec0ea5a6699f25c962b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bf7fc8970b17f47053f2240ee051fefbb5a7612b518a6904a7de5c889f648ddf
MD5 aa20d0045d233e4d600af1e21ad4aae4
BLAKE2b-256 a289af232fc427469b31346042b762f8ce0eb9392c7c4df2089e7909853de8ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6e5e077ffe8f1eae1945a22e3c79b71dd630ab044dd82585e04b5d0bff86839b
MD5 71aef0fa465e890e0a7ca61af54988dd
BLAKE2b-256 36cf03d9e176aeeddaf3dd0190218d12847055bcfa5fb0dda6d70736d7bbb952

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39a952e416915007c1ffdd280d91f611d32138b08fb82e6bc2a3de085fad6b2a
MD5 e9d847a1cf343217d70cf0f40f0c39dd
BLAKE2b-256 dac7fc909114c0d3880a67c9c4c732756d223ad0df11ea7b937edd53a5fb19ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b7c807e70d231d9a3dd9e1b99e7d3eb08701c78a8a03c5831233be68dcaf8ce
MD5 ba9e5b88b1bdd7e5292e353de9ae16eb
BLAKE2b-256 0ba1ff03dea60c8b0a17bf848fba78a1842f0e27d394fd975d4ea8edf5699a55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0702431874bf0d0c85fd13fbc5fcbc7ebd8c14b402aee6cd62cd77c45f08312
MD5 e9a56759f8476f64de2425bdb6d6de27
BLAKE2b-256 40bd3b7b312cdaa384d720cad1058882e927b2d7aafa519d8dfd9af2ba1b4dbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afb7d3d7078abf54e36ae632f614fd67b5cd7f131e5544c23c6383ee946020cc
MD5 648ec384bac659dba98c044dc63034d0
BLAKE2b-256 540c39f5daf6e790a74d13deee41a7c7ac47a6368cfe004a6a71a2731105bcf3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 137bdc86c960c94b6ff7f63450b8b21ee56782773dfd37fb7ab6ed6785b1f1da
MD5 22e32792ed9d92384921a88031f74a02
BLAKE2b-256 46cc1588f245ea6aa608c1b34e224073b243678b389c8adcfdea7810de2803c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35304fa74546b705554b523516ace82e6b40cf6ce87ce4a93d8f434102e8a74b
MD5 6166ff682c7388e8602e7c7f8880fb5d
BLAKE2b-256 f249cd327465ef022020499a0e931a506036cae4006367362ba7b4a8fdee5647

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 892e167552f7183f0689225ec61d65b013edf96c24919fae77ddecfb12f26d21
MD5 c466686a78ba0a6659991dc375b9569f
BLAKE2b-256 f431ff29323a044d43099b19342a77a84c65e8cf90478feda96e2af4b1182d06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0f9b25a98cc8ece3a631b95e77b900e8e9d782bbb8aa8a9ea9b9d8eb2fc30d77
MD5 8e99e2d8fd67d7424ef56b0655ec6e2c
BLAKE2b-256 ea44b10ffc237bf11b38e0ef4ec503f3c1b51eb70276306695d037c89682cc29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fb56cf0d268e59e27f3fc2909a7e7897d13ee85633dd7583b3aabefbe9afad44
MD5 2eff664c5e121546a47b6c4b7a2c6e87
BLAKE2b-256 0c27bf32da225153a851843780563205c080fbe6cd6c3e6b2e26a2954f797eb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a8058f44edc27bc5332295c79da31396156aee2d126f4467995dc338dab9eb9
MD5 4fcbef3d0b40bcaf411c551f858bec8b
BLAKE2b-256 75099d6223d9a89f0f8c138b9d8cc26822c2da1e0dd8161dfb0830c688928303

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c41de9b710014905874ffaeff9b7aef6f94a6fdfcbde964e92e60f6b9d9f25f
MD5 8670124938c86564da23688e3ed550ac
BLAKE2b-256 8a2f489c717b114624b89b055632c0b3f1256a81c06628533ebbbe8f757705f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b65b1f2344cab1b0c49f7a53828b6a3961bc8117a704327492b6f7d7f4c1b25
MD5 d1d416f22cc81b278a58eafc080fdfac
BLAKE2b-256 e51cc66f60a4fb77927b982924dc3adb314498bb42023892e09ff886ac31b1c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b37c27a8f216f2ad9009c06010d3a2b915457f0c8be5d50775483b25fd592205
MD5 9eaa167011d540b77b6dd0eb3c111e54
BLAKE2b-256 b9ac385964797860211c79767eb3888280151549b181dbda11bd2de9522ebf31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 092e9e19556b686f99a70c8f4da28ea2c941c87bc73ac46f31425f0f9eb40bb0
MD5 dae248660d79e5899f420ddebc6fd9ff
BLAKE2b-256 b4d0bdc6d6360b427fcbae078aa9eec454a858a9f2cbac240e2a3ebcf920207a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b19aac0bb4a5370938779b8191963f4626dc6a8c009f4ddd529695e94a89b944
MD5 649b2c7d25a8e2d39502e029263a7084
BLAKE2b-256 373119c3ffd1724c44d36579087dda9540d0903f6d9d5a21b168ead4d4f61436

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0948020767560ea85ed2bdb832254807e1dc3fc2d610667be264ba743a726beb
MD5 3095534a09d2fe6384edfbab42550d22
BLAKE2b-256 67de2e789f0ef509ae81bba13715c8ad55232412e69e5dc2c6e7af2b779edc9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1374a48b8834674a97a1dc09ea05dcaf433a6e1264b520c7b8d818abc63c96bc
MD5 ac3633a60e69b52270013d8be8bc10ed
BLAKE2b-256 d296d15571eae0e3db17bc3ef702584466f8091b1e7c3ef8a77cbe50fbe3927e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e58a229c13b9e8e34f694d4d178c26d945f9a77e6fb5ec9fb4f06074ea52a57a
MD5 3058b65a5b8a4d68765404230bf537bb
BLAKE2b-256 84598a18e8e869a601ace459691423e5718ed61c62d0d588c09b300b90e34d00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2487994d308acda3351fa0f22285646d11c8f4845e82ed0e7176785652dc18e5
MD5 0fcf5f0f4f7013cb110ce5546e0871ed
BLAKE2b-256 e092e4ddb0ff3fe4934f2055b34e3b1d101ff80aa7eac0f0dd3f89b32d753ac5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ae629c84677ad78c13d3eeb4a0a3415a1cca3a93f39fcd9945b025eb7f69067
MD5 8c8c33ad1979fe93efe863deb8cf5532
BLAKE2b-256 5d3c667ec24ba9e0767de7d4481488f1683881e56467d40111fb210ca09f87c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 299362c1554e85dded22f86148ef293958f79d7eeedb7b1180ac7a6e4956f387
MD5 b775a245da31917f99f5cae9ecd1baae
BLAKE2b-256 7f4e71b4c82fff9518e52bff7055df90210a62c0d4d35627b881e06a88a749f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f77c259943ec78391e7902255b966d4f1ede46b139c029f5cb76b1dca0e4be30
MD5 6af352b6a8e7be53989f7aef2c4e8535
BLAKE2b-256 77f78192844d913179149db87ec75685f6b9ea850a58429d5f6110ec7c9147aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 673a333353ae529eb8984d0d7e3496c7f027b9c77f44974b5bc299892621c89e
MD5 714e26620650fb2a7b3b8237e81f739d
BLAKE2b-256 e772804b56a603bece1a3585cd63b8e850cf310fe7f579f5e61aa72463ac7c9e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edc5f4eacf158c1eb2de39abe0ba0e89ea89e79a7717db6e637259d28e5bc2f
MD5 09379cd27aeeeb1d4e96b113e67e9bac
BLAKE2b-256 0e6db47bb3d4b2e539ad803e9af33974f2eb6857f8924875925476296b912aa7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8228dd6673d583f9f5858d4fe685b73ad264abf4a65c66efc15e535d30185ed4
MD5 6ead05c994fa10c66256384ab78df01f
BLAKE2b-256 5e5e77761e631042bd069da33cc6152ba6d2ce677f055a6b9fb499a32fdb79b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for usearch_iscc-2.23.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 18e9820ae2c85b0d683d5174e2aff1742e62814beb1b5432943c0ba3188b5d4c
MD5 6c3aeb8e04b8341416d6faa77f19bf4e
BLAKE2b-256 b7fe541958a4ccf8f6d7f656788cd48a2315fa81d63851dcb7104d03a1f815d6

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