Skip to main content

Smaller & Faster Single-File Vector Search Engine from Unum (ISCC Foundation Fork)

Project description

USearch

Smaller & Faster Single-File
Similarity Search & Clustering Engine for Vectors & 🔜 Texts


Discord     LinkedIn     Twitter     Blog     GitHub

Spatial • Binary • Probabilistic • User-Defined Metrics
C++11Python 3JavaScriptJavaRustC99Objective-CSwiftC#GoWolfram
Linux • macOS • Windows • iOS • Android • WebAssembly • SQLite


ISCC Foundation Fork -- This is a maintained fork of USearch by the ISCC Foundation, published on PyPI as usearch-iscc. The Python import name remains usearch for compatibility. Install with: pip install usearch-iscc

Fork divergence from upstream:

  • 128-bit key support (Python): Index(ndim=..., key_kind="uuid") for packed 16-byte keys
  • Multi-index UUID support (Python): Indexes works with both u64 and uuid-keyed shards
  • 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=[index_a, index_b],  # Merge in-memory shards
    paths=["shard_a.usearch", "shard_b.usearch"],  # Or load from disk
    view=False,
    threads=0,
)
multi_index.search(query_vectors, 10)

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

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

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

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

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

Clustering

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Functionality

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

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

Application Examples

USearch + UForm + UCall = Multimodal Semantic Search

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

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

import numpy as np
import PIL as pil

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

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

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

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

server.run()

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

SwiftSemanticSearch demo Dog SwiftSemanticSearch demo with Flowers

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

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

USearch + RDKit = Molecular Search

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

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

import numpy as np

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

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

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

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

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

USearch + POI Coordinates = GIS Applications

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

from numba import cfunc, types, carray
import math

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

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

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

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

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

Integrations & Users

Citations

