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.2.tar.gz (489.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.2-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.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-cp312-none-win_amd64.whl (498.5 kB view details)

Uploaded CPython 3.12Windows x86-64

coreset_sc-0.1.2-cp312-none-win32.whl (338.1 kB view details)

Uploaded CPython 3.12Windows x86

coreset_sc-0.1.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (603.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (703.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

coreset_sc-0.1.2-cp311-none-win32.whl (338.0 kB view details)

Uploaded CPython 3.11Windows x86

coreset_sc-0.1.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (601.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (705.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

coreset_sc-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (603.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coreset_sc-0.1.2-cp39-none-win_amd64.whl (497.9 kB view details)

Uploaded CPython 3.9Windows x86-64

coreset_sc-0.1.2-cp39-none-win32.whl (338.3 kB view details)

Uploaded CPython 3.9Windows x86

coreset_sc-0.1.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (604.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

coreset_sc-0.1.2-cp38-none-win32.whl (338.0 kB view details)

Uploaded CPython 3.8Windows x86

coreset_sc-0.1.2-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.2-cp38-cp38-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.2.tar.gz
Algorithm Hash digest
SHA256 407c759800e7d5201da4f4e2031b6dea9a7634be76df4d96cd64de65ef9a3751
MD5 52b699f49002a27715e39bae60ebb1b7
BLAKE2b-256 6bfd78505f1931cce1b58c24242aea79f239510ab3d727203dd48522fedb33e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff9bad25d57eaeedf6219add24152be6493705af74bb4a55d0bfe016861cadc0
MD5 dd3d144fd7d8c461426ca68df0550536
BLAKE2b-256 e4581c4b2f61cdd3ab81ca44db817d79a96e2882eabb2b9824d545111be6c8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98d995ae99fa822a61bc5c4d5dc40f469504373b5b32142f8aec0bb5f8f38efc
MD5 a8ea3db35df593bbe48dfd538d96d994
BLAKE2b-256 adf51dd442fddade48b867389faacfd9cfbb2eb779ed18c3116e9ffc2de2028d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6751cfd8eb04695becb2b68ddb4e4bc57266e38add42dd4935983978758a73ec
MD5 17714d16daab641461b082955117abe5
BLAKE2b-256 7bec3519da1cc03858ea680c03a39329ca37cd903927ac1d90a95522009461dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bae96d72d7b5278f46d17a8b21c469b9b1659ece5adfc3603633bc89ba54a674
MD5 68b7cde05fed4d7b68c8db79ba4ef7fb
BLAKE2b-256 e77ce8deee8b7ac36ce8c2da59bf32a59d2b7120c7f57b083554a3b07f074cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d0326b568f0f18cf5017cc4103a45202d02b67dea4dc0ecf502e633fea93fc
MD5 d308d8d1a07f5122d124dadac57a9647
BLAKE2b-256 1eec62e646bf57afcdbe2bbf2ba098548e85db6f0208954e8b15c8e03f21db03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71a13539ebf8228ea67c9560634e5352b33c3aae30e62a5ee0f4fcfef0a0b71f
MD5 e557439a4bc68fbe85167a2510ea87cd
BLAKE2b-256 b46c16e74f6d4b199daef6c8d9aac9b6c9bd607935b9911a4606e2fd72289f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f3534100ee7da619e8e271f49e18f4924533c85315a8400f609e4fe17e40dbc
MD5 715f93c1c66e70c9930c4b264cd61690
BLAKE2b-256 569cf51fc5da240ec111c23ac93207e8a62e1a428ce13d9dbe7ea8b01e28ec32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4464332b292a35518806b383013d5011dd169357c03927aaf5e9131950bc15fc
MD5 bb0c5bacea13e245e23d35370295d366
BLAKE2b-256 5c5cc6eab99e3aea579dbb85b2b81ca3ad5550384b6cff3b91281abe94cca4fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b40593c8a141e9a2530e073c30eefbda6bdd3414bdc6c6fa3da9925e62ae20b1
MD5 a036c9bd3ee63462eebbf5b1ce69df18
BLAKE2b-256 14cddba0786c6ec8b3dbf8d0c63237457d6604196034a7a874dc9dc79c946bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3df1b7303938f1397dcbb8d5b06b6dcec2066fe71d0fe5deb110ccc8e9051d4
MD5 d9888a25729f15fa9fe7969287943c16
BLAKE2b-256 cf6ed1cf4973d78ff4ce4abb0e2cad81be5deafd185ec1da9c809fce7a39973d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8259570a36619cc2d4fc2690fe0cb05ee346b8022c9a2dea7fed3299c42d610d
MD5 c28182425902b6018e428c71fbb8b66c
BLAKE2b-256 669d2b53844e4535f603614d171902fc210e6a2c8be1667f241f0b69905ba069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c9cd476e46ff91c62f6f948f76d2ac6085a3b05897f195c03cb3cc8506fd004
MD5 a4ec888260c2eae70f73e2f1154020a5
BLAKE2b-256 8bf82684493f2ffb4e058033939008c06c488d835ade8c20a0db4ab440ce5324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55ce25d8e5fde2fd31af05023ac768af57c260a231869939d52ddcec0da5f8e8
MD5 6d91b36b1b606b6df51656aa3dfa56ae
BLAKE2b-256 6087c7cddc01cc79156fab3ee5b795a1c9df9163ada697ae7df9024b1bea2cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb468a66a5f31d9c0349f4832f90e8bf4f5298d67ca6d86b5007ebcf9872872a
MD5 728b6838f3405e7368979ea52c04abe8
BLAKE2b-256 34c5aac795b1450cdd2874a8461841c4dd2d88492b88e69f0c76d1bbd9fc5172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6903a0e7d2e6422097f5cb3db70b6d81cc94605a1251a268dc649c9aaeadcc46
MD5 c2e3bf372d9504566dffd6a2712306df
BLAKE2b-256 c90613bddc5a343f8c7a4334c5e1b396fca7a30cdaa59b88de88e5641f735b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbeee50e6922b180c1c7a74fd6ecd1c0a01108cef276fae5b730b5fb286c3112
MD5 af931970f3d51ccfbe60912366cfbdad
BLAKE2b-256 a80fe94966d382b8582a92becc0b33943d919a6b3eb4fa7e47b13f34c01c92e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6962b88f21cdce7b377f62a438e8a7d2c000b3d6b88dba90bc77903da7cd548
MD5 26c4693b53bd6b7221941ca38f51f127
BLAKE2b-256 223a025676ff6c89126a79372a3a1f0e299c9a91d3765f3b17cb4b027cf36cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc4f82d2f5a092ca4ebadc8f1ef8b8179d399e5b7d618acd36b939633a73e4fb
MD5 716528eacc71abe1f33ffe3bf6c09dd4
BLAKE2b-256 a38c91063a4cba2be7a4099b00dccbf04424c74569be2c587f9f7887cd95117f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bd72c2ef63ab77bdb25df728fceca80c140b04675425cde507215b3e4dd59a4
MD5 cbf98defb717c49cf835a144f8f978bb
BLAKE2b-256 0e39bc118d93cd5177c21d4e1d785d84686abadebcceb85cc5f6aef4aec110d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3afaef37de2d562be6aaec7901eda215eaeb5f598616bd68c0b464c7f0f320ba
MD5 5fe85b611e89e26b35d676d2429decec
BLAKE2b-256 b8d43d798336db01aa4cb6a3a15b8dadd6a196cfe97561ad7fcfc48ecf00e4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43deab590f90d2a8ec4d7aa5efa5516602887d227adb09acd08d7002b30f903a
MD5 4f05bc009b6f3fe37d20f5a6cb21c661
BLAKE2b-256 e8a2929135416c851202ef53b7f6897693150329971ce4f8b942627c12921e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ca3364aa20b9638d73fa9a87d1a6c57aa6f9a8888854111529b9c8863bc9964
MD5 5010485ec964d30ba3af2ab5dfb88737
BLAKE2b-256 bef435a15796f8cdb2ad39bdf46aaf30c6b26eb4c802dc0d8975848fff1f8342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3d212351d2060f21ca08e6bd9be73ff630f2c0183fe348fad3368f7959d78df
MD5 38b0641f8879b6beed4109a35ab8289a
BLAKE2b-256 c1b7b4bcbb31b7f7660950c8c4598d2d42a7bcad5467e236d5dd046d3d16d515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a510e75f880da095e2f8fb17fc796770e617ada1899676636f6f88ba9f595616
MD5 d1514eaf59475abb4ba5abdd73154875
BLAKE2b-256 2492508712b027e310276c9913c4157faebce79fd986aa0ab1da097d0a4dafea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2404322057966e2cd99a4b944a10a7ea54e9ea2c0280e316b0671b1ae67144aa
MD5 44df092a5dd0862f1ca8df5d6d25afa5
BLAKE2b-256 480b71cc20e0cab00b6da3daf1b189d43ec54487be491e2c29ddcf46994713ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9509eab66a365018abaa8baa3a2e94f4472ad0fb654d57752566aa2e3bded36
MD5 0c18bd4617e0a63e182e5c5b6083b4a3
BLAKE2b-256 11b32077beed443b6820be200b8f0deaac90d18014b98d1abd3adcff5b5e8eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2d8cdab1a4d66aa639411f9eeac77ec5de141214503fb87003eb5ef3adadb30a
MD5 e82fd2f0bb34a36c0d10126483481e26
BLAKE2b-256 7a56a36c751cfd07012fd11413317701cda8603cf774c517b9a16a6d227d8506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 338.1 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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ab8ae8459aa2ba138740148a450a4f0f9e7b485674a9353b9c5022f269d6a034
MD5 28a5552f91da8ffa26b156ab92515b99
BLAKE2b-256 b4d66b15268dfb4dbe68b520dd40841d71cab1eccfa6e8f784f67b3d2fd51346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 814b156c4a4db523b891751470a20309a0cc57f0733fa0076b7677290c2dd492
MD5 c2a051c3833d3ab75dd1eaf861451ed1
BLAKE2b-256 8f61ca84a90a93c505002eca716cd0acba67fb47c9c8a9e6802016b8b350a85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 487beb1a664a4dca90154917ec133695697781db31792e84430cdef1b8a1b96a
MD5 60f8ad962cbb4ebc0c3ace44c870a39f
BLAKE2b-256 66b1c1f94c5a448be0fb0892264315c2b5150d2201ef50926fb9367e6812aa7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66d3738da51767ecdf978c6a3a923ce924cf6c4c30952fc58923ad36f55fa6a1
MD5 2b4caf2bfb7ea7f8786cdbf4605488a3
BLAKE2b-256 011965d8eba356cbb462e40075e2b90ca125f0ac5852926d22d0eabf2aa6e381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b614fdb06f7bf6a0095ef04a95594d8e62cd3f265549367aa20715ca3635405
MD5 23613acc1325436f1e632ad178e3ac16
BLAKE2b-256 39f71ede1e2c4e90ee8eb41507948d7320f1f2baf50c962c8c51d5fea2cc0b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f8fbc03e7c20fd3430e90f01f24161405e544d560a3460753e9b951cfd02b5c
MD5 a191d3ea7eea7ffd8fd733584dfdc61d
BLAKE2b-256 318edb21413d8ac1ebf41841fa7355d06bdfccd5aa419518b32c18bfdf852221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07b3968c7ea524d6825ab49f0485d4862c0c596727801aabc1955503dc8ea1f1
MD5 5f1478aee3acb447b7c6ed24dc4a5a36
BLAKE2b-256 3a0a8b0db4d9229b1b3e209554edf0dcf49cbf324b970efaa043aa9412e93e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca4e677ba75fb4e197a02365bb3e1bb95200e0518f881d4f76ef68fff22bfac2
MD5 03921dd7766f16141bbf08231803da5a
BLAKE2b-256 a79188afd5c9f7afbd7f9135f06613ae23f26ed873f34dc45118889527db198e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8aa7357897c53c4817e1883868393485f04fe5d6c268b01ceaabe60325256ded
MD5 b24644a02f2d13825fef9969a2056041
BLAKE2b-256 d37ff202e8da7548d3feba2f60fb37fec08dd8a91ffb1ba4350756ab0685c7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e80c0fe9a30ae2687f7532fe2a58fa24eff74fb4ee53e5b2ccf445d55791a216
MD5 f0cc74c8f7e5fd5be408fbdb0a9362f3
BLAKE2b-256 6cc7c9b6572f158f19bfe45742814480aae8f7a90cf71bdac682cfb4b0822bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d49b8dfc2caa83f7bc41c1c3f0feb53240e5bae71cf6052b102dde23e5255dd8
MD5 2969578f9fc27e0a711f0db652d698c2
BLAKE2b-256 4189fe0c33dfa64668d5563223977989872687081705061e428bd0c407c27581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 701151a5d808ea08b65a3281b51530d320009a0faa66a79291eb945091a858d7
MD5 086e903a970992a759447412fea0a070
BLAKE2b-256 a4e1edd8c2ade1fe13649da20a2b10b99fca8011452c6d8cc9ba8032d4a792b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0b6daa1311b9237f39ac1f1fad41d1e32388ab93fbc2959f44e228a5614ba59
MD5 88a8873ba46756db2586cf5c3adee988
BLAKE2b-256 366153012b16c24aa993956019440bdde2a783bbdcb7ad5843920eb7df8ad899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4e27c5f9a83775ba35f00e016acce933de086598b90208d878793c96ea79cbcf
MD5 eff1af547510f10ad86fc092ad9dd8d8
BLAKE2b-256 0d48ff2b6b41749a1c804b7bed34fb0cbe70cf8d5d5a010590e2aa6f71995fa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 338.0 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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1d2565863529bdb8c8dfc05c6320f9c171dd13f9549af49238f7975fb5d9fd74
MD5 52d14de8d7c3e98bc69beff53d3e896d
BLAKE2b-256 3df0e36053c58fd0c5ee73c72dd0dbcc78beb99e1d10c05c7cc7a77ea918c016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8158c1dd0264799dfd64ba290a9b7ec87ca788cbdf01f643238ff13b7ccbce41
MD5 dd61563f633e0d5be463e70425586f40
BLAKE2b-256 eb83fde2a96e9ef2a3719f32afd6dc75eae39dec7c74e7cb83045056334d2185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2f8e4f3c3e1dcd612d508f05d67fdd215228fb77920b49925e5de3be839df28
MD5 0ef62d948508bd817a442e1a712a35d4
BLAKE2b-256 979d2835429c5193110f9cecb6e470c92d5a5976b8fd7a45f1b1dce220b9899e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dcaa16e2162cafbf70bc92e8396eac445ce284a7cf7654bbabd873fb7530b63
MD5 c5104b5e87bdd678dcd4ffe4404e0448
BLAKE2b-256 79005079719965c0772193cdfe24471102cf46696653d5b8a29363264cc28a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9d8283ad5a43d2c9f19a4ce38ad421eec758bf2823feb7dfdbbc252e103472f
MD5 3a3c9fecd796107d9b64284ac14ddaf9
BLAKE2b-256 e27513aaf9eae553356c3999f67e4b4d97511fe328a8b71afe8808c3319a73bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 679b656a37b0d3258b9a2ce47bcc91c8d47e7accc3393588896fffac44d4c026
MD5 e30060ae920a6fc3309b7d71725f27ea
BLAKE2b-256 0d04c47e70117a829ce7db142d8d531a9d7c1d150c1f0b504853798ec2386d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 607dccae01fd6af0e843a78b82239e239cdc3e139734e26a487d5050441aac30
MD5 0b9d0b8b44b4632500d2a207403066f4
BLAKE2b-256 f103c3869971efe8993af10d646e87c06d60f82a15810b996f9ee1be056ef9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80ae25e01acd81bc0cfca7856a351253d969c3f3eb03796085a99d4e1f212013
MD5 e783545ad1606b3659272de526af54a2
BLAKE2b-256 7fd3ec1d638213abf4c4af777f406c3eefe78f2465933a6c7a3b834603d16106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c08a425aafa78ec19a7b27c430b94e0c1e20e1782c2e059e711ca38a90e81f6d
MD5 de31abb71a44959e23deb8721737c0b1
BLAKE2b-256 beedd5ddae48c8bd04adacd25e33a15e5257e90323bd336e89f21cf9ecabd513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98f3645168b3fb70f4d43114d6ab70ccc723ec924e25c2cba9d2466782563eeb
MD5 018234cd0532e45ecf7235aac8a22703
BLAKE2b-256 78d544bbfe2b6906b8943edf0dac34fb92391aeb4a5fe4e6ae5cb07f2f27f94a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38c9f7123a39e805da5e118261693868c9f0178f344d37cfaa003f3cfd1f87d0
MD5 36f0937be4c8c44e4ad3197b3227b31a
BLAKE2b-256 dcb901dd87914c5ded1112646438beb78c4ece60f5abe4d1e016d1c31a0a511e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4923484cd3067be57b1a4921e0ad006177be95f90ad33ed0789db7c9a8fb7ec6
MD5 df0d68e4c786dc9cd8658caed38595bd
BLAKE2b-256 c3ae84cea8baf3ece708351d3ae4f49d12cc3a0519d216ced4d07f765162e50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0211de523352281ba99204b8d3b95d5bbd188cffeed9d4486ef20bae2bcc5b53
MD5 1a84b0a5ac122bb73e768573b3c3c97a
BLAKE2b-256 6a7680ab1b2fdc650daa383975cceb5dc6a7d7f7934d6a5032ad293eb18aa8a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 191864cbc691badba665891faf31086776780111dbc4cab08ea428e2ba6dfb98
MD5 0356935c5d6db4e0b25683271c071b04
BLAKE2b-256 b5ee8ea7d53d41d301b3e8df3ec6cb70d4a58e2fa4d1d6beb9d60cf4d3c6c9f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.2-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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7298985fe87713105eb955f6ec55e421ab373519837b383a5e9602cf897bb32e
MD5 46e9f7bcbb71179ad68a057bd720428d
BLAKE2b-256 14532fb524a034e03f3b7ef94e7bfef37882bdb5b7fb8c191b69f3df467f90c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 683ede6c405d274935c3e3bca15f46827a2a92a50d342cd889cee518f57eb66e
MD5 2671a362956d6563d206773dacad4fcd
BLAKE2b-256 f6c5227f09fb77ea92f018ba9cbd47875a0430367aaf49c2a469d22d45426286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 170e82cf6e8d79e3f6ba820b6e5c3f19bbeec3502b0114f974859b12c94fdc59
MD5 6501c33498ba8ee7f091020687f25f8d
BLAKE2b-256 e19ec3f0271494b1a563d5903ce476ee49ff8d59ebe09d977611dad50a664999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa23096b574008f3bd636e1e13968509d0e314480c55c6cffe1ebae5ea3c24a8
MD5 da1047352d51d4dd693d25ad5b9a73b3
BLAKE2b-256 3364a53c221d19cd195e8242238b797f93ff7077f8ca456466eee92e7a7b2f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e747a41748c785edf265f29dfed5e21f9e3b3ec21d386f1ead2d451e73b3af03
MD5 1ece107d4472704daab8e6e7725ceea6
BLAKE2b-256 2829dc678952efe8e410c4c98afb02641782b30135ac7b24799c3b2cd19d2fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aaaa66f389075ba86f57506a213997252cabb1878435f025a09db0dfb03053f
MD5 353532b6c7404d4a496054bc2a3a0a7d
BLAKE2b-256 60db3493ea4b216afbc396fe167c830c105f50b4c8455e275d762a2eac8f468e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12be89eb3d5e3d305bffc998a36793e352249964cb76d5ee447651395769682b
MD5 d8e446806982f03de87a20b903f9b261
BLAKE2b-256 8da67f46e29310919dfc5826fb6afab675976618563a435512e0f122fca04526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fac3d686c72e7bb0bed8b7653a23d46bd821dd5bb92ecad4752f8e6f360db0f7
MD5 f81c26dfbd5ea782f81aff66830fbf65
BLAKE2b-256 a4df40afe974e3c4a3d8a793915256cc3803bc48697216df4527a76d0c9f6070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b461f8c01a8074b36f4596ab1a59a87e34b3b24757f7e6afa1db372759d1cff
MD5 8fe627a39ff9a89faaf421d015bce342
BLAKE2b-256 0bc05104f11c5d315bea5ea49e2ea59679c5557e94e50928e22371f90e4d4758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 193bf67f517a051ca48cc2caf128649e70e70986d02c81024a19ca595909d010
MD5 dbfaac59697fe1e9418944c5dd0aaa10
BLAKE2b-256 cdb280e7d5e6c1dc20da1a3e493bca1ce7ea5cd6e5d7560b710b7be15bb672ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8174bc98f8486304cad2db473112b91a08174e071754d2d6175b6427a8facd97
MD5 a5916788a9ed4d51daabdda84b6bcac4
BLAKE2b-256 ea8628d5f33e6365730c9743f13e9bac91bdb5f3b00da83ba55a7a0ac25ac9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56f61b154191016bb6d4f0f5c2b88d56199e164ce239b9ecee9ada688ce7bc7
MD5 1aa946454912139601c03928a7845844
BLAKE2b-256 20971433a7710cae45630ac534a52bc0e35e787a33bb8938051205c5ae0c8a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 70424f0e13dd802b96315d54395256f7b48829625846a87ebd9fbbb8736e20b5
MD5 882b09b56e78e198350e6c957e2d34d9
BLAKE2b-256 c9aaf226155cc06c72e88d20fb8f9af2198c8de4fe76161fba1e58cd2f2748e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 338.3 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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e147151ae5b0ff8b843271de017455e227bcaba67390e303db2a4b02987b652e
MD5 778552c86beb6017d8d951885455e8bf
BLAKE2b-256 800d19bdf9c1747d921b9acb7fa5d7110f6b873f4d21c6cefd85aefe72a39c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b304c9e4fddfaa59d6cb8ec876183c84a4d4ca380d6237214ff6237182eac27
MD5 40f4332c25434da2e8a027c1b385eed0
BLAKE2b-256 e4baaecde8d42647ba9ac9b413e55331464044f465b5095fcd9629d89802faa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33bbe2011ead3954c5fa0c4a8c2bde801c5792aaf27e4724a9fa61b917768372
MD5 d168a2d80d4f0dc04903ebca88697312
BLAKE2b-256 57408ce077fc9473bff462c6a25bc58722fcc6ce8575a80dbd3d0bb416bc84d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bf2e515e8dd98a1ebfb2587cf26e147d40ac926656d152cd690ca9731bc9a38
MD5 763dcb82cda1d80134345cd4d2322d25
BLAKE2b-256 96beccd34f6a31902b040a6ad8c273b737d455b20af0921f8faae470453a5a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d48dd7e75f224c779be1fa9b3620059a89d337e25446e77f6083d1f1ca4f2fa3
MD5 933ccc27b26302775e9f79ae570acc40
BLAKE2b-256 a93388cad4b3d14ec88519f6ddad9ed8d7d3974ea8f66b2fe47648aa22d36bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f9161c2e7bb70315fa2f1bfdd518d23d344d665d37a8565749c0ebf51a49a22
MD5 0376d121713bd66d0efec69ebf331eb6
BLAKE2b-256 128a1b154c84b0d71d33d88e8da5d8225a69af6a3604f0f9ad318709960a372c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 415520396fd3250e9e7397af251e58c8d814f5f5609c4343c592c06fd902bf60
MD5 4db557b496e9584e3bd352ba65a40480
BLAKE2b-256 f94de467a744ed01816c0b67c91d80c292cebf436370a3e8e9c45c827dcc3492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31c56998216910b9d0c4a726d7b973226d09c511996006bc1e25abe6f45ed286
MD5 fde1a7010680e4e7082ddbb0bd6f3dea
BLAKE2b-256 d26ba07390aed8e0ebe23af9ea2b94293993defc89a5a9eadf7f9ad544ed3726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6968040491d35a5a17aebfb908e4b4f326fc2224a094b9a031c3f12cbbb56db3
MD5 891d78655f5637e8ad856ff697304bdb
BLAKE2b-256 13938e4e539d6105a774e0321c8f92726eb4292efa1be0ba1dd8141f3fd27c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 470dfc68911520ae42501f03e2c729e26a307d43dcf07e1d24d60eb4c2873d69
MD5 1ddc3d17f8e09239b7639e63a13633e3
BLAKE2b-256 be93a85fffe1d4956fa1c997e7206a4af2d2e68a3fe293134694f2fd60bf41a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f64b23235f9b0db705066e4717ad014c89f84e041cdb1be55e76c8065511e7ea
MD5 00ba947d98cf74b6e6a4735bba744d50
BLAKE2b-256 34a40ed96ba39c3836fc0d7260fd39dae77e158c458eea4ca623e265dba68903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc58412f7e1d03356de0859867cfd899ba09f1478984d4d59a00cd57ff0af26d
MD5 5d2c9edb8759e6ebea1ebf81b0333c0e
BLAKE2b-256 0b0181c2147b02105f49dd5f00ff37723bccf41746e7b74cff912b011a3883ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 388ab0faf3af6ee1c995c1a8b7b5ef494aa29d2a0fef887a44222eccd22fb455
MD5 84f4fdc26f190897505dd16754c410e0
BLAKE2b-256 16430fd0702663014292ab282e9060b48385b0b3abff4bf7591b5a32acc75c2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 338.0 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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9041da06d9c786cb7f51812d8d644cc3ce7d7c64b4d15a3e0a4e9b9e2a969bbe
MD5 ac5399bd78c7a8a594fb7db64f3f9d00
BLAKE2b-256 5af649165a2e991111cc0e24db3f64a80e1af1f3536e9ed726c2e3a7247c7c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5270bc3f07cd1b9fa3653d44fc88dfda7b185a320dc00f19a5b36c289144cd0a
MD5 837f65d1955b4389164a7833dc64e4be
BLAKE2b-256 26aa96de86dc2fe38335501edcb82141ec5f6aba724b5ae58ed4aa93fffc4450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10cfddfa07982c7177c7075d9b1c1bb65f9c40594e14b09f2601070fc8481509
MD5 2038218d38f61a32ad76b8c16702cae9
BLAKE2b-256 481db500c8b57b575e7d7bd170fc2dcd2cc00ab63beeb23914b5e538d74d1c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1517529f31d2c1b176df876b67ecb3c01d40e905ce9ee4fcc652efb978b57f67
MD5 4018dcf82a2c7cc60454d1814e0cb9cb
BLAKE2b-256 d0d553e13c3d4f4f42035b0e577b5ce57323683abb85c3b9b0d645cfcfec5509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 837429faa7dbefdf90a1fb35350f5b77314b15c8399706759bf74ece6b9bc155
MD5 19baad7ec92fe56c38ab2660b74f9de7
BLAKE2b-256 e68f497b6ad0c7527d3a76597c55586c6cf7f7b4fb9078d315a81a785c32d937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25997e12583171240c9967dd76577f94f16261a0c0b665c1a9f01467cc99dcc5
MD5 330a567293bfa4fd99a8fa9203bed505
BLAKE2b-256 fe85dc1a1be06c83cb9c1fc695c01e1ae23df04900b6f718a7ee89fb8a94e7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 922902beba6b3dc2fbceddf7dacb7cc81e0e3b1b53748251cf81549b0d544d67
MD5 babe7b2876d606496ffb2c036ef5fd37
BLAKE2b-256 2cd8b960eb6a8f46c09fcc4cb759419086e1d3b448fd2c119ee46c3820b350fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15dcf020487c7f645ba67d5724cf4b191896eb081db9584e79b14bf222a3e893
MD5 d30d86d9dc84bce5b0d567908f49d4bb
BLAKE2b-256 a5e28cddc38cc2fabef9f12d47f9b46180fd84d33b8a51b583988b30f644cd39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d93e8dc98872ff004f04df0c702db961b1f53a230ce72d6fb2f0fa0ee72c90d
MD5 e6976eed90cac42fae281c869e5bf516
BLAKE2b-256 0b49702ef42907bd7cd5510f2aeca20ef07a1bc679d4fc0b7f1f24f9b2e8dbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3eabdaf0e9c66871c5d0cff5c96534fe01c7434a862c1da88edec515e3731bd
MD5 d8b752abdcd813527a228dee84e66bbf
BLAKE2b-256 262ce8c13839aeb35fa62eb8488948fb75542210feb24595c9becf203f9aad7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a0aa0ac440bd8af1dee0244d6c5c50e6df63830feebf19c81c797272cfce8a8
MD5 eecf8bfe39c4166035ef2db204d57b94
BLAKE2b-256 adc68d593c7891d383568e5ed5fe510438c070cdafbae89b5ebbab1ef63424ab

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