Skip to main content

No project description provided

Project description

coreset-sc

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

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.0.tar.gz (490.1 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.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-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.0-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.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-cp312-none-win_amd64.whl (498.6 kB view details)

Uploaded CPython 3.12Windows x86-64

coreset_sc-0.1.0-cp312-none-win32.whl (338.0 kB view details)

Uploaded CPython 3.12Windows x86

coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (603.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (703.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

coreset_sc-0.1.0-cp311-none-win_amd64.whl (497.8 kB view details)

Uploaded CPython 3.11Windows x86-64

coreset_sc-0.1.0-cp311-none-win32.whl (337.9 kB view details)

Uploaded CPython 3.11Windows x86

coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (601.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (704.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

coreset_sc-0.1.0-cp310-none-win_amd64.whl (497.7 kB view details)

Uploaded CPython 3.10Windows x86-64

coreset_sc-0.1.0-cp310-none-win32.whl (337.8 kB view details)

Uploaded CPython 3.10Windows x86

coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (603.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coreset_sc-0.1.0-cp39-none-win_amd64.whl (498.0 kB view details)

Uploaded CPython 3.9Windows x86-64

coreset_sc-0.1.0-cp39-none-win32.whl (338.2 kB view details)

Uploaded CPython 3.9Windows x86

coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

coreset_sc-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (604.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

coreset_sc-0.1.0-cp38-none-win_amd64.whl (497.8 kB view details)

Uploaded CPython 3.8Windows x86-64

coreset_sc-0.1.0-cp38-none-win32.whl (337.9 kB view details)

Uploaded CPython 3.8Windows x86

coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

coreset_sc-0.1.0-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.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9369147d425789bc8353e163ecc5f37f554e3442a64936c35a7d9ace03247efc
MD5 8a0e7adffa5a5caccd40942dbf107592
BLAKE2b-256 51c38005a6594e3a78f40a758b9dc1d04e8abd7be881c3564e098f628cbe0982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b45fd1019f74e6c469615e4bace7878b665ec3780a44b0cfb34e464e0209e1
MD5 24e6f6eed09138ea701fe74a192909e2
BLAKE2b-256 df2c6c9772af2286b0319ad75cf7d47cab29799c87a90244570183790cced503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a31eb839a3bcec5f15b682cd736b9f569d2aa9813141e08e8b737fc69fa50ec2
MD5 51220df219b88b13ed0d878592a64a83
BLAKE2b-256 bf8b1f6282af30493f4ba8e5dbb3fab3747a286ab210db9161cd77472943d19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a559bffe2bcc2672f4c3e2e215e1aaf70cdc043cf57f5857e29cfa7d53c1b9b9
MD5 277d11e89d8808cf08bc7ccaf762653c
BLAKE2b-256 c94b749d3ab248c257a04ec5fd1e87a39da38a197d5b2c9053c56c4cb6f93b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64ca34578f5f501ef98ff0e93ea816aa2377bbc6f8e17291d8ff96f48b13939c
MD5 534b415c0a12f357b73cad0ddc42d434
BLAKE2b-256 b53ee788c5766fdd3fc27d902c9393349491282ba052637dd3e45918d2c833cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44813358a5a70d357d096d3195ab1ef8c4f048941ca7069e769032afaa00b563
MD5 088c2eb68aff1622f5e6e8523b3b9ba6
BLAKE2b-256 5cc083f37d687ed871524b9f4c3b81aec6f0d685559beb5b1cfdd84cdaea21df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab321689716682dd5b255ca36c557af6ac0c9901d2b7168691dd6812cdda9cf8
MD5 4ce693067eb1e653357887fa8ce25e22
BLAKE2b-256 d8e52d725d9dbdfbae1b6f0eec9ce8f2e9be950b11f9b4e3060b3f340e81c742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5fd4e5eaa9fc0de01e98809e032eaa0aff54d92cd9ff6df8a5fe5993ec4c33c
MD5 1e823960d94d8ebbbc4f0a0fdebc7d85
BLAKE2b-256 4c4fc91c54ad4d7465ea89bc5832b4a7cc510106c35a4f0dcd5e069b19392d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12dadbc998c11f11851511d7e62b8a276077608c2cacf0013052e06a0a5c8bd6
MD5 67f4e7d96857f2ad1d9368e28ae68212
BLAKE2b-256 555e6dad4971e07b2e07a486be47935f2e2893fda57dc0d223173563afe039d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 518a11158ad69dd81a5c962075775ad975e205043543051f3ca6ac1d2d3bcdac
MD5 1b9d2d0ac3822da942da7ee19d61f39c
BLAKE2b-256 c27005c9d8f0dcbf80a07b6fe24cee3e2b69a76baa9c3144c4d700301aa183a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc04a374356a251e3cc1daee8edc8ed3a262a03439e0122b83e1747abd281f8
MD5 9805be6b78e9b914b7d911b36b8ae428
BLAKE2b-256 765194b1b06b7de3be214284cf8098f35d825d6e0226e35e3603d2d28e684d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f36ec9a74d6bdd3b08a0a1b01640e7ec5921f277f319e017e5bf0459fd9e25fb
MD5 1c9f5e638b9263c13dee496e6ff696ec
BLAKE2b-256 567eed110c3c46af46e4020d78c86dc6ecee0b1913b61aa66f5cdc306f92930c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f83d39ab6ad6d872c2d1201c40bcc87b29de49699ad80329e3bfc9f356e005a
MD5 dc09d702b12ccb30162ac33c280b0a7c
BLAKE2b-256 841eb9657977c10c364b5366e0f7e5f09375a42de568b6914ff20635aa93d1ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c52c3c17b127444b3b41b9206026b7c97fa7ef2e476c3d02c8daed62dc3abba5
MD5 2e2c1f5ceb555b9e44700d8b4542179b
BLAKE2b-256 e4eb5fd881adb99d8bd0c3bb8fcc9998f9ed1fe66b6f0f170d9df03ecf0066d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bed950ce5614c4e506585defc08462887330f2b2d9c57094c4327819f55396a
MD5 77edca316e85d090c6c49e8898701c02
BLAKE2b-256 e4bd676adfff651e4b62d13be53e73f2a260e4985aabb501333c39e53cd4975a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c9d4a7ee906040c4b33dfb622f225950cd7810bdca3350b8dd35ad5cf4c9058
MD5 89b7b48e821e1a8dd9a1f4d3981454a7
BLAKE2b-256 71caeb1565cb2191f8d47a9c9123f22c441e8527b46d769bd109a6f4c45bf907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9032449f5f05efc0d71f7d3369930e9615e564039e76a7b436703999e71ab9dd
MD5 0981452722c2ccf5d2a6f3d6f69c4efe
BLAKE2b-256 f5f7892d09c4efb03c9063b68ce91ea74b491f6a0ec67313f3741f22481a654f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9974ab3a298af9098f87f93992082b25ddf0166913931e5026fba1e6bc6133c
MD5 f59855744e532c5e04e51080a6fab3dc
BLAKE2b-256 4bbfd8bdddb2f5eeb5fa137628e3cc373ffbfdcb63f63cef42df89cac0f8663b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f0d0164397c4a248ab016ed8a0c4cfb4c48500e095ec400a2d6daa80e362b10
MD5 cb9297a63809c6201ff6666f5de2f11e
BLAKE2b-256 5d836fd280a773de4eaf29273f53cfbabe2b2c231b5c5d4a4c2a1562e226b377

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79b41b589cf9c6a0c44ddf463b6bf53759f04246fa1df5fa2574623d9bd87c3d
MD5 aa5a7d2fe5feb79dd1d0fe2ad957bdef
BLAKE2b-256 49f9fb43696737e88ffc224d67087f6dcf6e38cc734695a57685de9917e1ff4a

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9cb4afad838f6e771745a291d82c22de26df10b97bcd75004ef09473dbe4cf4
MD5 99507091bfed558a80621586200e6d04
BLAKE2b-256 a0523047c7ecc68140a75c3706ca7487887e6aebd990dd46e2de298e6dae643b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac962ed804bc585b4c321bdd7e2cc5e1119022d1aa365b999866b8b42387222c
MD5 fb60ef75391262e3f8310b7a4a945bec
BLAKE2b-256 9e78ffeebdfb065289ae3b6c9d90052eecf723a35c776851f11ef509cfb893cd

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b56aba1da909592e47a1d2778fe8aa7c207f5d8bf3e1891f712c631ee44bc70f
MD5 efccf8ba984f1e7c2a72c49a43db5770
BLAKE2b-256 168e3e3f05163d2a805b17cd4997141b7429b788eb0959802b91b0c9a38e8527

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3d44fd9fb5a57c058dc2ef0d724e2c250e9fdb38467ab16d919b39b4abb2484
MD5 7ee8881e7c2e0d11f137f7e19886f985
BLAKE2b-256 d46a5f18f6afe1a9436273cf51775c9e4c4e32048c4f46124a26c47776df0e1e

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e155403d6be27cefd334ad7c760f2752bd4e2f45bf849dc064e87eda56e4ac58
MD5 728622f8c160a1eadc733a186a520599
BLAKE2b-256 c8e876bece1cfd5b5af324f9e06395c6167c3494e218a9820c489b8665cff343

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce5fb235089301499f71125f0752ba18bfae2254a0efd6e3830f11d231ac69b
MD5 ade128905998600806cc055f151c229d
BLAKE2b-256 1d43f30c16641a199a6e674ae57c90c4b22edd29732bb17218ee4a86dd42341d

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e8560f7837227e0b50ae957846120a5458bd7704d5208f1c591e56578fbbe94
MD5 56b9d0a4c6a0685c447e84fd6f7c46c7
BLAKE2b-256 bd869852d806ecdf4fec13331cea1d4bc9b8fd0137e4e88d97470d42f183af0f

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7390d649a268430a6199fd67ceed1f6fd8727f30be6d559b6ea13d541cd31082
MD5 3515aa7960b105b842ddd7bc0fa17ef2
BLAKE2b-256 c0ec2e275e05cf119b2460e8eadfbea1c5902b7c5dbead80685de1e5874d28e0

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f1482173aeb816d5460738f5afdf53cf13f1de94b7f7881128803937b5346d8e
MD5 8d3706fedafe6daeb27dd6cafa1adcb5
BLAKE2b-256 0075372f9b531c605e261918c7504ceb7feccf7facbcbee4d980a0e030d6ab98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3088e27735bc1227a4b8445322c4453c87e61d1f3e5e60f57a21f2a6d9325ef4
MD5 72b05da88dc2855a67c614c0a9ac339d
BLAKE2b-256 ce3ab6bda48d5141b869c5eb38cf1eee3c033190f26dd1b3e0d6b1b96ada0aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91bfcb982e66812ef80ad066fab74e8614f2d14810dffa7e6ff71c9f3886a751
MD5 2fcdf92a76a3034f1dc761241aeb5a9a
BLAKE2b-256 e2e7c578bac5923d1f000c076b0a33f6e61038d6e45d45efd5c482cca79912c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76db902662ad7eb63271c862bf14fa4ba220c45b5a503fc1f61e9d7949f6fe8f
MD5 7f41606fd09826da4dedb7d4d87e76f8
BLAKE2b-256 3cd226a97562bf3d04eadf5cab206a18b137f54f7172f3ec756f9aa4c8320f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97ac33bfa99c13dc675b05ec7a059cb426eea22f63e08b0b5d245547700e6f18
MD5 eebd99b16cb5bc6e576c0bc024739a05
BLAKE2b-256 56a3c3a3177a52bc11b5ca30dda5ddd4226b66b4354d8d396b49d03aae618efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30af19f87ede5887e3dce7233177766761ee19630252ec5fc02516fda8b2e933
MD5 5c7ffc01a60f3ba195ad07d6a8578a94
BLAKE2b-256 8b6e28cff5c5ab53e7f42edf5fedf072495823c6b158214b96ccb8f3a3c34300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 035873e9536006589b1cd5d88b55f4ae69a8228669b8f8d3512251851f04e54e
MD5 2aa1e6e934fedebd8d3a3898628830f1
BLAKE2b-256 5f50a20a76dd549a6e4ce22b3659a37e3a3b0f51dd046e28394ff47848b18a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eaf86ef2e4ffd12d25ff9b416e270a9f247496d2995f6343b3de6ea30b70df9c
MD5 404ab233d82d68d0c96e736eed71c0cf
BLAKE2b-256 ddeb53d8f616faefa53f00e7dd53485a998aa6a93a43447094dfac4983904702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c626f6c8013c0cb4cf8caec69e857806b8e820677b72ce0695c66427f90ea1ec
MD5 d9ec6c5926662c6c8df86b6442e4f937
BLAKE2b-256 8eeaac9e7ac5b3376416574128eeb92261715923ea41a5130e3f3c1f66721146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6343904c0b2c13deded8ed4f4f578303b21cb96673871f7cd0eaf3d7bc51f35
MD5 0113d4dc7c87d986a3c5c31d11e87956
BLAKE2b-256 d5ac3137545fb8329ec14e40a8156aae827dbbdb55ba9a22025b56869a31df28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a39ab7a2394d1519b35952fcbda45357e0aca933f2b97e18815ec938bb38d15
MD5 e64b3af5882b5c65dd8fc404f1ac2506
BLAKE2b-256 f72556b8062d5d2c5e4e77cc371044f08814c4b248c14938108d4a0c2ab91f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 064862cede5d8221282bb7d1ae7898c26b5e8b77de51aef9f5f8bee2ded5effc
MD5 4ccc2471040cdc038dcb6653bada2eea
BLAKE2b-256 55c778cc8fd3670dcbdb23d24c7b0ef5d63c0b37401583910c46a1994e4801a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea356517fd67ff07cb2811c1d197658fd2d12b6fcd4857606c4a8def13bed614
MD5 a4eb3a5a98831605c31a9f41ede60cd7
BLAKE2b-256 a802151226586f75c4aef679ec57c192ea30926d3609895aa0e37aa4a6650603

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 760726354037af429fbbb26cba86e1c4b4bacf604afd00ce8dd6ed9772b65eaf
MD5 6125c88093d05a9b2794b8172ec7544d
BLAKE2b-256 22fe8bbcb81f605f3f6a8e0d14d427565c05c033f82db082fcb5a470bd1103c2

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 287eaa20ae53f09aaba2421a2617c198a20aa4c6658aa84c713307eaf31300b4
MD5 e073b1262410ee57f982dc382abb2673
BLAKE2b-256 0bdc5264d134d71df6a41f078ac8b2be96246648b505f3698a8584fde0b559f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e76891b77d2c77c1630ffbc6479ab91900fee65dfdba6be48c4e2678ed124acd
MD5 d2e76fe4b19a1ee2eb0b222e54c21670
BLAKE2b-256 9fd09c6129584e2bb710d17a9de2faa220a0c93f2cfacd68a642e7fe32f25b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8389507b7e7aea6919137100f722452972de9fa33bbd3f57d9952429aa6e2713
MD5 a58f932192bf8f82197abd90d00fecea
BLAKE2b-256 51358f204aa9d13899eb5c0266ab4792c963ddeb61d0fb86b8066606b1c646c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57c85a7975e710393b3546de0235b53c4affedb13a596733f559c69fd250bfe8
MD5 ac90e5291d7ff9fc61bcfdf2df202f55
BLAKE2b-256 b109ff872ece9788436a21da35801718b84750cf80796c6351c61f4b978cb31d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 610bb1c863f2e67374b397894ab97745e138f3aa30cd835edd15444f56c6f4d7
MD5 27116050ec031ba5d73c04c9f592bffa
BLAKE2b-256 b91e977c66b74e67582be1f31445b1e45a889af266ad9f99a1e0a3ab851c0bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7319a61d03d57e4ed7fb85e4c417cf2bc2903e52145b5340eb4d1faa35538c2d
MD5 94a387d9f5efc959a06d571cf03bb1e2
BLAKE2b-256 4d268d6a6f7ee65ce84878226dc9ddf5bff7d45391099392e1aff551273f3aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52bb8dbbcf463efd9654bf17c0838dd00c0b2807e4d2a9a9674d5cbb946707ba
MD5 859b4f769ce8247ec09527064e8f54cd
BLAKE2b-256 a77646351a50c4cfb14f02cd88300f3e3a6943ede5b1b4fd1280addabb8f9c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20ab9d1dc5b1e20e6cd9fe22bc24463131e58e8217a66dcf3954e48c2cf3b06d
MD5 b413003f9e23bb603191c3536ea650e5
BLAKE2b-256 3fc0f2fa12b96822b844539748775308307cb1c6292d3e9cf1203cf99c822141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17d9e57bb528be3c151078b72a121a6137f12e6e551998a6a02f489874a40736
MD5 d88edec60381c3bbbf1c8b78067b63f0
BLAKE2b-256 be351b0334c9ff7e848abf371356b9883ee49f75200073e81adb6a5946bfd1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1001947a8660c53d4aec0f83612abc134dd6aec02757ab0d95fb506264994cf5
MD5 aa3581bad45d0d6580e4a33066ef05ce
BLAKE2b-256 081b546b5d23a843fa9deada0cd1bd8b61dd4ab1ea5ed54fc7c633730a821cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d64083632943023ec406421227bc1369095ae2b142efbf2029433b6b01bd0d49
MD5 63c1bfa116a35058aa2b78b7f8277cf0
BLAKE2b-256 4b918e03b7f517f21029ae3c773f404fbd42d264957b96d68029c1c211e002c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13c35fa05279b7de705b580867b6d9c73358b33f217713d42c88512aff2a4bf9
MD5 3f72e8f2f1be17b6f1c0ed45101a2040
BLAKE2b-256 2e3e5f8d186a03d169e293f13bc47b287e5ebb73b1e69d2494982859f535aecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e2e181897637d882d513e89ecf54564edc30263a96a18f0d459451554108809
MD5 534e78235df425ce30c40a68ff614c13
BLAKE2b-256 0b23d11664ae8663b9db43273f03705d0fccce4ee233568d5049d83b6a3c3823

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1a85929907c5c9287fc8ff3dad2c14a60c6c78c11f24ead7728592d33bf201e3
MD5 15a8490aab0d21d7c447330e02bb3bcc
BLAKE2b-256 e432119a18eabfd02ef1be0169a1a2bfb6c8b3708063f0f8573ef329d35a0d9f

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a4e4b4be0cbd095f85c4a2d55355dace7f72b8e684529a8fef31e71e61708e58
MD5 75810c13e3af488f54ec73eda9fbb140
BLAKE2b-256 b9e98c495321ab6eda1d73c0cfbe3564788f6139f814f33b8b1eb73d8b99649f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f40769674fda01deafcd23c9aa5a1b6e0c174b35599be999b73c00c8432a38e
MD5 54dc78c92aa129d9fbfe0e7da7e225f8
BLAKE2b-256 449225704519bf3f712c48e440c4b22b248121686b0d0e1732a67f7e0f3477cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d219da3dab2a19c1c39f30ff07ad1a7bed84c6ec7cf20051d1c032293db456e
MD5 5561070df87da81aeba8804bd2360a53
BLAKE2b-256 f4f6c41ff48c01d8414252e62226f3d6adc4d8ae0701f31c026eb6322da472f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fd9cf73bcacfc0109311e682f80174a6d08ee1b8af5341d3caffb9c9b0f2f96
MD5 b913243b1581314b68ccfe86d9275cb8
BLAKE2b-256 f86d1aab6ce6f9f4dc995999fe8b997c669f7e77fe89c7ddee74791596221cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10b7dbe9acd20fd40475664b4386308a0b26372187174f262f8be9da077d0057
MD5 f9642feae2ac750ced417639041cfe3b
BLAKE2b-256 97714ef9fff8d2a44d8817d691f4c4c4257520213ca3c571b0c24760bffeb3df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a762467f945ff4831637d3019464c0115ae5d92257695b37c5a053e2d50e3b0
MD5 6f2a8ff135b3661304cdd75a072858ad
BLAKE2b-256 15c8b5319a32c231c8885f514554d6daf8f1388e904a83bb91fc8011afb9a4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84fda3d88162e3ec688d3ba411088d5ead127ebb6ba02d06e746f14f239f5376
MD5 1ad08d329d81c2ce52f9e5fac840abc9
BLAKE2b-256 e57d275e07f92eb868dbf3b020311f07a0944be62b9df2fc888b8ae432aa9d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b35e9e6ca2c3231b592c8346a771ac5fbf6b393ec78f4ec69e0b5d86cf021d6a
MD5 6eaaeb6d3f3345b5a401c563506e9e1b
BLAKE2b-256 04e165206eb7fa5ba5481ee031eb7df6211e0f34bfab514aef92006810fc9a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca72e0307d63a1a9e11bcd2a5933fcdf7143598d9b20c4c8aa0444fe55334b22
MD5 ea582b7db095b82405e87ed538e8908b
BLAKE2b-256 9e06770c008e4db75a67a029a119c32f9c59106868d19d710fec5607c9fdf8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d11d79a71d68f4c7276b906ba3e1f1e85638844e6472f46c0be7a680ea6db859
MD5 7b1fd2cbdc3d4d0e9b44202d9c949cdc
BLAKE2b-256 c4bfe82ffe144e10f5b57ef8c6fa4993cedb51a73ff3c51ac2f726c795fa46bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6480b5391cc618b565ac2d071389007ccb100f8df07945411976b718b47d046d
MD5 dc58ba08f4cdb97a28db81a9b2735878
BLAKE2b-256 4cb99806a47d5ab4f9e18369e4dff1c50b7340db2638255f12ea118e336afb15

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f606ce53ee63e427f101656e4558b6ed49531b8873c27b89003e2df854156cf5
MD5 271c8ae214a447a0109d218a5d6b54d4
BLAKE2b-256 e713edb9da553c9b591f6000ece59e2f05d79c13b7f238f1ca5d6e7c0c1e30ee

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 dfc3a30751a0dae5f15bca6ddbfa21159b82a562ee47fd86ce96ab6bfdf3ad1b
MD5 11fbacb45d30beac6caea7070166359d
BLAKE2b-256 d648b1eaed648dafe61a28ec04d08beb9b38ecfec3bf251cfd5e6051ffeae56b

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 7c5a7149bb2d869f7f57d96f13353c67eb9120a25f5f773308a6067bcde56aa3
MD5 65f9aedb7f63f0fc35ea08ffbdf2dfdd
BLAKE2b-256 f24fa4ef80ecc3ebb12f1ab0a9ac8412a343ce8bf9ecb7d80e346dde4651d8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7de89a2a68f2865f7eaedde787aa382bbcf75b101289badec0ba74f8ccf054f7
MD5 5dcd0d1855943d3d3a4822ca37f0bc36
BLAKE2b-256 b01e9930e5a21adb0e87f32619544431a5d2bcb50c7b609b9db9d284d369b706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb86b535b9f916b647baa5376b3ddc1afbb9fab8723507ff4be60b09174bb07b
MD5 4d21ca1a8c5a6efd2e2773a46780f246
BLAKE2b-256 3263f31862370f9a58d94357d2d365ba7bc9014155332f452c9401d74e4c306b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28b0754de8010c8bd1ca66995fe95f2a22b8725968bfc83639944c7fb4ebb45f
MD5 cad674728b0067be075b371ee0ff4f87
BLAKE2b-256 bbb86bdf664bc4915899fc1a0863af7eafc8df699a5e1082822e6f3777a8c9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cc31fd0f2481f902d4ce14316cb49a80c9c0104027e438cba4f5c0fa7f0cb62
MD5 37f41271c4162d0a99eb212670ec71d0
BLAKE2b-256 c82a883c33212751c84c229ecede5dcd7e91b5e0c1afaccb74457654adbbb436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d962ae7161e8a69dabd177d3ab081cb65b1b73acd2e6d1f55cbe535c51393a
MD5 5ef1d61a15fd45c457a7034028138453
BLAKE2b-256 4dd3ab36dc12aa9e2987c36b98335198979147f020ddcd6c835a7c8313d1fb32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38be1d1c6da6f944bd07efd8c7e71bd801dd9c69c2c6b3aa21481a4b5982a81f
MD5 3f348447d60e8fda754ecd25f65b8775
BLAKE2b-256 4c6fcbdb1673b039cf528ff444ba4789b6762fe48a4a8ef6b601096679c71904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 367a13b85a6bf280c98cc0e4712259bd7d22b87d909f67c18c196b5eefac30c8
MD5 8c88b6179ca59a742f6b441c5d994a8c
BLAKE2b-256 4eaecc8ac836ce9cc700d2e700b0781cc38def7f40e370e165891287c0d1778b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 704cd98855c1538816539bff57348777f7c07914366a4fdcabed727b1872e265
MD5 49c013878c7ad1ff27eea51a02b9386f
BLAKE2b-256 2970b3edec05ac4c6e47d617a75b366f8b701cedd9ab20ba5ebe582f8f46c66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a80cd5acce711a54bcbdfe25eb69883ef6587e714d9f4f28f8f517aceace8a1
MD5 f116bfc296964ba9496bd79a16bd2d33
BLAKE2b-256 a587ae6d8db9b0144ff6a843c2927edb7bf637ef57e15635cbdbd8de2e5893ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07f0cdda961ff1a9bd240440892421eee5c788eb3721dca4fa1826164b6a5773
MD5 7a9f4f90c859b3ead47395a59f36cb49
BLAKE2b-256 876b5446f8eb1382b4261072862ff688fcde86aaa5f9c6e88a5d2116a08178da

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 036d81e7dfb05f6e79cc3cdecd7ed1d90f41f4114165011af9a079f3cb381d01
MD5 06a8fa1dfcdcb3d71bd49e573e8f2ccd
BLAKE2b-256 5f079e2799a6acdfb3ecd3d68f34f51343b09057777950e4553bfa0dcd9ba2f2

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 84bb564a9636333537cc5853ad13c47e5689029557435fbf1d0d69133a6aef0d
MD5 e3e566cbd5f8794ac6d1fe875d2395a8
BLAKE2b-256 462a94a8b85b2c0245e3bda011945c34da7bca4d2cb16343d6c6e5d68e40ad99

See more details on using hashes here.

File details

Details for the file coreset_sc-0.1.0-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 cca5145909cb1b6334de5e3242842e4e75b0c58a5fbb8f05b4baa12de4cfaada
MD5 74d72c4063dff7608e0d9946c2834715
BLAKE2b-256 38839ca7af9db0ac0ec92008f1b734a56858b53f1bd8ce48d6adae1c0bc067ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08bf32d7bab189615746cbf7c3b4f5155e562bcaa1f478f277b7ed966a6c0e4e
MD5 bbe2757f962846906e6e3854990272ea
BLAKE2b-256 ab55baf505a0bc994de89515ba5d40df8e0fa43d09a803b1358b055220eb7cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca347cf19ab46fec55916b7ea75bcb8916beac1526b5aa336c9a4fe2204c5ade
MD5 a8f90b15d8a13d78bf50968e28832bc4
BLAKE2b-256 0b0690deeb2d3768cc3be2f54ab154c6fbb537a663817d019a5da10f446edcf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d10d6c6e6ac8a570c321873057938dd3dc9042f6f7bd4c1ec25e65c94db1d217
MD5 f17b57a34bd3c2e67ac033392a10b907
BLAKE2b-256 c166720a7bb312543931e11f10da2de77112edfc3a1b37a633fad779f6330608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9be1218027d6df6b68ebc896777dc4e5ae69a44a55de3705e8cb30f042afcde
MD5 642e24f6da05f3567d013809b8d7b9de
BLAKE2b-256 1f47cf44256341738c0e72770977d3c20aeed4b5a2094921c03c655dad5a7f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316faf157fa16df52f808706fd6d01b0b18a37365c39d76534d6704f33031ba2
MD5 d98210451f8554d66613b67d8e025b8c
BLAKE2b-256 a9a19183d3de0be7fd364176e41b7ec8bb7304770f0fcdc31a66feb928321b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8028ac5ad8f7325876ce35ce3449fa208cbff1bf93f87df6bfe292301af5dc94
MD5 a7300c176bb38718009a66f8f269404e
BLAKE2b-256 4abbde403d02559b4faa38a93251d7ad2d1817f9dbc8895013255eec96bf2a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c38c5acf7f6abdd6970f755bddfd0bcf446d08b5ec80afb9c1d08e0c9556776
MD5 9617055081b65a117fb0a874f0c99679
BLAKE2b-256 dcb11ec7391823ec69adcc71a2a8d8509d732960ce4bcd7d50dae69a4e37c885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ab1183763786c9823333de1c228b6e1c12e4fb09f24d9166e268c905609e656
MD5 8a57e64e6eef843e4eff3b117cfd82e8
BLAKE2b-256 cd80c655d762731902dfed2a35c82b04b75c43c481e45693dcf1f1e89bcfd241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b5edad70184e7206a1f144f6a355b070b4859cf42311f4b18d36d6c4e122180
MD5 9be0825bfb44a3dc106e8699faa3e118
BLAKE2b-256 62b94f4b7f26a82d831095e8e763893ac88b927036c5340fbb17e839ad15e081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77f20c7a16093b91ec60c450f05cadfb43cd8fde9d669f078e98740d9352f6b8
MD5 ddba215ce1e8c67319646cb78ce7faeb
BLAKE2b-256 9e2381bd1fc1234de0fa556b5186f2c625c5fe254b9b363a360da16f3e307a0b

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