Skip to main content

No project description provided

Project description

coreset-sc

This repository provides an approximate spectral clustering algorithm that can scale far beyond the original algorithm, while still producing similar results.

This repo contains a minimal implementation of the Coreset Spectral Clustering (CSC) algorithm given in this paper.

The presented method repeatedly jumps across the equivalence between the normlised cut and weighted kernel k-means problems to apply coreset methods to spectral clustering.

Combined with recent work on fast spectral clustering, this gives us a method for clustering very large graphs (millions of nodes) in seconds by only running (fast) spectral clustering on a much smaller induced subgraph. It can do so in even the most extreme case, where the number of clusters is linear in the number of nodes. See the experiments section the paper.

Coreset Spectral Clustering

Installation: pip install coreset-sc

Basic usage:

from coreset_sc import CoresetSpectralClustering, gen_sbm
from sklearn.metrics.cluster import adjusted_rand_score

# Generate a graph from the stochastic block model
n = 1000            # number of nodes per cluster
k = 50              # number of clusters
p = 0.5             # probability of an intra-cluster edge
q = (1.0 / n) / k   # probability of an inter-cluster edge


# A is a sparse scipy CSR matrix of a symmetric adjacency graph
A,ground_truth_labels = gen_sbm(n, k, p, q)

coreset_ratio = 0.1 # fraction of the data to use for the coreset graph

csc = CoresetSpectralClustering(
    num_clusters=k, coreset_ratio=coreset_ratio
)
csc.fit(A) # sample extract and cluster the coreset graph
csc.label_full_graph() # label the rest of the graph given the coreset labels
pred_labels = csc.labels_ # get the full labels

# Alternatively, label the full graph in one line:
pred_labels = csc.fit_predict(A)
ari = adjusted_rand_score(ground_truth_labels,pred_labels)

# Now we show how to use a custom graph clustering algorithm for the coreset graph:
from sklearn.cluster import SpectralClustering
csc = CoresetSpectralClustering(
    num_clusters=k,  # required
    coreset_ratio=coreset_ratio,
    # Optional parameters:
    k_over_sampling_factor=2.0,
    shift=0.01,
)

coreset_graph = csc.get_coreset_graph(A)

sc = SpectralClustering(
    n_clusters=k,
    affinity='precomputed',
    random_state=42,
)
coreset_labels = sc.fit_predict(coreset_graph)
csc.set_coreset_graph_labels(coreset_labels)

# Now label the full graph using the coreset labels
csc.label_full_graph()
pred_labels = csc.labels_
ari = adjusted_rand_score(ground_truth_labels, pred_labels)
print(ari)

Python Docs

Project details


Download files

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

Source Distribution

coreset_sc-0.1.5.tar.gz (535.2 kB view details)

Uploaded Source

Built Distributions

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

coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (8.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp313-cp313-win_amd64.whl (529.3 kB view details)

Uploaded CPython 3.13Windows x86-64

coreset_sc-0.1.5-cp313-cp313-win32.whl (366.1 kB view details)

Uploaded CPython 3.13Windows x86

coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (604.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coreset_sc-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (683.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

coreset_sc-0.1.5-cp312-cp312-win_amd64.whl (530.0 kB view details)

Uploaded CPython 3.12Windows x86-64

coreset_sc-0.1.5-cp312-cp312-win32.whl (366.2 kB view details)

Uploaded CPython 3.12Windows x86

coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (605.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (683.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

coreset_sc-0.1.5-cp311-cp311-win_amd64.whl (529.7 kB view details)

Uploaded CPython 3.11Windows x86-64

coreset_sc-0.1.5-cp311-cp311-win32.whl (365.4 kB view details)

Uploaded CPython 3.11Windows x86

coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (609.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

coreset_sc-0.1.5-cp310-cp310-win_amd64.whl (529.9 kB view details)

Uploaded CPython 3.10Windows x86-64

coreset_sc-0.1.5-cp310-cp310-win32.whl (365.5 kB view details)

Uploaded CPython 3.10Windows x86

coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp39-cp39-win_amd64.whl (530.9 kB view details)

Uploaded CPython 3.9Windows x86-64

coreset_sc-0.1.5-cp39-cp39-win32.whl (366.1 kB view details)

Uploaded CPython 3.9Windows x86

coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file coreset_sc-0.1.5.tar.gz.

File metadata

  • Download URL: coreset_sc-0.1.5.tar.gz
  • Upload date:
  • Size: 535.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5.tar.gz
Algorithm Hash digest
SHA256 370fef83b0186b32985946035beedcb966fff98a053a0eabf372035c7686d3b0
MD5 8e892407436467971d68f296d3df6d9f
BLAKE2b-256 ff11bfc4b2284a74f18ff98cd14a56a622196870035354ca593713c0d9e5681a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4693dbd1ed0675cf6495bcdcd8413051b9467302600078f812250a11c70c7b9b
MD5 e2be28c2e8675c6d2df8a9d437522aa6
BLAKE2b-256 e04e9d3a442e96c6b1838e63b4269ee8174f3a68d7418cfa912ad43f21787381

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f3bf7ac0c55a860e57d1f9fac6eda8e5a668fc2427b66c0b2b4bba14a1f670b
MD5 16b37bacf4394ad07ea84fcc22192107
BLAKE2b-256 27ead538fe813e01d367e528b7a45bbcbce7d4b4a7481f2addc1c843da4fd519

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba462b0627ea14d5f41f6bdf725e3005f04bb44dfc9bed33bae2f8f15461afe2
MD5 0e645c0f8ea4711e6a644279f2fdd737
BLAKE2b-256 0be32931886b223781097797740ea06e1982b3b3a072cade65466ffa93e8990e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c32544e7651ce4b045e5ac85ee34768513429416450524c5b6cefa52a6d40751
MD5 41d770e9ea876617b5a1ad478fba8e4c
BLAKE2b-256 7fc049bcd6441945d256efbd4fb68484a22da40d78bd46646b9b5214737b0c60

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d392436d21c8523b9055116613db18cd5f1a6dc7096b4eb4a6508760a256f65
MD5 d79697cc93e12ce2ca12c9aabf882722
BLAKE2b-256 39fd50cfe12a65112ddfeeb51bc266bfefc85bd78f7ca6058a4939a42e98f13d

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1482fc820c67eceb70f6808a728649be4067915ea3f4257456c913eb0cd404f2
MD5 4ca13482dc9980cbabf580701ac46516
BLAKE2b-256 e8fc14eadb627b231c755da914fe06c6c0ee6f02192f01e4b66b4837661b865c

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea4f71a077793c805ff1df1dd2f055bad2b93cde41f87bec3d8ab16cc91b6c04
MD5 ef4cb9027b23fa9d6f4c5ed85ff8e879
BLAKE2b-256 376049249d2dbfa77d2b1b461b3c82925856f5046a50a18784f4eb26536bfee8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dde098d3d4fe1cdf21043e0ce795818e338ee330d203251b40956e0ac62409ed
MD5 f97e907269d9c7a10f60b0d4f5048658
BLAKE2b-256 493ccffd2646140b8c704f6f8fff89d55a99d00eb9254fe2ae9a5d81c00adfc9

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4bac102bafbb6d76242a776bf944b89fddb48971961b807b329292c4c941580a
MD5 0cbd316f00ef2694bfc32c5634d924dc
BLAKE2b-256 70db9b03ba22a39eab08ad00fb23d494c4a7b279a26dc05fcc849e17c85574ef

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb12428403524f9a69e272def3293f1d0c2d534c1713ac0ddb5affa621fb3fd
MD5 c9fb3052669f366b1d7d3c1aa84f5c24
BLAKE2b-256 2620deb6f8f759d1b2284f2c77cd9318f936a63a6aa45dd3d2d08f5d917a1066

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dec55e11325734bbbc3ca1943e74aec8939cd9631c8325c87c37d2c7dda7619
MD5 abd10beddc0cfdb600af6ac263d83f02
BLAKE2b-256 5ce4b7e9a202071d9d54d2ad62c638e542c146cec67ebf5e6422ad5df8249e93

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66a11b71231a7201880d37528aa7e5c99dfd75281d0f6456f76ec574b64002c0
MD5 3a95e926a28e9ac4c8cb95f7fabd27f4
BLAKE2b-256 e97fa48bd6f7f80fe7dd1959714ff293defa1f73d3a7051cfba79d5aa2598f77

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d33cc71f78c0dc13344213b7f221a280ca8b292f5baab56e760a3a11b2d5b520
MD5 624b670601e0215da76228f02a7af012
BLAKE2b-256 80cdfb3faa54ecf5bc9d47614d914ab33b9bdf47c75d31cd14d6da7d3b634b20

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28414333dfd2605d1358cff3473917a26cd053dba054149cb8c3543ef8eba100
MD5 fb4c43be9ccc1c25945a015ecd5c30d7
BLAKE2b-256 3543235bed3914ab1110f2e8d9149cd53a71cd09115d600309e20c419384f275

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 896c1c32a05b9dc568036481a4e4a2fb20d4cae642d93bd9adc03061c4cc7a45
MD5 c910e015cc4a8d0f21fa4f5af2e3b18c
BLAKE2b-256 9125c4047f6398bbc93d9c2a8a119c7e1f253195e7f526c2033bebd3f6822250

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 935118344465aa49f88f502093a1e963158510a14e663178a83e0fc044b87b58
MD5 0ff064b9edb56f47d083e4396e5f203c
BLAKE2b-256 3177cb2c279f8ebb60393927bf3592f026ac1e2a3e3f0e6daadff974dba47e68

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ed2537a11efaabfec13eeba8f7f7fd937cfb314c8ba8c6b9a4d42338e56f28d
MD5 374700259c6e39bcb5aee23822ce205c
BLAKE2b-256 7e2d71a732da21b2f9b8ad1e7783d4441db4c813ea0dd478fba79c4e39d0404b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3aa830bd00ee67b2aa54c82c40d9c788948cd56091525508bb7d3bf7ae4a7f05
MD5 50af081326ff275b2a7dc4269a170dc6
BLAKE2b-256 9e14d6ce42a96cad351ef08d15b748f2237df172ab6ef9afe7751f18f692a25c

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6e9a980d3e54b225d6822b9219d0a6496df71a0686246110866eeb9877b303b
MD5 530fbdb42b250ae00c918248c0bb4145
BLAKE2b-256 b2022eebf2928cb8d078eba556dca943c44bee8f0e74159d59c063531c37f6d4

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b57c67cbe4294178365874e0f76a6fbc92f827de93c13d8b44d8205467a954b0
MD5 8c1ba76818dbec2f7fcf19553fb178a9
BLAKE2b-256 bf92d845940629082abe6955ad605ca3dbb768c5a8d5cdb932f08dfb7a69025a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ae4ed6dcb616ddc0d2de1baadea9d845a0d05fbb5b3ddcbb55a06212c30b88a
MD5 ef1a8132e19b8b2ff16f7b7c939352e9
BLAKE2b-256 1d3b1710dcb9c1ab4b2dadc5000bb497e5801457bdb3e8ca15334095c6b3ec5b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62977b531c969362ab04caa9edaef8888c18bb57a461aa911a95263b688cbca1
MD5 e149a854ede266d0cc49bdfbd788a199
BLAKE2b-256 47c8dc6010a03058586b0ec3c1d9c53e72c3adc8994793ee0674654deba5f4e8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34a1ce9ec592419244c1d1841a304128265c60c47b9c2603945faf89336adb1d
MD5 25221fd3573404380cb6e9622a80f48b
BLAKE2b-256 af16e124fcf5312def1a1f343bf699087a876acc72f724985f7b22ec051e8d05

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca48301c1cdfa1ebcfbd0536baf139feb75eb4b246cf4a47d3a1414892b15147
MD5 7bbd838865883ede03fa40aabee40457
BLAKE2b-256 38984d087844e0bc793187ae6018db4aa7595d7ddde5d0fc66fa07b26ae54e19

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 694ea9e284f5cb22c2acc6d24ca56d7ab07c9a6145dffb15f313c21618fb43c7
MD5 fd0961a1e48607a6ef3e2da345225fc1
BLAKE2b-256 defebd84b65b9faee74af581988ef94ba5c3a0c016f6727b58214e2b6f5c44f8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98e604f28e7423b547c4db7929b3db42026b044dd79c3f8481ae28f84a7df4e4
MD5 48dcb26d09aa59fb732e19e3fc280051
BLAKE2b-256 009d5e8a6669bf66a155920d9b332b03c7b62278cc6b8a9bb8259b58c0332d43

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bab935a303d3d31e577eadf417055bf4cc12f8fabead1c297c1baa56c8d3030
MD5 408c7593294ab61b868bcac6d6e9fea6
BLAKE2b-256 33d46962e798fa803f4f37a974a67a3c33d7d8e2d274cb14145dc4749e7b1a06

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72034f1987bd19c6de4858e1491978ceb5f012444e56303f8e9856c19e88d724
MD5 70923fa1d7233316c9c3d88d018cae1d
BLAKE2b-256 6fd96080b0168382fd6dcb105ce14244f14cb29033719bb096aec9cb7ccda941

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78658787883abf16b570a6485ba6f2cde6914ed3320720a1424c315eb73ca24c
MD5 ebc94ae62f154f898c28482425530885
BLAKE2b-256 9e3fb7cb418ec3f14da6a50e23c62d2568b6b0a219eebe12171af951e15f6d15

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce585df4e689d6d38c85d19006804a8846a4037f8c9cb971a70fa2e07b369b18
MD5 84603b3cd766feb925ef5aff0b392528
BLAKE2b-256 3e567c5d6b476610bdbc14e8f392c3bff4fe74bd0afb14a631d0c203c603700a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75daa06c2ec68a8d487aa27fc467a9c5608d960223737c6ce794ac8e16c3f0f1
MD5 01a760b46855730dda2a7c4e5fe5e36f
BLAKE2b-256 dde312ac52265b4840899560417e16ec49679cfb320a571748e485e68563bb70

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d1ea62e16f109e1e7a6cda3e679f25674918dc85978b163717adef1650a1ce7
MD5 7be9e277b67f8c36fd6a8790942ed20c
BLAKE2b-256 9193cc65df89d2016ab300ec154a2a5bb7d1ad202029ae5a68dcc83040830dbf

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 978fad7f7b9161ba0c109f386a639953f31c4f0775abd8bdc5dfbf66ac32016a
MD5 d25e05b0a1a6c0570d1744b25d31cad0
BLAKE2b-256 ee5e3c485d2a391ac22a1d2fa1f29de461de1477885609003f44156df457ad1e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5793130d7b86223091edcad6e3812755a025af2eced473e79870b179a1f1a38
MD5 a93d10d0ca132adbe278cc9a84848cb2
BLAKE2b-256 9951ad53f2163b59aef9d95a93b80234bb9005a59e0f46193f92b1d5bd2911b4

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54575f929134bf433c5734f7135252d501ebd3b29226e3bb778d0be708dec4db
MD5 8e651bb00e69cafed879ead5b6a1bcab
BLAKE2b-256 02324c1a522eb9e29638b357989d562ca2b86743bd62036d95a77a7aaa46c29a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6120ef3c8abe65e0bbba7581fea854a7551ff2cbcaa302b758f5f6fa54e2d6a8
MD5 17a5dedaa3d3b40b2eb873aa028672fb
BLAKE2b-256 0ae9f1297cf69f7417342bb18e7f6078b31c68e399e7024c5531780d9cc2f7d2

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a81e3fa8c0975f05b8653f8332901dda63135c86a07a8e5085455fe3f3658032
MD5 bf55c35a59f4ce7958e6f70fca456761
BLAKE2b-256 56e3c63e1404a27c9142562a58bc0b01f9844ae366015249d25cb2aa598cdac9

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 366.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 70de7ae4b2d7345b4ef976f937df2325cbdb7c8ee558554499e908e11d67f237
MD5 937734d0ffc3646c7234ace34c97873f
BLAKE2b-256 9b7ad836f8acb5927be90d8eae5b5499062cca6511078a54469094df4708bdcf

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53ce18a94a34a32ac2cc733a46ef8c24b2b431a21c049c688b4efbbf251393fd
MD5 ddecb5ed6bf8a49307b3f037857e1535
BLAKE2b-256 6992403a14f6454664e8031e349583829ef8533b3f0125cd2a0aabf270e9d8c8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0219ff668b15e0ce502e820e7fdd238f9bec7206a9920fa8cc83f8d5097c820
MD5 22e2811c3d469d7ee9cb22c597519dfa
BLAKE2b-256 d3b5a23614cb7c0c8311df4bd2cb7515287214197e290f53fd5eefa88c739691

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80e5aca29a1001d3f5cf3125ee285df4993498337d8db2b80b8dd189a798c4e2
MD5 fbf4b866e9b5677ee0f37f5fd39e471e
BLAKE2b-256 1261b057103cc8f623209b0755e3b1d42a7116aa2f3eb64510d4ac60c998c11e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ab1b42d724cd6aa5d61348c55437f72a17cd5b2c50822204a926f0d03fd2491
MD5 1b6b8aee30fc80ffec4680513f87a00f
BLAKE2b-256 6a96616c16521834d4498d7c6cb29d52a7a5aefdc130ed7875c11b7702bd25ec

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 218e78ea3ea27fd97bcba0ce1525a7dced06fd8e83209d3e3e8d95e14e72cee7
MD5 4714ac3ee626bd4524c8c1b02a3535e4
BLAKE2b-256 bf320f4c1e05b16648151d2e1f5beadcd2f7d1d5e07ac33bbbd5141868647fc0

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96446503fac1c87cd7dc683a8fb800ec9481c5816e0e4a8a9de5c1fb5703d6c5
MD5 2ba2697255deb5510deac5793a383124
BLAKE2b-256 e93728dc73f6c79103dfedf1f6970a69b0674687becfcb38b48b57a35bf23f66

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57916f3046f3f2ced66b571c58637ba173f619f35db90cee73eab60ffea4872e
MD5 7d61255aa30a81b84cbd64f9eaafaf77
BLAKE2b-256 4e958860795cc5482cc02d5828b26f0097245f25fd562575500fe23c7517f4d8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f069160476fd4a7962cf0b9d488a797c7d834812ab0ca5a19d38e1b3a8c9c231
MD5 4247c98c50d340f8fab65171fef3e688
BLAKE2b-256 767f65df9f471655b0c5f719a8fd6cf81b063f6184eeea1d296a34a405069d3a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93531f53f070e4b2b073df9f0e786dde6198f5db4f6877890dfc799e061251b7
MD5 29e0cd13de15a62044a30b89d3d9dd1f
BLAKE2b-256 36cd187188b4d6d2c496e23f7f09e497e620e4132c18b9410a0d236b4b3b1ce5

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e9c5f81b7d28a933efa8bfd79a03c0a9f30485553fd1b844d60c5aafd0423cf
MD5 b9dcc86d0a0a77cfd27c82ea45e5a79a
BLAKE2b-256 d9d180bce6abbd17452e41fe159e8881aa777f1a8a56aab5c771ca3ce7453a20

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b449161422d53363ded7d320ba40458601f718c75efe3f7a3e05c4648715c121
MD5 3f0f2ca5159bf6c88fd17fb356928bb8
BLAKE2b-256 aed625879d2df3fef01af374df476f884f5af1eeeb17cec2188ce532b140fb45

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b02fda758216639bd8ffdbde09214e24776ee047bb08e904a9f101b0338fc0a
MD5 dbcbc888d356509e8e5b9945aebb0047
BLAKE2b-256 414faf15c585f982c46b88a2d824aad39d7ed9b2f0c5d22359b3a7cd3965a08e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 041523be26e0864bc833772d22f38a97a0bfbcc86093ace5792e55eb4531d591
MD5 7f2fff2642eb1f9959f41db385675134
BLAKE2b-256 a66462459c501022c6bd2a627b896552160a8fd0de5fbed37c42c3801bd4cb46

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 366.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ce593d1bdbf29275d4a553881ae05f20093b5130ad2e0afe6c0acbc56c2a5a2f
MD5 eea92741a56f041acb15763e22ef70db
BLAKE2b-256 490f94316a5de8a74aff9864a1253358a9c0caa5717c638cbaffcffa8834fe54

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6a8f0db52c94ce18bc3048027658885d313477453efdcfe27c7e6511c995118
MD5 d971658f48a38ed60c09e6d99b3ae1aa
BLAKE2b-256 884942b2d47df96ccd9950db7ceb63d72a785a35bac8f06d7824d59544d24f88

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67821e6c371e5bebf4e3a927a49df85693ecf98273f351fe55245e6e59536c64
MD5 fdadfc08882542f5e4f51406bc88d982
BLAKE2b-256 6e0e6bb8b06ef4e79edabc60ad934ed4b23b822931832fc972d4a7aa6c54b6bc

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12d6912320a55bed379efbca7f6542cb4669b5938302fe3f8778829be4b3925c
MD5 c29bbd29cfe2dbfdb6dab19570d48ecd
BLAKE2b-256 ac55269d1785f4acf33aaee592936369ff3a116ba19b3455d7b9a742458f06b7

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f29fece546e8e53934da0b6dde52a263b4b31cbb1562cc0fa50dddcd57bd9624
MD5 9444105accbd7b8510ad8207d02c803e
BLAKE2b-256 b70530881b63f5a0efc53d236a048eead291377d09c55d60108ec0d20424f374

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa8f5cea14e6f1363e7bfbce429fff545d3d86d11702a19a5da78de64df7c552
MD5 ac9467171d81ee9f04d87e5517036107
BLAKE2b-256 891caca466cf146898c55de84e02999a9d40a58c76cbd01a7c8a16c357908e6e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8dc229928b367f2a64e670e2c5b493626f189851d66ebaab72490661a025c399
MD5 2f09e497eccfd53e26c99d3118e46131
BLAKE2b-256 9f4331a5005284b5950a11d1aa380e6995a1b099811ed80ff71cf31766fed003

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92693408bae285aca460870bcc722c58cb5d9b12d69ef5feb3619935d0b3eb6e
MD5 83491357192e6ad032e9e734d221d083
BLAKE2b-256 bbceb4a4bb3904ddfe7564a21f6fafe957e169f9d1bc8feb80b8d7102b521244

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84c43dc7ae5b2204183bf19ffa991bf3f5a588bb6396d3a1266a0568e8450143
MD5 80d0a946e064dc42581447d42b43c185
BLAKE2b-256 e92f50dba1aa85219a0e119570e88af34a31123a1b9d0bd973173346bd9e2600

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5ea13b5c56936db94e6c3f9e791d36218fe02120d6a323975561d112eedee84
MD5 134e134315219aea3e926d304432be4e
BLAKE2b-256 90807e0fb005494b0bbf3cbb17045fa88d3255ac4faf12d619fc38d19889f772

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7db7c0ff4c689dbf11711a4b42e4dbb5996b400ff60f379a7194ad3a209b0085
MD5 3316a7be782db6af1dedbf20e46399be
BLAKE2b-256 51d55b73a96ae0a7475d873226e6e1248ace4c71a4452a7efbc947ca1559a017

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 039125ac757c61ce2a87b6d9d536adc4e3d8b9ecabcebc35f070e7717335c29d
MD5 8d10f72b79b78ed4e7f4f6af4ec1bb71
BLAKE2b-256 ac0efec497dfa0e7672c0a3f9d6c59b000d52fbfe6f75959efa8fba5e86aeb80

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0334fbe6d9111395a98837dc04d891c720ba671aee10dd030e6d19521f14f629
MD5 e3ebc149dca6c79c7f7da10b874fa44d
BLAKE2b-256 0b1fcd9c35fd21caffb57a26369d80cec3de116d1ba256dd922ef4afb6d05819

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 223b3dd9922bee56d7927541b816783f8bad0d6ba931395fdae18b735a63cccc
MD5 3e97704ee9e1e13c302bc308103418b7
BLAKE2b-256 a0e7785d51133a0b78fef6b1d01b57ea72c60a815fda69d474d10365752b8e96

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 365.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d78a24e13bf0c2163e7aaed8f274f710446e057939b7498623a7f55652a1741b
MD5 24e58c9ef18b1abefa9c111092e5ba6b
BLAKE2b-256 89d80871c3743f96cac90c5fe84e199291f71c67860ec1f023e4f8e5bf39b8d0

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0419058d42aced42a26a6ad7260d0479c819cd53d5499ab55426256939e76257
MD5 da99ef645c3229b4fd73da5359eabfca
BLAKE2b-256 9174c3637f043845100005d4c6fe4868666856a0959d46fbcb06d289fed86792

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09a10be96f8c12e2b482a7622258a198c589b905fb074c0ed4e5656415d7fd4f
MD5 19671b7f9128a33dfd244d3d01796c11
BLAKE2b-256 bdf239eef483c1864d247f7912aaa4674aad1a652bf127b676d8cde7a4e68a6a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abc486d7fe18547cccb7b1ddff9e6b36c9982d23578a2ddb01d5f50c6238f551
MD5 90abbe47124e8124ece5171c873293db
BLAKE2b-256 1b7fced393cb5172aa66133968b58522ce7b3d8cd9efb40fb47e91cc46e70cd0

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25f5f6d2673f2f875a38c6fda4e2ca4883e7849ec3ea169fa44677a3d91f9f31
MD5 3b83d5097fef4d0792354d041675d6a1
BLAKE2b-256 4d749203cb24f2daf91af6d91a772d7b1e74df660561f0652da0d853932e14aa

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdaae96ba81cb84b9ed7538f728b8cfba1519e6e894195d7d41391e4b53def3d
MD5 9b729104ca81b628e2c789475ce08257
BLAKE2b-256 3e768c3b6dfea3fe1cf137165a355339dc0726dc46307597c75ef3e7d868e060

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e1042c846054b6a108fbc62b02f4aea35bd28782b65049a62859fd5fe31b3da
MD5 36d1ff36e1bb87721ebdd075e7158b24
BLAKE2b-256 9799886f4c81f4df50ea70dd4c65828882ad7b81bf29b69e99ab738466f21e2f

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 984946648f3b518b9f3bb4be02fa928489e5e50f13fa79cad199711c40fde2bf
MD5 c6d3c2d5e57d9131879a2d14af51402a
BLAKE2b-256 d5a22d1440912c0cea090ac0ebbe15d68119dec030dab693eee3e65417b35d42

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0290754be2bfac4f79327c6eb647ac66bff9769728f42243703cda71eceea953
MD5 f36fb5c47a0fdccd07dff23c54254874
BLAKE2b-256 83f635fe704ff676d5aec6a84d5c3f490918625a9a53b262880f8a1884e786c2

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd3b0f829a08701d6bfa2eb41e1888b863be214c30763d2489cfa49aba3cea63
MD5 97cd625f4ecade10e4d4629fd41cf250
BLAKE2b-256 7e1272ec7d404e720f4ee5195ea70df031618281c9bb56641b2d976b9132e75b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74ac22777af337c29c876e3f02b85628a4dad6d04ea3d3a70f77268fa44a8f15
MD5 793e75c51a11601aec3bc0f5f858ab6a
BLAKE2b-256 8c9762b39c1dc6be2930352a3d456690e8dddf498d8ce6e1412023b0a8fa547b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eadbcc1c07df66165470b613a33fbbd1561b24beb14cb7416a9abfa031cb8df
MD5 51be41e481e7c5bcea5f4952167404ae
BLAKE2b-256 090e7bbf54aa06d7709a3252098ccf592f87f38cebf8e8dce86a432446cbca70

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6aa82705f45dfc1441b1c10191e95f5bddeec0d34c01e944bc83aac2c3abee55
MD5 8275186b7288fcaa315cdc7bffaeb978
BLAKE2b-256 61a7eb90a245bc5ac1e9617030ce207ffdf7479d1bf4d5394be26be7bc1cc149

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71d4dded3797181ab012acbec220f4b93d986eacaa86838d10dd746f286f05df
MD5 781e6f03bf3c1fe00defea8be5306da5
BLAKE2b-256 4a7c44c0c5cca9968fbb72c8134fdb21e6c2b14a067b89d338489c4738c59d7f

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 365.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8cb8f5f2a727265b55e3a2f04d75eaaa519a3cba747cf1ca7a656bfeffa0caf3
MD5 482062d1d23411d35506933713ab82eb
BLAKE2b-256 bececc2762f81aa80fc8bc9f181f6d916dff108614922f944ef2ade63a87a513

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc347d104d92580cc2af0a2738b5172181ac18433f65df1d9fb5b842770e6141
MD5 e99f8f0985512a0a44c49ad2e0db8069
BLAKE2b-256 eb1cdd54a237a42bf96f8e7509bc3759399f9c62470a2349d0244f1f80646c85

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 babc38e27efd04a81d2debaac4e8655baddfbd3c8b595bd23f4bbf853037d556
MD5 3088c628b2d810c6b8665805a8acdbae
BLAKE2b-256 9852a94410edd8e04c284618e2491ad420dd6bf8d3c74a421aed8082442ee78c

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f977685dd5fad0db4a3a0131f6c1aa5be0ed642cdbf6d61150792f1a182684f2
MD5 39aa75291d7e28977ecec05da07de3a3
BLAKE2b-256 2737310d15a0239090b6ed96a8827b9b330f2693c4f7b76dc495d1b3bd84c3bf

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 265e38940f874b8990b7cb3537e70cc800b24dae1de2b59f957ee871f75259d2
MD5 b082bbffbb8acb2223f4bf6e7b139820
BLAKE2b-256 a06e55eaacdf2493d39a0db39a6e5c96cfb17c16bad98778d443d4d88c8e2a9e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3babd2af2f86235d88a6c37631209678f5b8273c91a246503d8151d70543749c
MD5 eb6af85cde2f78fe08bee23820b3ba82
BLAKE2b-256 91be578aaa48accf42aed85dc2f30d9ec29103f3742108cad089c4930c738c38

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00938e071a636e0123226abf71d67464ee668a9eb6880bd7a2704be253f9c6e4
MD5 2a0a21219ab8867beebbc1348be307d6
BLAKE2b-256 e56b412be6ec955f09f1c8978e1dbd26513f87f0a4cf23cac75a9e72c4813997

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16ce162470d813e2c437bfd248b2060f881470d29f06ca793ddb9cf42015e1a8
MD5 f30538a9cc79a098fde0e9abef4d7cfc
BLAKE2b-256 51bd23a4d80ea5f208b14372289037044701cf2d3ce102ab0ceffd4a89d1d428

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b923ba22f3ad055a7f05935b957e7e22c492f34697252022238b7218515f41e8
MD5 39557bf87e257b9e4db4ba04de9f9c17
BLAKE2b-256 e8d84b50b52aa51d52950df28247b0d11dfdf9933514f013824a9b71c74a345d

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18a4beaf9f4b5f18c2f38a4ad4da5e1da0c50bd0084a7aa9fd11c557252964f4
MD5 ce2ffac661a5c034c281aaaeaf9b86c8
BLAKE2b-256 250f4535192e33c4bb788c69bea25fb72300bc5878f349ed02474f51b64f3ea9

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c322b10d163a1fa25e06f481059ba12842025f412781fc2567e4a06ad4221eb
MD5 736a76b162a603d057e08016e02c7196
BLAKE2b-256 19d49a832aa2b61ba7689944c6173974b5dbc284e51528612c8a76a30801b6d8

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 31a4d06a1343299b3074a02267ad995873bb1c197dfce8196c6318b1453fc644
MD5 ecd5c740b5bb092acc2f61776dae0864
BLAKE2b-256 c2ee2791f07d9939a3db9bc38b393f8802bea2b2d72ad0753eaef180d9821f21

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 366.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c29df25c292a7bfc6db7569eb44a7f3eedb42e4fd6cab7176b4d72368d60e1c3
MD5 cb6840660cc316960a0439507ffcc268
BLAKE2b-256 b81b41d2e1ceb8f798cc311b5c7889a839d333566c8583d9f764d37cde1eb165

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fde881d868e122de18147b82d0fbd1109015a4e12150fd6614a766700996c286
MD5 a8779b1e33ae52655ac09a11a7e4075c
BLAKE2b-256 4af5be52d41ca71a3d71b8f60294649799293488391705af193e63429f67f5f6

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cae9164e3f333207e62c56b2b52457cc6684573c570bb848c7a24ff7f683655
MD5 027c5547de0a6ec0087ff579c22d0a57
BLAKE2b-256 c7e57ce158539f5042359ddaad991b65e65e8a50641b5dd5ab9fa602d0e24104

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2fee2d2453725c150ee474d68013566260588773f9bdfada42f84d30afc5e03
MD5 c40c3525db4ba316df5597beb884e0f9
BLAKE2b-256 b257edcf66fa28c5261cb172d46ca40dfc569e9fe14aefce2fe14713713e1625

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ea895940c1b4fac7ec76c776136237ce6f4784bc8b43d6473e2b85c3997582d
MD5 03c85b0d898ddd45e925a290a3d59208
BLAKE2b-256 2236a47330940e550afcc586ce674552c04bd11befe93debd0d7f8a91b95dd5d

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da35bf4cb3eaf85f1a37a06b1887953f7a9c91e623ce0e22b3e933b145f34611
MD5 6cfa808047dd61bff104b2b1f1945118
BLAKE2b-256 b18a81ab4e39c51a8fa68b38273b0e897903758291f0a93e17d00c1d911c63d5

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dcc0026805b608f6bbf82d3cba84b50fdfc907dd72eb046e050ff38b2db302f
MD5 cd67894a7e1cd08ed8ef03a821e9bba3
BLAKE2b-256 465b8c07a4390cf00c23a5ea084c9f977ed2578e28d270a65bd295d183249677

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20fe527f3ab37c8c25829a785a8793d184e381ab9be7a5c9d191add011a926ba
MD5 de9675f9dbf470ddc98f0580e84731db
BLAKE2b-256 2c265a05da3149929e84e9be0733c49cf26eb892d0b6bf0b6839b23ee56d062d

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48b0dd6ee9a9efef5dfe82f942d3b4de6f679aade768646557513cfefd87562a
MD5 b262bc1853b531b56484402bf6198fca
BLAKE2b-256 6a12fbc01aa69d0318475bc0bf32383846006080e4cc4f9af203fb70dca888aa

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70c6b20a4bda93cffa0c4e0779f7a7678e0d8fad133ad7baf6c02d9367db8e15
MD5 96d04f4adfceeac1a8f894edf844252f
BLAKE2b-256 fb54007e26711192ebb0c42b56f8e180328a59bad5337541bdb7b78d80ec8a01

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ff7457aff465141fc5db7c76a65d5e3a3c50e388f0c850fc84c052360f1b672
MD5 7ddd59a1ae48c5e50d5348c5c2759d27
BLAKE2b-256 cb6887b3eaa1f96fe9a1854a30a5c38dbc13bb5c3caa6b9079b524b55365cd2b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 318b39cc5792be71aa910248762faea3fe80abe9f709600a32e0dc27971bef1f
MD5 a1b42703619f7f2c072234f7787165ec
BLAKE2b-256 09509f3b9718bd03b1c9aa39e16ea44a553a9ff07b7651e4120fb4d8542aa3bf

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c37c747182bd0a92b4853d5d0ffec8bea702369d1e4bd0a18b738d01e87a5b4f
MD5 8dd6f91ac630b2e67857555b2ec0ca3d
BLAKE2b-256 1c6c854296e5581ae29a36c9b7f0faf6b11851024fccaa4b0092d84cee21e229

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03163419aca3359951a6c77cd552c6ae18ef64395410bb67973d1e603a4aab23
MD5 3382d3f9c79df19f2fed4d861c43a1b9
BLAKE2b-256 a64c8330a05737d386d65a4227820ed82eb1cea5e302e64c6a5ab9872b33bb1c

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d58e6c7bf5d2fc5cc9eb926017d4d4a048613bc7f68fe26924ad84612142651
MD5 a94acd2a28c5bcd7f79277193c37f200
BLAKE2b-256 4463a532d7535e6c4415d8443911425eeff3ae775154243e9addac5c1f6158b7

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59bb43612c8c9fe673a244e6faee23b95e4076b95f0536241d87b19f50c3c14b
MD5 aba299c6462ae1ad0081da234968da00
BLAKE2b-256 7569dc5937b3537172cdc9d1fde3c33f4114c7dfe6577f14d5017e6027bda22a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47785441cb6bc5aad7093cefc7be3588b0ae0dbc9e96d6c6d487e2da24162bca
MD5 9f15d528ea4daa8fbd47cab9907946fa
BLAKE2b-256 07101b348723307d3808d9dbc77ac4288cabb7af792eefe6785125d5d49361cc

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56cd1c03f31c49f288c8e91616ac46c1aa1ba34fb53b45e1a9d7e95d41b11896
MD5 6b5aa7b87dafb9d984736de6024e53e4
BLAKE2b-256 a826f59835f23991ba7d4cb386060cddc05c775180cadfbf0cb1a46753119023

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8876721672523a410b7e9255dca3bc6d181be0c805205b288b4b1737ed987e72
MD5 dfe1068ce574a837ad3da08a9561b74e
BLAKE2b-256 89d6965f639189706fc82c5e693f81df67a325e1a018ccdd53a27b4aabee8f9a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 023e25d45131aa553c92957a7b0e96bab4526ec35c8c2a2bfac113bc9e3f00ed
MD5 0762b6968dca902610de9d13dc5ea40a
BLAKE2b-256 244d07b12434575d6bb7e3f645e104170984956eb125a60efc30824d374863c7

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f5d4b631d6b4edc8050755b2fd35c2f1b4566a2b6a2657bdc0a8c72de6fe9cf
MD5 9ccbe3100de7d908223d0052f4bb1745
BLAKE2b-256 d8be802972c412ee7af09f2ca5c1e0bab3742dbe6077efd5090a119378d8b82d

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