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

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.23.5-cp314-cp314-win_amd64.whl (411.1 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.23.5-cp314-cp314-macosx_10_15_x86_64.whl (578.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

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

usearch_iscc-2.23.5-cp313-cp313-win_arm64.whl (400.1 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.23.5-cp313-cp313-win_amd64.whl (399.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.23.5-cp313-cp313-macosx_10_13_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

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

usearch_iscc-2.23.5-cp312-cp312-win_arm64.whl (400.1 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.23.5-cp312-cp312-win_amd64.whl (399.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.23.5-cp312-cp312-macosx_10_13_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

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

usearch_iscc-2.23.5-cp311-cp311-win_arm64.whl (399.3 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.23.5-cp311-cp311-win_amd64.whl (392.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.23.5-cp311-cp311-macosx_10_9_x86_64.whl (572.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

usearch_iscc-2.23.5-cp310-cp310-win_arm64.whl (398.3 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.23.5-cp310-cp310-win_amd64.whl (392.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.23.5-cp310-cp310-macosx_10_9_x86_64.whl (571.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 411.0 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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bc0bc6683ff9c6c349930356533ebc85f06427eb0a5c198bc1117e55c44e2af
MD5 d12d1628bf91b3b7db0a9ff3889dca23
BLAKE2b-256 3177c5084d88d74a1cbb73cac2f462e18fa8f659df7dc89a1a7734c3e100830b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d70dd625dd446d717fac034dc8382bccac8f06bd9822856bd791a5f3d5326a3d
MD5 aada45c4a3b984c3da393579aeba1086
BLAKE2b-256 ce7dd142af56300a526ad7de9d7b2193671e4223d4f49536fa75279558c65356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09b1a230a05b8bf86f46a51fbe2f77bd5154984f1f4fa540f1610a9eabf88eed
MD5 d6f04c7940814c28307f52d1c5e101cc
BLAKE2b-256 0c97410d288403ae6f52dc7d87a35200cb71ad9d37dd94e7fd8db27973579a72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07b6079158e3fb8a73f3ca9d6bca6586fbf8daeece9980eb34ceda5599a89e5b
MD5 648d57178608729c5f00f6cc19ff2980
BLAKE2b-256 05240c36a017f63e7fc6cc8108f1f0a80b7c80e00d651036d7eb7eb92f0bb77f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d486bc51808d8a0ca6108abaa9ae7dbef9b329b1f249525512668a98b3210f6
MD5 76d76c0b07cf13126f6d2330a51986be
BLAKE2b-256 23666a14cff341eafe201e1ddd7ee9b105d01f1fe7de8ee47161f49822214025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 300f5073867197efea6a28a1bf107103d41ea474d2f28475387352137147d97a
MD5 97e41cf3c11ff25a1ce04fa505e13aee
BLAKE2b-256 a4a2a86968a01248f799715b74ef90105740c19c1b490ba97af7a066c8cc6c89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 549.2 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.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b7693c6343ba914b519a700ad45cd1ca7dfc37bb8ffa726c6d68e64eac9cae8
MD5 b8fed6ac4d86c831fe8201dcf601c30a
BLAKE2b-256 83bcd0c537ab8d9d4ffb5acbb5d8db6eebad2ee310628ede99b08aef97e864b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for usearch_iscc-2.23.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d601d117986f794f1b97e6909e05ff6ad3f7791589f9df558dc1260f5f64b1c8
MD5 611fe733e60cd0ff1e4b8fffb660c65b
BLAKE2b-256 e08441ba40ea2f8d965632b35cbc916b9df4d654c6b19af32e7f5c9fc45e5344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp314-cp314-macosx_10_15_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.5-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5a539e2c4912237e870124c4d55c62df956792775156ed3e54a54ce5a17abae7
MD5 44bb9821b6208b808f920aa74e80d5e2
BLAKE2b-256 e30725d6a288214731c45a94de6054d5bc32698abb7c6321fc411c3aeb2521f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 400.1 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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a4f0e49e18ae2431d9f83498fa69630363071c8902506b739a1b25afd90f514b
MD5 8ce71d7a1b7d978e64e40eca610e15b0
BLAKE2b-256 2df9b1ba14582998ccd17eddf315435ebd554f043f50cc4ea2d0144780185f5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 399.1 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a24493c6fedf9fb1c9a5b3deaf294918c4acf45dffce3ed6ef1938d5fe5b45d7
MD5 3da27141527d80feb654a78a87936f51
BLAKE2b-256 b0a73cf54da9c12468b31036b8fc3d69129c1f6c8f310a85d4df0d3819b9e556

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 447bfa7d143dc0fbcc7dc9fb65d0572e38f9872995ce51f8615240853c66e35a
MD5 4872076e957bb37f9a7e998e4461e387
BLAKE2b-256 38afdbcfb9e879d050ccb060e3f8e32ec1dd0afffadc87a01099342d03683bae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d1a6843c1f78da7051f24e02bd5c7026e76fe88628411a637b7c89f0f31ac61
MD5 a7e6f7a7f1df52e4498dda6987cbf809
BLAKE2b-256 9bf47446c6e5e0e9a3675abe24acf29bdaef6aedd3d34e6e4f22818ee071a995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d00b569e8687ef4651e1e0edfdc21556ea6d85a4d9e39ab180ff412bb49148e8
MD5 3faf340c4c4b94fe55c39fb807e70634
BLAKE2b-256 9c85cafb18a068d68a47cd81f08d94a5d4d1ae3306c12b3af4dd12e0c28350f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2aec2fdd1b87d9466c7808bb2055686cb1f7deaea296fbd917f723677f3143f4
MD5 0d89c86534dc45453ae191f07d9ff06b
BLAKE2b-256 a32a68a652b5429f33164c97896d1353a46b9bddb2afedd807308d7ad11d6926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 551.6 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.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 123127d0b9d41639f8f2ca995ebb82de5a0ea417a657a92555cf811ed8e020ed
MD5 1c4805d9827f4683bc36a94418916ad5
BLAKE2b-256 9c6575f0213fe1fd4b8c89dc3f4c8df92ecffa2dc4de2740b169969828edc977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 581.2 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.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89af0ddcd14a5bbcb19245cbcf60ee123cfecb0095556a8fab126e2328c8633c
MD5 a0d916759fbe9672befb05df46e1dd01
BLAKE2b-256 45a9f02c7f4739b1ab32ca511f7f87898c938718a322e008f892d8861a76d81a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp313-cp313-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ab0c74ebca93839f53e056503332dd2b6b564dfb10488ec7f67adcc77ac4bf8c
MD5 ee2c4277781e197beb80f4e495800fe2
BLAKE2b-256 fcf33b32c62ef1e0b3b7a4fedac58d30f07a6352137911d9a358b1715cb2baf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 400.1 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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 36cef541a30d5777d3906a9dd0b1b2a0e86f7c14a3e534234bbd03e2c2d755a1
MD5 f825ca52cf4e2c2c9d18b5f26d099d2b
BLAKE2b-256 dd95dbbde7f6fb4500687de1e58c62a9c41949ed0f685a32e655780d46dab58c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 399.1 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15d15c53ae54f1d3d4a29d14df1b3acab646413c35a28868ea24b2bd64cfd789
MD5 ac038a16f12dc1fd63976214cca0aa6c
BLAKE2b-256 3e1f433b0203ae96e78951498d90cfb81c36845004cdd3475f4538ac2b1bdcde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e3557df0dbcc128e5135d6423a91c7c4d1e6910c8a2a4c6e16e38114d7d758e
MD5 c16701f4d638499f722f73ca661420da
BLAKE2b-256 71652adb4a9a59f3dfb3032f3477020683412804499f4194e5254e9b1c164692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3594f0c0ebbe1ea4b1b7a0205f0dc1de229a052d07ec8759620bda89a2315687
MD5 06f4c92c655c18a73ad3feb6b3ccbd39
BLAKE2b-256 d211b533766c4545b9bbb903d7a76d3237f12030116fce5349628aa0f0afc2b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5a6d4105ee6541e266799ba8c3c9313c602563bf6268b053797aac4dac1c723
MD5 28c8b307f2ee5cb1f72797f00b97cde8
BLAKE2b-256 404e29f7c8f6d2d004c7b0f818eeed66cbd488a07402a17cc93bec5142de8d08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03344bc734111eae9a185fe3a95f4ef7a73dc2361986ada6fab6f171b9cc3494
MD5 5b7ae2c3c235e00820f3ce15284ffff6
BLAKE2b-256 d04ce43d19f92fd46be75450a791bb98ca2315f913c74c2404c120ad1f060b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 551.5 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.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b36b2c2342a39823b6c4905c26e681708b6d6dcbd72450a93108083e2c1bb06
MD5 af66939c93480712f27e65284921c082
BLAKE2b-256 87c1d40f9d819c0f74b011b663d096853a85a3c9d74f9594cac56bf58745533d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 581.3 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.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1fee68a34578192a902951229dd66a4ef6234cbfb71398ed2cbc8abe80b2238
MD5 f9a8243aa5feda111da1752709e40cfe
BLAKE2b-256 f43eb05907ad4794b6f2f33e9d2c48f2b1bde3fd973e4789317a862ce41c3baf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp312-cp312-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 770dc405f458c90f7db4edb7ec8b67da48e9432e108204c21742e071a8fa3f29
MD5 97394414b71d7067f36c5d9eaee49868
BLAKE2b-256 e5a6b5a3e6d46a2e6eebade335686a9769acfe25847072a2ab64a011d8d5eb98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 399.3 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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 498de3e1a06bbcf9df108dc09bc4fa7baa0b00ceb1eab067aa22a7122a2c780c
MD5 dab3d0fdfce8a5031932760271625f46
BLAKE2b-256 f4ffaeb311b66bff076df36de812243a56cfdead53233e0e8f487116ec3fbedc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 392.6 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 209534aa35d7c94abe0febca70d9eea33091e7669510b28f950c4e8eb0c15a13
MD5 d50c34612f8f7dfe41362688bf1e45a8
BLAKE2b-256 45ebf7b91fb5aca2858778ab8f5e7e62c4ec34374c5445bd765be1a609270822

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc393c557f03b358366a0a309c82e6ee1aaf516fd5ba75dcea85b0d5656f8f0b
MD5 0f7593d731052e92fde58414b95a58d3
BLAKE2b-256 f8271edbbc11d5c2d68dd896bc3484199a12eed1702a7ac2fd68179911b9f7f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eba32a96d311622d1b053b2f70219a33beba0b41c94c0f46939210fb13f11b2a
MD5 1e12f2d02b58b8328f3c36e687952f7c
BLAKE2b-256 f6c393c3ee6dbea31120b505d7ae3f83653db2c0a3b00357d29758646d55bb8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5615e1c00f70db40e7664bb6b43ecce1d56bca14dffa425532f14927b1ce03dd
MD5 e278a6549efce2fe3005b34aa851ef67
BLAKE2b-256 1844a004a4bfaab4f80fa541222d468fd28e12b9fe5787b1910dcff0eee30914

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2ea7fb607e273b900395681c67c40882177b71a8e4a929737f60b7002825499
MD5 cb7cce18d7082f358d5870ee96d0f6a4
BLAKE2b-256 fed59a39431a01a136cf704f2315a93ee2db553635614a2fafe8e9ae4e4b6c48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 547.7 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.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f547c5ac6d89da00a7e480555976061b19cfba427db546bd40794e11abee504
MD5 a6b9112056634552fcbb20c55355caed
BLAKE2b-256 8e5ff0dfb1955140a3ade4e82939fc0eb0bed0f9eb310ff3b55d1b5478336102

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 572.3 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.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd225f85e17742c4f5b744a1e6aefa850ec7ee624d0e268e171b2549393aefe7
MD5 c13f54ffd041015d8a969b4c0f85f57d
BLAKE2b-256 d9339a9fb91edc642f7c4c6449e31dff1efc513b03c49774a0852b694bb521a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp311-cp311-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eb6db25898477fc2af0053276189cc52c6242c3ce1639a29c622552f39982262
MD5 012c6aa628f7e4d00277d8c4b2d11ccb
BLAKE2b-256 9e198be54512521235db8c6e4586775521a6ee515597b12785c699f7fc00e96d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 398.3 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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0aae615bae34cb62b0511902f2b59c19252be60b7237bb38a764f33b90626303
MD5 1b35e80d4db1b7373f1372292bc4dc73
BLAKE2b-256 937de12dc96cdae9cdcc6b2d414c1bc96579f9691cf4164289a415692e530beb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 392.0 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9ba7903dd58fd63fd7b6c721c712679d064ac65dfa83d3021c9fbe91d558232
MD5 2c5a63495cff1b863b375d679af71cb1
BLAKE2b-256 3e280d3408c49ca5c5ff0c571794c879277ddffb783369331f459a8c1917c459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30a0b2b99a44da240811d1f7b77227e8f83179a79e3252e4132d5bbfeaa311b6
MD5 92172854cf07c9c8357ff14704dde97e
BLAKE2b-256 c7aa4ef06f4c650024be339ecce700e785bb89d04c18c862c509a21a4f5dba2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8f4dc22d36ee212ead7fe16a4e67c5f6dea11f793dea4c69ccd49daaa538e35
MD5 e84e8cee9608feb22c133f220cf18f0a
BLAKE2b-256 110d10428c6902a0428fa30d1653ba84cac34e229d136c63703465feac898c0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c1b953a33405782c91f482504b765a73c2cd7d411eb6af306eb2fcb71f1a58
MD5 3b06b4507e99919e26ac2a780d02e490
BLAKE2b-256 544910cb698e7697f28b46f95ce146ef8ac8c3cd068090baec07f8988fcf5ec5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-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.5-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5094faf3be7d180f844feeb948a886633f96402d3b1f14b4cbeeb2e4d08763d9
MD5 1d02105c974dd92d34682742bc9813d4
BLAKE2b-256 b52a94cf5fdd49a10ae0e748e23efb2103b9ffc2775998676371c4378b410ca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 546.5 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.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd5d412de11d18c007f7866f0f702d4f804202f0f5b07c77b8f0d01b75654ef0
MD5 7ee61c25ad9963aa048aed4385c9452c
BLAKE2b-256 a1fb759d45d8794ef041ff70a3426db2f39e9ec5360112b2292e437a8851baa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 571.2 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.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3190fe0840f5dfb6efc91e9bd9114b6d864c2f0651604f9e1188f86efa1b6b6c
MD5 6552025a449f593c7f733eeb659364c7
BLAKE2b-256 6697d66b23ecda2d6c7b525ecb462a593e3631760b2cb9185564c51a9857a767

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.5-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.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.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5a657892a2930eb91d062e35d18f3237e4bc54b02fbde48386a2cb08fce46929
MD5 773d86a4d6f68a9c621f1e2541724cb6
BLAKE2b-256 9fc7d96ad8861fc3ec75971df84dfe58657506935d98bec7a7bfc1b94fb452ec

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