@software{Vardanian_USearch_2023,
doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.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.6-cp314-cp314-win_arm64.whl (418.6 kB view details)

Uploaded CPython 3.14Windows ARM64

usearch_iscc-2.23.6-cp314-cp314-win_amd64.whl (414.5 kB view details)

Uploaded CPython 3.14Windows x86-64

usearch_iscc-2.23.6-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.6-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.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

usearch_iscc-2.23.6-cp314-cp314-macosx_11_0_arm64.whl (564.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

usearch_iscc-2.23.6-cp314-cp314-macosx_10_15_x86_64.whl (593.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

usearch_iscc-2.23.6-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.6-cp313-cp313-win_arm64.whl (407.2 kB view details)

Uploaded CPython 3.13Windows ARM64

usearch_iscc-2.23.6-cp313-cp313-win_amd64.whl (402.4 kB view details)

Uploaded CPython 3.13Windows x86-64

usearch_iscc-2.23.6-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.6-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.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

usearch_iscc-2.23.6-cp313-cp313-macosx_11_0_arm64.whl (566.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

usearch_iscc-2.23.6-cp313-cp313-macosx_10_13_x86_64.whl (595.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

usearch_iscc-2.23.6-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.6-cp312-cp312-win_arm64.whl (407.2 kB view details)

Uploaded CPython 3.12Windows ARM64

usearch_iscc-2.23.6-cp312-cp312-win_amd64.whl (402.4 kB view details)

Uploaded CPython 3.12Windows x86-64

usearch_iscc-2.23.6-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.6-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.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

usearch_iscc-2.23.6-cp312-cp312-macosx_11_0_arm64.whl (566.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

usearch_iscc-2.23.6-cp312-cp312-macosx_10_13_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

usearch_iscc-2.23.6-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.6-cp311-cp311-win_arm64.whl (406.5 kB view details)

Uploaded CPython 3.11Windows ARM64

usearch_iscc-2.23.6-cp311-cp311-win_amd64.whl (396.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.6-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

usearch_iscc-2.23.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

usearch_iscc-2.23.6-cp311-cp311-macosx_11_0_arm64.whl (561.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

usearch_iscc-2.23.6-cp311-cp311-macosx_10_9_x86_64.whl (586.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

usearch_iscc-2.23.6-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.6-cp310-cp310-win_arm64.whl (405.1 kB view details)

Uploaded CPython 3.10Windows ARM64

usearch_iscc-2.23.6-cp310-cp310-win_amd64.whl (395.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

usearch_iscc-2.23.6-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

usearch_iscc-2.23.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

usearch_iscc-2.23.6-cp310-cp310-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

usearch_iscc-2.23.6-cp310-cp310-macosx_10_9_x86_64.whl (585.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

usearch_iscc-2.23.6-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.6-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 418.6 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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d370e8e83a281518fff55cf59a68143957d595b02692abcc653fcc2f0b40ae07
MD5 2662c4eb9d1802930379288bc7039f7e
BLAKE2b-256 e6c91ded43371ac5f209822f7fa1317662fad0b74278a62f4e73cea548143f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 414.5 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 35b33905d95a74cee954b0e937aeecc81747d42829c9f2b99453ca4197a690ab
MD5 5076d45d5240dda12c9c71d318e7f855
BLAKE2b-256 b556244bbfdb19411a96afd5b34ec95c850374844dba11a7f31081aaf41b3db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 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.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 420ebae0b0d9371b3f132a40a3ceac9cbead3e65c5d2edff97108ef0f73d187c
MD5 84741b0ddea1079d71ba6d7206a8dab9
BLAKE2b-256 9cf455cfbab71e0b8b6806a906faa03b16aae5e137cd4ab1b0624861ead3b962

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84301bee43aecbe25bbc28722c5dfe4b8aac08bfcdff7b84ef552c20b7355b47
MD5 98557d76d6e109c5429fda1663744aa7
BLAKE2b-256 cae9c359712f97342b207696bd2fde35960c08a90463f2b53e70665bc771d0c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40c206caf8d33247399fdac5bcbca7bf0c0f5463cbe304ae72d9f36789ae13ca
MD5 955cf749d7dd9c367a0d34f5860274fb
BLAKE2b-256 a1a2f4bba76154e0b157ab9decad96b188140072cb9014b8cb526cb848f16a99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.6 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.6-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06bd66f7db6ad7e46dafeb46ed1f69b9d898a5f1a6a00544a3697438fad5b42e
MD5 728f07b722014b7487de43227543d25e
BLAKE2b-256 5f23b0d33c234c8601b23dfa975da30d2629e6f9b8288ecd5bc40155dd034b56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 564.1 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.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64b26ecea9f35458b0ec26255ef6e8af97dfdc93e9e94a23316e4240e42683e6
MD5 75149fd70b83db17aa806f035181d19f
BLAKE2b-256 976e7cfd2f8785748542631c96d2ec6310fa2abfd9d78fe02916e41f01fe7943

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 593.0 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.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1da4399eb548e3dd8325edd9114ba8d463d1d12a8539e53bfc69b20a3ed19d0f
MD5 760f20fb149cc80074c8f890aeba1ea5
BLAKE2b-256 aea8780946a136d821ac6db9867687cebfa50142522c7b901e42eed439649dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 64f9bdead81d165dd8bb49a24a005cd0060c8779d933d9f0fd62ddbb87a7f95e
MD5 efeec259c6daeed47442f2c7785521ce
BLAKE2b-256 45d303047d17649aa44d7bbbd8d9c07c9f54e264c05e4b50219de7a0d4c3c7e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 407.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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 dfdb4825aa3f80ae2aeac1512a3684288edb5e0b3c960861b1bff9e8af2ece3e
MD5 3d0d07130b4a53eedfe948f71feb1313
BLAKE2b-256 dcb4a6f345c2ca1fc16c370a0ee2549b59f35c53ccd509c90fe75a47f3650e83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 402.4 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74de41de7e26a319c86ff83cc3ecfed34e9d1ab4c3cef9e532079a81aba2cd80
MD5 dc677ce1cf44d014d41767cf85ad9feb
BLAKE2b-256 5fa0cce993a2ad39f51bb7259f4c5dca11683940346b775cdc3361928944247b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 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.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d4a6ea14af47531bdcc91d6afffbfecb90b0b8b0e239057289556e66af7bc55
MD5 5c197a0d205c163d71ec109733677b64
BLAKE2b-256 87f3185253bfa054e663e7cda9e8da27b896ee4ebc58848d0f44b7aaa152535a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65ee334faaa1c05cd10c2bc667f165e5e9f23beb3d66a499311f3fad38eac7cc
MD5 8d65347b1505b31a6fa66168f130afcd
BLAKE2b-256 115dd70f8a4fd4756d18d3d613c510e70037a69fa45fe358a2638863c8b5f876

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7cf4ccf54c94b6137870a4584f6dae63d58ddcbeaedae0ef1dff2e3fcf313d0
MD5 d88df99ca7885012ab5f75230d12151e
BLAKE2b-256 32b86b6dbfee3e4c22965919f3e5ecc422df1bbaf625068b18a4c93f8244f210

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.6 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.6-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9bb8754f63177083831964725938fb69d3e7aa0316ccb4f02e4a354ba99f0d7
MD5 20b4bc78c08da50b10b5ac4de8dbca84
BLAKE2b-256 49ecb6334eb3a219bd2d3b7b9a42f7abf8180a363622b59ec9dc4ca0b6c97334

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 566.2 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.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbef6e674f1effe788eea5aaafaf009852769a7ecc79eca287fe30e4ecd0d4a8
MD5 55f711f64b264a6adc11bfe4dea5b726
BLAKE2b-256 6d4c480c24955fc9353ef6affcd00ec46a7159b4f583dee97f6f39b88f1b7931

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 595.0 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.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c40cb2858b06d01fe79a91070e6179ab8add87b879757db139905102e2694844
MD5 2a44d1a39bd34815dde9cc40fc194093
BLAKE2b-256 d247642fb0524dd403948dd56c079077371d53ce1ffa8b12f7cef75d0124b29d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 02fb2de70a838723f09b07a54ea33dbda13299afab9cd5175ac4ecfeb760c8ac
MD5 fd1d9b511181a2e84e6e59eec53c6b4c
BLAKE2b-256 e2a7e87840d9b0c48427a78bf99c38ad1a5954a3b55b2c772b5cfbccbdf5ff17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 407.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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ef1a9b472e760d5605442659c3a7054d29e1ceae09f34b6a9e7f44f3cf0c2aab
MD5 efb1cd27626dcabdbc5e382dad0c9322
BLAKE2b-256 dec3d5117cd7c83c9029635a1b755db93c3042e398c756136589b683d1bf0de5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 402.4 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bfa8466e06e5def3ec1d3ed08f6f18a18a55dd426a910358ae77298766c4e5bb
MD5 492073f47e8d107918d96e43606eb2a7
BLAKE2b-256 4986bd7bcf2f5ebf4d0855a571015e6c537185cc5b6f454d2ecb49090c07d94f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 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.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1ea321db71f9f88ba6d04827c28310ac7f4a7ab9abf8dd19c5e830199511ef4
MD5 7f56d765342ad4967a70e2385d44c388
BLAKE2b-256 52a1c9c922394abebd9d44d38c4f82a9a5123b959b50892a55362b1f48b08811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dfdafe13f997b2fdcec1c7d50d4bb4d40cb25fd6ca0310f11636654f921514e
MD5 20ba6ab6a24f0c2f38c034d7d04b3565
BLAKE2b-256 2f721346a958c5c6774f34dcc9f3592863e30f40cc6aec166bc886ad4698ab03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbec74806e0352fe6e21183372bfd878e9aa6f282917bfca740afe09794d43da
MD5 33a53d54f94fbbea5353e5f96eab5b74
BLAKE2b-256 3f8eec327beca8ab9d3539a4a34e2fe6c3378d7e9953a1541d0cd8bc0e869773

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.6 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.6-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdc417199dbc02d04cc88467d536e97e0c196f8e720dfeb50c969f18596c35d9
MD5 18edd889471b11dab5b97e51377016bd
BLAKE2b-256 fb92fdb9471f5ce411a6b66041794cb74c8ae7f286536d97b4b4fda98b2c1a22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 566.1 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.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23696eb8630aca0f0e643112a5f77b665927b52eb5dc826cd66dcadd191f1d0d
MD5 4fe4ee9568ec764affc56fce738c6ddb
BLAKE2b-256 689279a9b91dd4c0ec156055b8dae0d4208eba08fee1731a2bd740476c996e9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 595.1 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.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a3a586cbc2b4e9676258eae84683e1ee3abb10f6d04d8f140b9a3c864cf584e6
MD5 df64149e6d534656d941d22811f2a27f
BLAKE2b-256 8d679bd93e0f8022d98230154cd9b02f93e1ae966803624ecd2802a41f9adb9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b6fe917837c9712fbd6e5d32d6b5119aa7575f1a35d1bbe500c5e92543bdd0d7
MD5 1fffd34d2bf580c1010bd96e39680c1e
BLAKE2b-256 225119f6dc69dcafb3784bc6c047cb6994eed664cfc8eab1101908d638d9e59a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 406.5 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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 65a64e745e0f08eabfde39848f148e03d7d5349307acdafb453af29699d47a45
MD5 252c1a918fdfdbfaf3f1747e4ae635d2
BLAKE2b-256 2628898fe1b07ac4fdda3b1fb187cdb9110c5bd3f28b833217366140dbbc95b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 396.1 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fbc9b6abd08f0cd1410abe13b51feec605c592b041067a1e2c4dcd744fda1791
MD5 821f916e969b75713a37bec5399c3275
BLAKE2b-256 a468657b2dcf968112f74e20b55e51f7cec1588ba2d9eba782db7282215127e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.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.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4823c65d1f1dff70ec1af310e94ca03bc955cfa2f3c8522bec97a37ce8daaa07
MD5 a3fe5cebd2eaba3e2241af26277aed5f
BLAKE2b-256 e2492f08f36aa617cfd3a29aa17cd36526ca653cacd8b843ea04a2f91a5dea44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a43bd580e517372810acceb5112c28ed4e434d100257196e883305f86cad2607
MD5 edb098e5e88e9cc4b8bc46aa585a7a68
BLAKE2b-256 8df34a07084e95406d77388a145803f40645ba5d8205d82d2374b25fc612c237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.7 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.6-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1db50cb00b8c6f354e78e741d1dbc0c5341fe3ee26103239de4e785b11bc6c37
MD5 4b080c8260e40cd8d528eb24b959f3c7
BLAKE2b-256 2faaa1ab4cb7f21164115d2c3b5143c44ac80f78a1f503a24f058032e7fe8dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.6 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.6-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ca9f4b3dec9136cc2083a73b304a26be72d3d75b5b1d4f547ad97fe7a0ad562
MD5 4e57596f6eebf85e805b2bb2cf1c3c31
BLAKE2b-256 c1e2d8835384a5d63f4f42d988bcffaea9148b52d567483f6d6b338baf641826

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 561.3 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.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 735f7c86a199a91eb9e7d7649a20c8c2583fb7e0ba92dda3c3a6cca677f54fc2
MD5 986c2b517447391d895f6ae0d4387604
BLAKE2b-256 51d22476c18c3417c3961d325dceb7a24327336ca3a2681d5d8ea93ec8aabac7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 586.5 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.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 935a3d32ea4ba0e5289c6ac78e3017493fb473a670afdb3ead2805b831f60454
MD5 0ec5fe363e4bb0b9abe7a28b98480429
BLAKE2b-256 fea087eedbcd956e448e2fb5a11b336be819f50ed78323f8d9de17ff2601bfed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 32adb378dedcbae9148a9b92308eafe0a2308b940c99063a539a1447aac1c4f5
MD5 6c6ac74787dd33cefee14d0f1276084f
BLAKE2b-256 7b3f0bf128028292b8ae5ebe507c8a53dab1e24935d8375d96f25ad093f6a38d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 405.1 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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e9146e7421c57226119ea3f255ee74814fe22a7f01fc671f16088cc82a9d1f3b
MD5 356d6de73de02cfe6834ebf801d24703
BLAKE2b-256 bb4a0ef51b2f7596d4e1faeb752b084356702d7c8c9688c874da305b45762456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 395.4 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62226c298e0dcf24a6708aefb03bd6f4ab6e37702e6c83c2fd30cde7b5e43447
MD5 c7efd8b32fc03580472f3be38b276a18
BLAKE2b-256 b9fffaf0adb5e855b8d847d05691116d06324133da6336c55839c308bc3ab14d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.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.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2087a4cb0529145e46aac78e00926335fee59bcab0502d878071dd1119171da8
MD5 ebeec38747fecf022ccc3ee999daa605
BLAKE2b-256 8c681206fe5232a2f88c26f48657e5310a21176e3de4f80885a5a6af77742ffd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 672235eaf80877316568c8f1d05031b16c1b7d4f4f3450fd776282335968fe8d
MD5 add2a1937649047972cc9ff7bc0a94b4
BLAKE2b-256 67517ddd885ef9a4cffaa46bb552bb298290a8a79500fe208ec08416ea5cccc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.7 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.6-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0658ac00da7bba9aa32db1c965962178571a27d54f1ae90fb50d36010f34ebb
MD5 17ab66ff26b59015c30099ab9c1ff7a9
BLAKE2b-256 05bb69e4e50665a740a89e0a254575432a99ec9824eec42aa5cf5ded06e2e40b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.6 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.6-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92cfc560d1eb9b8b4e81a3b93e587dacc7caed579f726ca1668b3578279ac53f
MD5 acac5f737c46b02e60ccff11cc53f9f9
BLAKE2b-256 afff3b2203ff2aba41620d0f3487b33258b14c46e13ae796a35131aa4c678b34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 559.4 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.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf1e71ead407e644eeeb61374a6cf6da475e39c8a5e00097a0084eafe1fdbee3
MD5 9eb418b229482f9d20e8da0514904e3f
BLAKE2b-256 77a13abc035523196c8d4c768cc3af1fbec4fac49b8171af70f414d8a4b78c16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 585.0 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.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3b435bf453810738d8558813e513cb07184d6ae8aea1733e28eac102e7d8380
MD5 7e71e36978f10a89effbb73114c4474c
BLAKE2b-256 983de5c9bc2fcb4fc2ff37186193a86ab9ea4a29f70878f5666ecc808747f8cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: usearch_iscc-2.23.6-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.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f5d1f5a9555dfa1a5dc1a6dd795d78b87b114c4a955507f11dc671d2234570bd
MD5 aa43c25a5192813687177539044819cc
BLAKE2b-256 b024a25653ee483e0b07a06e3def9333b7290828f177ba28af6f2c8d2feaa74b

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