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)

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.4.tar.gz (533.9 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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp313-cp313-win_amd64.whl (513.0 kB view details)

Uploaded CPython 3.13Windows x86-64

coreset_sc-0.1.4-cp313-cp313-win32.whl (361.4 kB view details)

Uploaded CPython 3.13Windows x86

coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (618.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coreset_sc-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (679.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

coreset_sc-0.1.4-cp312-cp312-win_amd64.whl (513.5 kB view details)

Uploaded CPython 3.12Windows x86-64

coreset_sc-0.1.4-cp312-cp312-win32.whl (361.8 kB view details)

Uploaded CPython 3.12Windows x86

coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (618.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (679.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

coreset_sc-0.1.4-cp311-cp311-win_amd64.whl (516.9 kB view details)

Uploaded CPython 3.11Windows x86-64

coreset_sc-0.1.4-cp311-cp311-win32.whl (361.7 kB view details)

Uploaded CPython 3.11Windows x86

coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (624.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (677.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

coreset_sc-0.1.4-cp310-cp310-win_amd64.whl (516.3 kB view details)

Uploaded CPython 3.10Windows x86-64

coreset_sc-0.1.4-cp310-cp310-win32.whl (361.3 kB view details)

Uploaded CPython 3.10Windows x86

coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp39-cp39-win_amd64.whl (517.1 kB view details)

Uploaded CPython 3.9Windows x86-64

coreset_sc-0.1.4-cp39-cp39-win32.whl (361.9 kB view details)

Uploaded CPython 3.9Windows x86

coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.4-cp38-cp38-win_amd64.whl (516.6 kB view details)

Uploaded CPython 3.8Windows x86-64

coreset_sc-0.1.4-cp38-cp38-win32.whl (361.8 kB view details)

Uploaded CPython 3.8Windows x86

coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_i686.whl (5.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

coreset_sc-0.1.4-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.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4.tar.gz
Algorithm Hash digest
SHA256 6f20ad0fcebab756508b63595395bd3da323dbdf2b7a128bd96e30edafd0725d
MD5 7d439eff6b7fff0f88feb06e9d9ff1ea
BLAKE2b-256 7149eaa7ef8682366b26de835eb10f4c611f9559a96f2b78a9961f463d78d16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e870493557efe9909aecaf860151b1d5c8c59983a31b946633401eccdbe698cf
MD5 8541842ee2bea095fb1e128a2f8d410e
BLAKE2b-256 4d84bb424e43cec89dfa0ea96a5478ef51c72949fbe8d86ba6a080a891ba6dbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f61712ff39f2a9ce135234f91bcdd23f223ae02c3e4368d6d37e7f954e44dd34
MD5 7090126bfcaf3e358c48e9c5f6abbedc
BLAKE2b-256 9fe64b389116a447974264697de2239ead02099d7a18f1e0ed8680d4f020ff79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffd0e36381d79eef8c49d9c4c202ac13ef96667068d2ec825bca4f30644578e4
MD5 8a3944ee31288dd30339170115585537
BLAKE2b-256 9c0ccf8730d36468d894dcaf3e21512fec051ddb82906138626fc9048ae4c16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4793f2e52752c953a837e9393b0e75561bb2da0843323900db8f16c8ce0814c
MD5 aeeae58cd728147d3099d0b65cc385da
BLAKE2b-256 e75d0e9b23cd40b3ca5aea18632cd1378c336a601dfee6cecb60b1b5cbdc5e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33aaff579a2dfc5d6520d8061ed0cd139dcf8741db9c1fb00f6e2b541f0600ac
MD5 5ab3e7ee09eef716e7155b327497b63b
BLAKE2b-256 9a75d0ec412ce89d5e8e89b2a0fdaa5ae79287ad41fb2aa101fa6615c59a1fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a1cfa4d20f3cacef3861f6ee1b9ae26bfe06dfbb54bca3d6cdaa7f0f268106c
MD5 8e8f5348890ce5e5ff1ff6cbb387d216
BLAKE2b-256 bab8240e22162a143aa4069c302d13b70bcd91697740a76c90cd9876362e1723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ee1d3279604aa2615590ab7e39ead44775630abc810ae707fc94d56359ef668
MD5 4033b811b70a5a7b9ec6e22d6462bde3
BLAKE2b-256 c84a196cf6288e35a8396624343d706f675dda9ee7d3bef114877771f27ff310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94142dd921685b29b585ace9c60435fdc3a5041b3171e0441bd053737a9b4891
MD5 26cbefc3d9d423957fe7e22bb136674a
BLAKE2b-256 f34210059bc6bfed41a7a27b1c7791b83a667706f197af2053358b3e51e12ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06a6426e1477f8551297fd7bd9efac512a86c42f2d98de4b6f8345a10e58a90a
MD5 fd638d92e18d2cda8c19527696819d31
BLAKE2b-256 9461904daca87267a64dc948aeea44c63704973c5b94475de9426597686bd6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed811d22c0d9dc142bc79a716a2045f70b051edb4b062f491ba15f245b689c00
MD5 f33c5bca5c99a84f9b9e403060be31e7
BLAKE2b-256 8a259251c40a15d1ee7f7f9971460db1cb637aebb672f54ae3e5f6652a0885a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 142fc944a66a32ceae16c6a79f07e973f7877b699f9e61bd4ee427a9aa9b44cd
MD5 dee68f8ee07e607ead774be9291f09f7
BLAKE2b-256 6570b2bf8152c71816acea5d147ae7c731185430ebf8fb56c4545b884e02b32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 465957ee3c44f7306c9a36e084045fc4d2ee021a7c9cb98ce6c3d7b7c4c52af4
MD5 38554101c3f7b50b437641a30aec8641
BLAKE2b-256 05e7bfedcd275014f4e6e7f5921fe2571497997afa41009682d69a26c8aaf593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25d65d1564210c7d51b619ddff1826590d058c598cd7aaed6eb2e9405ff252a1
MD5 b3a0ce43ebfbc4bb9896d8b76fc69551
BLAKE2b-256 8ea32bc3ac84361eb0bf19061690114d5e5eb41a9f635744a671155b5c22fa2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dc2201bcd6c488f400f2e4ea505626544f80fc6af19a4d921ee35d66ddea745
MD5 31761c360f2cd453b5d963e691a12733
BLAKE2b-256 160b5410638ee8dfcccb941a6c5a96d543ac3950694350eb9954749fdf300617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2767c703814d7d8e16b3bbb4fee8ab3e941f51e5e9d59c4281d587ab5d68d960
MD5 2068825c36edb01186b5d944f2499b50
BLAKE2b-256 8b4dc4948de9cd6d08d1c00d651422566df851c6594b75a22ec4bc3970f3f532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0b405e6730c56eabd9351a2713c6914c7cecf7e9967ad90ca294f44d8f9717e
MD5 0adc3877d76be034c3b899793356049a
BLAKE2b-256 dd97bdf235eef32f6e2f1936feed544c56e9257983b8fc883f416c62f5a8f7e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db35135f142f24ccf88719dc26a4ec9041c2a9bb2ecdafddc46e7d14b64c6f01
MD5 10148d3c3153a2a9ea1ba27dfbce43c1
BLAKE2b-256 0a4db7c60e5a4538c81e0c860613aa52eac34e7c199b4c77b754d51b8398f8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ec37be06bd02957ce310c5e682dfeafd0d7c094932c51fa9253eeb41e8dfb19
MD5 db7435d5cf5c019b6ce332eadcc69f69
BLAKE2b-256 2c95be579923d95da8581724593002f1ae84ccd4af164dd7ac549751d7acdc0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e64b0b244ca84e786e5b2b0e821a9d950f541fa76fb990f4f7148909e184df89
MD5 57dddbc49cbfd7611c6dbcdafb30ab96
BLAKE2b-256 0099b3cb97878378f635014af486edfdda760a4dfcfe704bccf2aa190849a113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3a7f8a230cdd025fafb17a22eeed7357ae62a0ad2bd2ef14efbe49ddf4b30ee
MD5 abf85ddb5f7d9cdd8b854712e302ca56
BLAKE2b-256 1ef504fad7a9fab144de229342631af39d795d95f31328dee67ad9ad8d448544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3b2f726aed720aee93c185e244a8c0faedc953aa28a71480ebe7e56c78d3fdf
MD5 05a23eae6178073e4c90f7c7d3c38869
BLAKE2b-256 ff4ed70f2ef830ab3a65e94467e98b81a5e21b87bd2c75094135010892ce2406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5e2ce90aabfee127a38a529acfda475e596542ec1afc08c225f6f297dee519d
MD5 86864890835ff4f950d52974824b0c44
BLAKE2b-256 722268f7c92c809c8f91c434269b7042eb202b43771842759bc88859e052503d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16e3b23633e8cf826f3d3754ec329d1f3b612baef3411dd5e46153be3c4b2bea
MD5 266ef412965f6e2cdf434123d22ddd3a
BLAKE2b-256 350e7c6800dca6b564ace735663ce93a48a7cde7f29a00e65814af9b140213f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8080ff7a135388fd05e7a4c9ccbd5d1a03b09b045a49238173cb7e8a6750dcad
MD5 65e788b7602f34c37a07d9e43e487783
BLAKE2b-256 1f930035be947aba88b22853f6ad6fdcdeb604d1655e856876dff819e7647f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c5dd9ebf921276b6c0c6ad2779047acfb090d6cbd078b2c3108e73c93540ed4
MD5 6a2181095a91828a40bc182f2e61dc55
BLAKE2b-256 fa0443489ae19b14fef27f30e1203072796d80ea748fe04cd6d7bbec4eab04e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 add214b534a5e3d87b070bef7d2385389642c687d79e19faaf773295ba8127ff
MD5 43cc35b40fa672fe4cfe223762c12988
BLAKE2b-256 78beaacff850720e21d3a8b33ad21544caab76f62a6f80b3a8897f1b34e31e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 978927c7804f099f16d73c417eacf50e46f4fa4b562b59e4ce549cc7c2353940
MD5 047a8314c3de095346b4335fe7a680fc
BLAKE2b-256 dadc651ac9697accbd2a62f55823bbe42c603e391fe3b174df64b81959b0f04f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fca113de82977feb6391e016dac402e65bebebf2570d5aef1b86f3b69409671
MD5 580623bc098d4452753e24ba19751106
BLAKE2b-256 592c7407aee8c64730168faef72a95bdc21e218df05ddac1b3bdf9fd8e154d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2032195262bd1b8ab2ce6869f6617c8d5e7d95de08b8280025a11e832f8b0cad
MD5 4236e274f0f62ccc3398d20067745899
BLAKE2b-256 8c60b417bc526872f887697b8c50f33160a78e6fbbf93f18135ea61373ab5b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bac0af7c462e03df6a7273e8919435b009022e40cf09ee30944d0a2879f1e25b
MD5 91e143190984220eb786fd0684ef7c59
BLAKE2b-256 93282a71ba60ae5ba1235f83d6234c49f10c2dc599bc258f59326855c15da260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8fe10b4408a81acc38f4206e2c8ada7678e7e1a97f3064b98d1c5f6f3c685b6d
MD5 90b4a7020eaae0e1dc9ccf4e190fc5ab
BLAKE2b-256 2acc5c0007b4d769d252c6df4995d9f9e20e8be0a2270a35a329f590a7b4941f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3befca80a8d4913d2398db0b3b13ec159f77c90f0922379a15e214b33cc2e6b3
MD5 9712e65e95ba761bfd692d661ba56105
BLAKE2b-256 15fa14db4cc84c32ab15f4ddc5dd876713da3afea1069b5e326e20627996a932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b38ef3d7633c13002077c0403fc56c3086afaabdb160b19293e99fa5808d69d
MD5 e989acc971125ce923bffe8fbe8edd66
BLAKE2b-256 9fc0d0cbcc5a8f5363231371cd0b6e77d6c4961c99e6267b71682fd7d09662f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6d9612c73a49ff35fa12a81ad46200d4422f4804635b858e629a8418e8d3f62
MD5 7b1bde72560047600aaeb4ec305e4611
BLAKE2b-256 9c641be9af4984442536771c751f97fd7c4f1b49f981c89c2a0d298480df023c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15a294bd6929814c0ea61d05ebb6ff836c384f28ca439ea3bf8ce974985fb877
MD5 c149bdbae2df4bcb35a599d129772124
BLAKE2b-256 c461d1ef757f9dab505a8f3cf0e0c18ac2b68370da0cd3d24c7813b43ad75a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cece91cc52f707b6abdb425a306d457eac8e2ef20bafe6c52a6112643187ef19
MD5 5ada3b3de6ef0e35d2d841dd37c67e3e
BLAKE2b-256 67f083d495aa754d1def5f70b60690d7140ae11c9705a964649cab7560513c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8701fd2c797d763d94b3ee7b5d75f460b0d430413f2a451746e9caff60924658
MD5 4237cbe59e387991e9725440f776dc1c
BLAKE2b-256 ff9fb61b9a297780359446b84d6b3f3f2eed1d97b2970d6bdc198af9a8ab0acf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 085089dd18287f0b8d10dd242d6975efd641f789537aa3ff78893707180b78c8
MD5 d0f3bfe8e46d91476e800b154380e1f0
BLAKE2b-256 8b079b83f3efa8d91c43f5e25d5b7224b727654e4f8cfbeed354e9865d9851a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0096f3cc329d49e0eecc1ed1ab382b292a6df21fbf071975d6aa0c3f5f926226
MD5 1d5ff5e1b0a0e981d1c47a222f638725
BLAKE2b-256 fadd3412b8e65140ccdf55211ba154e498a13f057dbe3ffecb3645d095cd2556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 506084df98225392eb129b57ac9544ebd631422bb686c9588958d085eb19f3da
MD5 7589240ade80f99facd72f55c99d81ad
BLAKE2b-256 c78dde0e3a9db97ef71675f11010199d1cc2914acb4917143fa72c7d878ccb64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce2706030a7d12d18f14bedb9630e0e25fdaf698b9e060ae0e960f1fed832611
MD5 ebcaae539fa4fe68a08a7e0adcb80f71
BLAKE2b-256 20339aecd02cc916ea4042d67977ad7103c324b0c0cf45d5b7efbfd294cb836c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fcd51972e311dfe288ae8179faf988ee56ae813dbd5e492afad414bfe909700
MD5 df7574ba275bacc769a4ca9172fd45e4
BLAKE2b-256 1ff931753f5daf939229abcb0469e6279c63f63d865741575734fca0ad63a106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 218418e7bbc761dc719c271ec6bfca2640ce7fb095fdc3f5a35f0d33b06bce00
MD5 1b548460e011ad9182f1138bde635a0e
BLAKE2b-256 a2e4e9a907469e914868adc87e96ff9cc61a77147c831eabbea88b7f48486bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e44d373d6f859fe39d009a7f2f06d8023cc1fb8ebecbfd73f5c6f803ac0b420
MD5 5910d6d630cd1733483cbfd472480603
BLAKE2b-256 24f08d332f917f539e1a51e1933ebe8dabddce2793476f6970879e31e4630527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00e87a51929d4d258fd53761c13160ba8a532106ca693cc3044f903fbd19f420
MD5 d5968caeb074a19782f32262622e0138
BLAKE2b-256 be93443163e9dae072450298d5747eefd3bc5a133042a220e878e8b7ec6cfa4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80a6663295163530ecae80b92c75d430942d6d5a936c71b88b9bea2e15e8b2a2
MD5 38de4f36359116290e46025fc74c8c6a
BLAKE2b-256 9ce92edbfc444b515860c30d848eebae4197f667ea410dfdb21fc9cb06d3bb19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3cf5e34f44f31ca964ca0dbb4a7e1be8615d6cd33adaaf10f90fa85bd851198
MD5 70fd24204636988713efd852e49eba9d
BLAKE2b-256 4cacdd9f3e3b96d7f76ae74b3c261c901f9d30736fa56fa8a5bb242c35d294e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbadbfa435d6282505bfff20f2d0a5d935b67327126a3b589de5686ea5c6eff2
MD5 11a0693dcf83cf405424a6d10892f123
BLAKE2b-256 5fc768838727ddbe30c8ebac8a096ca97f315fb52e3a7b65b5558b62c593747f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e7a8cdddf1e950d1249fc4068b6afaab313689be80aa0f23378fd664f117f65
MD5 3e61bfa86d03d27ffa555a1abc15904b
BLAKE2b-256 7cd914f5501441a3caf1a050f681f3a8b0debd799d70ff5fd5e0e8239a750618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56304e9fe1cade1ed73e7fca7fca34d08f89394415126b15c138af1e3723bee7
MD5 120f4f5b185a54c52af1ab6e42c752fb
BLAKE2b-256 362fb74d71e9135530c0e06b30ec724c205a153288a2b56406923b7db1662fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca9c92e1aed8ce3aca9f59166463cadd90eea611a20d4eb5c3763eb69c3c081c
MD5 00d34681d7d6c73ed35e43f90de7d7cf
BLAKE2b-256 4f3a7fd3672ba77e32f0b8c43cd281f2c73e596dbe093959c877343ca2c66325

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fd8c77f394797dc83494f78083dcc03cd313474b80b2b8c807539bc1fe9c32f2
MD5 36b7c0b339ab72765cb3d9568adc756a
BLAKE2b-256 1fb755fe21b2d2dc13833aa1fe96b9f0d708160b23ecb7ae28427bd69fc6da51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4817e917fadb1a2e8e078422f1bea25b73b53d73796145b18d4c8dd6d84d6af6
MD5 2434abb57d74ccaacc23dce90d570510
BLAKE2b-256 41060b98a70bbb0246abcfc1b36bc04dc8ced356fcc05e4c3b74100cd5ab393b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 795d1db1b96b431b8f7839bbed585ac5af29e3485bbfe414fe0071237f41e24d
MD5 b6485dd8dfa5dfff491ae97056c559d5
BLAKE2b-256 df4a7c1bc94c19e7abc47a7d35f8664fad716d0bfba5bcedc1fc1a67a486014a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdddffb57bc182ff9dfddcf0a5ff8ef705670b2cdc8907ff89195f3a6b1c0c88
MD5 45f6a0c4cf5ecc53ad75da4ac1e52eb6
BLAKE2b-256 244f4fdeb6be20a6288ba661cb9828bcdab7fe581ca5feeaaa34553f818449d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db46505df2c2004cf815a5e00b51c4e2f52c4f45efb2d7c32b263820285c8b12
MD5 d74214db5a547a1a6f90030005078bc4
BLAKE2b-256 2c5d42b3a06121f8dd019d303c8ed71311b0c1bb8f6b7f3a1abbcdedba86da0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52a85b5080553bcdc5e465b9380528587d92307fa6fd5152c6839648e1a66930
MD5 81e33ad5e53873da7135131359595b0d
BLAKE2b-256 2c6d73b154706ff5beb096c11faba99c698a32c6e38c866b74f72248077e1ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b66e0608b8ff8257dcd1adb1fc0057e7bfbd8fcac3cd1608815456f25e998469
MD5 4e76dc9f8a5f367c20ec212f0748e94f
BLAKE2b-256 7d5efa0c8e9980b0b755ea03fe23622c4632c4390c08600e5f387431feef503d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19521710e009024871375caaf972ec39771495090a1162782a0992dc29bbdebc
MD5 1426bda7b1cf5e46a1b85a27efd84678
BLAKE2b-256 6505c234cad93355ed88798ccd66017486be054457f18fec824f52ece4089366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07b39b4e227d6fa8f5d1819fa4fcf81ff29044478b02d030a20d2bf99ee151ca
MD5 11a495a26ddd779c94b47e1eddbaffe3
BLAKE2b-256 e88d375ffbfbe95d1e6912001c674347d3b01cc987c9808c1c4f5066cbbf077b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 319defca9603e512fea7adbf9b0fd45967916056230f252d24f13d939d056e0e
MD5 13bb81a6e6c748493c77d234655dc87b
BLAKE2b-256 4578033e14b3811cb99b92c1f3f2fc691459532a4c660034bccb9e6dfa4ead8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25eb21c0a9797cf181e68e62ee510baf1f63fad237e85cb9afa7c79c22234a42
MD5 652c9534a8ec466f81fcd93422b6fee0
BLAKE2b-256 315de3111b2418ee1696482f625fd2322b7820ce2867b4796bf2406c6b813866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b328f80ab8a1d114e1caf3ce1bdbd1434ff5285b79ad1a7a442d8de0436d055
MD5 9500560d2f481a0795962538cd3cde5e
BLAKE2b-256 b0a423ba7eb3b99aebdc61e535c987ac7aa3363652c72a9b02dfb2fed962bbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf5a46c5af83eb028fe35f56f6b2e586687a93c53b7d411e0d2d56901e885921
MD5 2d4e92590a84ca2e35d719b420bb92bd
BLAKE2b-256 e0d181ea411e898f4724b09818cb6ce5fcae37e97e0db00c15dea74b834a3704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca609517522b089f26cdbf0e3e78c8195219236d5cd2aa0e9a00a128222e1342
MD5 a82a5f9cfd67b41bab1ad6c8cdc501a9
BLAKE2b-256 1a224a184a97ec5547cf021c2fa83cf61c0d855f0d53d57cd5d5fc2f230ba9c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1cd934e8b00ee1856cfb640fd5e6b7b6f52d5843feef0b3bd978166c9225bccc
MD5 c0193d071bd50f07757a21aa2f5f7060
BLAKE2b-256 05aae18fc44d71cab4368bcf6f1c3c42302628fbcf496ebae395ae0895fa00c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d08ef7179bc63302471bb66dacdbcaf6bd68fa201ad89b77ba74839127ae099
MD5 18e9034a06242f2c2df6534d66eba40e
BLAKE2b-256 b9707bcf607782eece32fb87b10b5ea6419d6244e581bf7316fed51bd827fe16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 432af558f3e32aa6f3a1d4d0378a549ba5b46f5771382f3169a2fdb089576b9e
MD5 94ad68a1062391698fb1caaea3041046
BLAKE2b-256 1e1f76f4ab5e740bc94765d6ef39db2fc0ae1b2454fc2944456024297c3fbb6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c27c303686e8ab1f55e3920baff78c14f5f09fd2fda396104f045a97a8c9f99c
MD5 2fce88ae0b3d92743f3323eb8c99ce06
BLAKE2b-256 412f7ebaa37cc90358b634663ddc2378280dc64aa0d1af80fd18c026ac992661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70301939d9b2bb15953ff867495253619b9d91bad8b759ac15915271cf6fd7ea
MD5 fe3f8b0fd52706657009b79627811c0c
BLAKE2b-256 a6e3e2a5fb8d13aa45cfeafd795a75afca56742aa5704e85e46eb7da862cba74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a07e781c1dbcc641e6f8d8d04315c310b8ef9e977f925a6e6c4806ad2e067b98
MD5 4fbf50d5cad7d41f1198cc848a8802df
BLAKE2b-256 1b0cb855fe22ecd9e3b780cb1b56b26a46a54ab775c3281d564e2a99a999f899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 535649e8e533dfda2ae8f7ec6d1e7a90ce5b5f2979d024823adf7fd782eda836
MD5 a42d80e27a2b98954c56f01abd6db800
BLAKE2b-256 ae29131bf25dc196bb44c80429f8f9dfc39259f0dc2c58d7a985cec28f25fa07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 413db0d9845869e459d2a60b923b83a593b1d6ad5f48433eaf02868ac759fff6
MD5 122bd31096a312dcfb1459273e25110b
BLAKE2b-256 a9716274c35a7ca3402b054311aa3c8d9170ab7a193db351c26e6ec625f7f713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 273c81342ae7919a97ba0cddb785238e4bcd3a4bef8876c9d0705ddbc8d8a36f
MD5 16b4a36446a87bcfec945d43ea318aab
BLAKE2b-256 0bfcabeefeacdc38f476b5f19a5940925bb284f3a1e5a3264aed30c6cf157913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 364d984af94f0d34a2c4950e6a34aee99b88dada9531e62a5244eab4cec112c0
MD5 8a5222928d0bd7af4e6de5d30015e2fd
BLAKE2b-256 c5c9fa72ccfec227f8b352f22248e9540a518458fed9cf77aade9741978918c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f3fab8ed7270608437cbd3f373839efc4cf7aea56e33b5cb85fb0e73092b8e2
MD5 31289a81e05506778886ed38bdfc72fe
BLAKE2b-256 8b5d5970b97cc0ebaa44b89eab1e9358eadce285725a3ce79d717306783ed78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2de9e9c25273e4a75534275799955dac3c6c5628db1171fd74863a0e3e32ac93
MD5 0b0a600fb79a2e55d42116e6944898fe
BLAKE2b-256 83044bbed27428cbc062a7d0ee5d0b16eaf5cf8742a114cf8b30b1ff860a7030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 843ce8af13660f6c22ed34f383e4cadda051a849de3db8e8281c53549a92144d
MD5 0923c85a6f95cc3139b77ab951c30754
BLAKE2b-256 d33f1c3a123228dde2ab4b4cf337c292ae45f5ac56530d9ce7458c0284754252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f5adede68928a4ec20225f295627e6c93b70c242f5e7be85864b39fa9d8b72fa
MD5 4a2f8e504360b0abf36b2afa8af7622d
BLAKE2b-256 01083f4ee3bf462f2574e64fd0d55971cf0340067e89789fe4a3a8c83be0d7b7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 374899be3c082a06cc34839a10ee5d561e4dc098ece36d3c425d758343f58cf3
MD5 f63f9aab11c4c83ebf1fd770e09f26b5
BLAKE2b-256 5e25d341b717215250b1c790e8c4bfdcc92176afe534389d44a6b49e8f43dfca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fe5b90ba1448dcace6bebae2de82e974a572d6b72b491d8b08693439824707f
MD5 6c7b485a2e01fd4baa14a14a4a233d07
BLAKE2b-256 9698791c914ad1ed4c4b831afcbd0c1f92fbbb0d913511b6b5fb481a213da558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfc3e21f4e98b8d0a8dc191ac08916d45d45d37956264f94357458d121990e58
MD5 e4d541aeaa6db521b9e16647304208f8
BLAKE2b-256 2d9969e87d671cb9644c745b79f793027398fe05b9152adfc2dbcc8ab5b13347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94b059e08fe34a8d765eb36655007bae79b331bbc2d9acaf08ab474e97a43b51
MD5 b49f53616eb57c9a915c060b31e96a1f
BLAKE2b-256 22b50088d42a807e191179702ab5fc803e264a5aa2772b499223601ba9e783c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b370a1cff6fa7a8ecd97f1beb879972ec5752365211dd8a25708e072aeea570
MD5 ea30b2dc8364cb51b35c3c953f22afbe
BLAKE2b-256 b60ffb987301d50fb8a7f1e486eabcb07ddfb6a93ff08097adc9b2a824d9e327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cca6161bd19b7eac42f622aa22896c24bc8f733c2bbbdf04c148499b692de13
MD5 748a854044879f5ad2756834cfe71d04
BLAKE2b-256 8de8714ae256367e69997abb037e29f86de7a83e57b816b27ff3fbb890e356b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6901261032387c0a3ff8d13f81adab6587eecd2b52244116bea7b4f606afa7da
MD5 a028921f34f42e48453a222387431008
BLAKE2b-256 3c06f22281c385edf2fa2caacc2770607a287770ceb8f07949ea660e0c62ebb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 102cadc9f117cbcd49ea582811a882c8a8395d294f098f04184ee4ad1cc35665
MD5 5d098e6a63e4f5277eb81c383a7cbf93
BLAKE2b-256 c56be95a133e81c5eb26bb4184502330a48a0ed3d42eea2df742543c64ef6ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 444972fc09217b95b01b47be5907d421e758a7aeadcbbd5aa6bbf4ef258e494f
MD5 9ee83b63b43c001f46973444612c9e83
BLAKE2b-256 a04fb04ec4547767fea6c2ff16f14db6ab0e6660242e9c74b506cd77f025b5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b7d611e99d2da3917cf873ac78121548f23a6a5d48fcfcf2fd9f688655e54aa
MD5 ffd338ca6c0614c89901468672a724bb
BLAKE2b-256 34de95e5f0c0a9171d73f2250cd49675ba97b0af1edac133871f0a19e8a42410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5424a446b51e6ca5f3e9acfc2fcec0c394bc6334833418aba0b9ec2815dcb419
MD5 12ab2a452b670f9d27d2043ce906b988
BLAKE2b-256 28bfe7a0cdfe1db0506b726befe044ca1311c78b67715e9b5dbe9a0aed3b068b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a9bcf23f347e5315611f5512b270225f8fb263daae7cd49cf3da63c1882d8522
MD5 8a240cc4c24d9f006425bd094584fb66
BLAKE2b-256 2f493433b75b9eb0f77c0e198ef49043fdc9cdbc52c78169268568e680891629

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ba9b7c81620a71d67a13213b29a86c1d02dbce439fd676d9628b90213e21b23d
MD5 9cf0190594529f8e90f55021a14469f5
BLAKE2b-256 258cc970fea5a27407c5da0524bc24cc121cee1095942e5c2c87b9b0367fb8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f8d62ae76da7f22c18359b46c7bfab41ca865d0d22919448707f73f5df7b1b5
MD5 8013e0e73bc0be7f78d68fa43ca89709
BLAKE2b-256 0cfbcd08db8231f4a22aaddd8a92150f49c123321d17cd8dcb10fbeb12dec812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f196fd4258c2b2d773913decfe7b319ce1da0c5d6ef98c3ece0f869e5a422fb
MD5 e6db6f43debae34939613802c58a8df6
BLAKE2b-256 48c89bb20eb28a8fa67bd36811046b993055c9e2645ea0548b7d3c6039497206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c75a6270a6e8317c3774fac5f004414bf80d34acf1bd6fd3d16e460011ac691d
MD5 f1c207794ad338d5a187e45cb04e7466
BLAKE2b-256 883456d5230bc8064ce0f47358a2f0aabd918042b3c0be66433e74aa83564dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bb71ba827aee15f5742a8ad4ece378d8a139c6b7a0ec7c9f5b204b82e69f742
MD5 544167c48f20e7e53bc6e645a5b7ccc7
BLAKE2b-256 5f50eeab69070697d7565c20ed128e1f9b3299155e5d642d1eb68dab99969f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708cc0a1da968bbfd974cc01d267d998d982afb6bac912db7dc6bdd71f1216fa
MD5 3b9560b448608f4d102ba7dc8e9f1d7e
BLAKE2b-256 b9be63d921f2101c634fd057b4f0e2ddc592da996e82a308d84e91c2f58fd0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ebecb6dd0a7a54a977c570ccf3af3cd5fa60ade66977c81c6fd3ddb112e5c48
MD5 ff982da82b0318246ccbe2b70aa2437e
BLAKE2b-256 c1eca4e2bc76ad9a6df8bce2f26840e08efe77ee6b8ca638d7e3b7b8d6089b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 831b1c05999d45d0b0ac2ebbfc673ad10382d5c7c1b5e5fa0e8e8c54a59af3bf
MD5 ddc0ac290415dc86daa10a1ca3cbc82c
BLAKE2b-256 30b1fb2f3ce35c70a5f87dce7fc89454fd781650ba62837c39a30ad03a1777fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99e6a5a2ea20120848e2280f4bf1239bd0978772072a41df5b92148dc08207cf
MD5 fda5f4ecfd346f49465672e1e6f1b8f7
BLAKE2b-256 f3fd995feee21a6002d400a4920b004bd3492a679400419e2caf7040c6138ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7179e22c2954628b2aed84a3155ac085b0a3c732b1954b431f0dafa99aaeabc1
MD5 1e1179f5e3a6767bc707a6a267a4f436
BLAKE2b-256 ad9dfdd568e7cb5d6f682a7e19aa8cd75c7356fc71843c0de80919cddd1f3fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b77770525bffd7b796bfb4985f414870124e2ecafa6be8f991e1632b0ba76650
MD5 1278c1f1f3e93ee8e061084496c1ae97
BLAKE2b-256 22962bfa7a714f22e854afa20b9972fbc3184f94b3a63c2c847fdbc83378ddb3

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f889ca0ba0ca0a2e87b01c041ca4fb7e01d7cb17cc1e2b395e9eef106b188538
MD5 22e3203eb7b7a87583e6e29bede92a2e
BLAKE2b-256 0d0fbaa0d11d97c56a97e131856565b5a224434cc937dc4916ee95918232177b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: coreset_sc-0.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 361.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d57f68b0b0d4e47281ffc27ed7bae3d3b618df636ff359d7faabaff0883658fd
MD5 dcaebab677c5c225420e2dcd42058655
BLAKE2b-256 99a69cc2efd8b496f3fb2b6a74e3c8ba37c92c762a09114c70b5da9e9485c7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68435830b2bfc4a09d1a8cda2edfb4d9d44986498be08aaf67d504dab065e9f8
MD5 e384c58051aadb2e81b5d95aa6e02587
BLAKE2b-256 4a153bf7dbfeefd8358cce5be3c98b8c95568b2ee0e5ecac0b6bb2a0304dab2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1215ae3963c9e6127b5bb9e594e786b5c0208ddcaed5cb17380fb810d65ea76f
MD5 98354d6e7789f7cbae38153f271a7f6e
BLAKE2b-256 2cafb6cf6bbfc3e2e51d085c39c173e9ed0ea063bdcd09ebcf537275336f5003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 011ac440e40b1b750293f4e34a4046f3a1b709c020587f5f485d51ba15d271c1
MD5 b440a56798ef58b918f14348afdb8d1f
BLAKE2b-256 a138a49e5d752ea56c27ef48ca9e64b359cbfb75fa1b47cdb0dcb8f22aaaf448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 311508e107facb27faba8e1fcc14f52b3052d192f2d59aa134f4b05b1139cf80
MD5 f0b8737f882ba2e3a9374e8a92ef8a69
BLAKE2b-256 cc6dd964e202c3d0bf1ba863209e50b26b0acf9087a6ce78c7dc968ac9b65b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d234da43d40006efe3f3da9f14238531ca695e1d236cffa59229667374148f5
MD5 a6817c10e9b5c7506f9df226a0a3ac6f
BLAKE2b-256 06b498825ea491614470bc82d157a328d0d86bb714aedca9503dc4144d2d5c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f39d8d836e8a3fd30fb0ff05d0e3d0ca0b24556210622624d52398772a365617
MD5 66172e18a753dea0c3c3d5e5d448b43b
BLAKE2b-256 461f655811ed155c1d0de73c2c754faa10e7ebc6b4c4619f83f2de5e735eeac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 728349e63c3a9afebd8f7d698f2e3db0e583f4276373bfd943c6e5c72ff0b73d
MD5 f24664a3f7bb8159ea473c81e93294b1
BLAKE2b-256 a689bc69167dd25e67dba37f8b91c66bedfd6e50cfe22f2c471bfb44cf2c67a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 925e0f7c072f8ac12699d1a8179896ac3c910fc54c7a00b03d7f82e4fe050b2f
MD5 83ee43beb65a2f32e07f7225820a623b
BLAKE2b-256 794fb739d5eb1cadf1e031870b4e4ed0209b042c8439d9e2ffed45e817ce498b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee0c4b9b870979b589e0c9f3f77a7aebb365f06778376516f7bf8165184ce5fa
MD5 116b2c506129542d33493e3074f7c606
BLAKE2b-256 0b4fb46001f9cba71f10eaca7dc01f6bfe1b7a60667685902c5f0ecc67c0699e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29a66ad72afa0dd2b1c0b4cf6f97d114859b49771543306965469e3d11f3ee58
MD5 7543cf7a833d260d3297201ae5234724
BLAKE2b-256 0b231aaf24a602dc216abcd65c7f5b2aca1512db7cf9184db5fb7649bfe64c12

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