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.1.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.1-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.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (6.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (703.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

coreset_sc-0.1.1-cp311-none-win_amd64.whl (497.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.1-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.1-cp310-none-win_amd64.whl (497.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (603.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (604.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

coreset_sc-0.1.1-cp38-none-win_amd64.whl (497.7 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: coreset_sc-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 bd19d45bfdc6c40c26cce81b5da4219d2a4376592284f1cbeb423b780d8d0f12
MD5 db4636c86191fdb31416b03afe0da9a7
BLAKE2b-256 980e735c52229458f1f2a4894bc4bf684c11b533b5bc649e4124c8b7e161398a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b0091d7fd96360111988b2cef3515f49fa04feed4d79736d3b2b1179907d8da
MD5 6aaf29c20f5feeb06359454a55ab98cc
BLAKE2b-256 531e00d88a2057c11e546e42c219a07f8b18367cdad242b5fc8d80f8bb2d50d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48d2b1e99f901ec689cda0311cdc753eccf6fed5284bbf97a33ff1bf730c1019
MD5 24c032d9b5bb9572901e1854bba54da0
BLAKE2b-256 8386bd8bb2b31860fb697d70f77e91e066841afb896f8d7dd715227e2083d0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 343185047a717373a34ee308efb69a7c362c1a94f85ef5892c3e6d33b6308463
MD5 be37ed87eb4b240d5d919d97ac4e1400
BLAKE2b-256 7541384c6e6df368ca1d24409d5ac708c242a1ac24d17580cfa2756d4168cf9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0efb1ebd096cc41bfd29e900e0b5294985a50247684f01d85865be0ae6ae2b0
MD5 b96d22d7d42cdeb884aa79b45d59d1b2
BLAKE2b-256 f326ff1ee2017fdcaf761647bcab911808a98444c0b5151018ac4f5947a100b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b82549f71c8d55e458290d46142105619be2cceab208d66b9c2e56fb6f4244a2
MD5 eca81a29d0c9dafc1a31ee72adc85e2c
BLAKE2b-256 bef54acee8c887c4b527250d4a2297a4b91a3a0ee7beb30918b24dd0b1c35cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4c91546b39f0fd85470e128124d3a289a8908f986fed8d4b7c46d4fb4f59796
MD5 38ee720bb3607abfdb22e154cfc4dac5
BLAKE2b-256 6585a880be466685650646a762baa546126e9e693f0060da6554df762bf6b6e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc05293ad7574886bbe34bd6ba5aa360109b994e5c90218949b12ca33b32a2f7
MD5 e6e89865862997a3d30d89ed4fa90252
BLAKE2b-256 289f95431700d852ea0d7c3e58ba929fb47360e65dbc423ebe6bb91b2ea9be4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 728f58751eb432a85f283b82cb7bf8d54826690881b6d725a78f9f1d4077f54b
MD5 537ca9b98b037f0bfbfdfeeecf4a7032
BLAKE2b-256 eac99b6e78b2e51dc2652f023a3b89aec9ade6f9723033ff512529f0bd862e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1117b86a7169b5c7ecdc462d9b617bc5b4ecc2e63a5c615a74605a4c6f3fb484
MD5 2d1354829916a9d9bb4b6117a820b04b
BLAKE2b-256 854df0e6a201ede639b9dfc69f82fa6f6f6bba9d2401d4a86b4405aecc92f417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 641010e59a0fe574d2392b3fb0a0950bd763acb2387329df093d54ae422cfeac
MD5 f7b783165b860364cf6331f527daa4fc
BLAKE2b-256 9d71f404cd026f2eaab0785d23000a103931148372f33f1971c1f6a9995ad60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe04c77482bc108a93a4e1280f5ce07812af8e73e7e542ffdc152f18fe60c00
MD5 8bbf9a4c397ea9f5ae6f6196c5251f8e
BLAKE2b-256 d1a13286c7b12d83f112552d2ee026fb3ba4ef9de2559fdd33a480e68c241139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ab9d562bbf903f4558aeb970093a98dda86effc8933d500f3c51841511c8657
MD5 3dec2b1d73abec626a8a05262e3a9ae8
BLAKE2b-256 6406f15527b832790517703554e6e693d9b7e26b0bd2629cf0fdd032f61d99d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b8f8115abdfd0be588db1f6bd36d2661b7025d550a00d4f61a2c77757eabdf1
MD5 7bdf3622782a5eece6ac0df427a742e1
BLAKE2b-256 8ec721d7c8e280b6ff9dcbf27426dca9cbeace9ed4f211cde3d541fe8f0f7619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6a825380d2c8bfa28149256cd6156eb90aa0ad54a09f5d5ddfd25ba2fc6c5f3
MD5 6a106800c5aa3adcd39ee357d9272bcf
BLAKE2b-256 a08fdde4b8d88b97602c754933ee72f89097a80ab83ab97edff923bed04d86b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1352345f644532509f4871d6b791351a256b20afad01902ca5b1795781a28625
MD5 0c44010a3668c3bfb28fc1dd61956919
BLAKE2b-256 98f9cd4e29ff938956f54d67f376dad3da9ec5672bb70a88420a5a94e77845e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccfba44dbb1aee03a507a0aa1be11eade016e175035caf3b015f3261c095133c
MD5 871e2aea5b206d9e95de3ac3705d554e
BLAKE2b-256 d53a9a09c26fbc0a29d52123c1426920fbbe31e4a570d94be43ac8f2b8ec00c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 025202b09929d400c2bdf65055f953921c536badafa567ed281811811acf81b5
MD5 890fb478d9f921733da56a6c86c7a442
BLAKE2b-256 5e8082220e5a08743ae0ffea5f420b6cb910ff6a8a7b428b0184469a56d2ede0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7651d9715cb7d1d48fea6802ed29230fe98e472251bf1f17896a184f6f88872
MD5 c2d92b2629e6547147bdd3ca97d324ba
BLAKE2b-256 d8b129c3f2d58ab56bc1119b37cc34736014b117db730c46c8c134739c8e5796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f03809b314de1a97039fe8ebd44de0a7c507b6887e99d9c9286b0e2071de515a
MD5 eafffd987bbe4660d440c7910adabea0
BLAKE2b-256 85f73628da1a122b06f36a1bb85c25f22a87de19fd4b66115d78c91a303bbe4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a149d49f74ff38d7d6b20bd87bdb9aed9a31e6150e0faf98beb796737cddda40
MD5 b411f1cd51eb2a8f145ba1f8725ed9bf
BLAKE2b-256 bfbd9addfb149a82c2747cede98ff5a0b9772dd32b1ab7e36c4bdc63c18a0f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65379a5eb5b3ac50b3b6d81fd7d4934b54968a0178684df3b35d9ec6ebf3fe53
MD5 17d95996917fe3a33b6037b4435abb21
BLAKE2b-256 12289212ac4dfa4cf72743f16b770f8122bb9ef153c48e4e3a0de1a625ce663b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 793c366fb0daede72345950c7a699e361d407ae5a7f6c3d7f615318f9b55bc2c
MD5 897147e74598a5a4e0e1d2bc982bad8c
BLAKE2b-256 39490706636caf77a43949b77795bd04f0961d000b87e62a02a73a962389212a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74e7cc7bf2bf95175a7a7ca9aade43d07e837f5a8ee95785d0762aa44ed68c4b
MD5 01ddade9f9c7ff7ee915dd583807a038
BLAKE2b-256 18445b255c43a187b98ac761cbfc85a0252b54a778d00c7338b900c8d0589d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1619a00d6438cc508f698a82fa25765e25c631e20b7836101f563462000f0278
MD5 809d601c7ab016ab798144d9c9254eb2
BLAKE2b-256 7881187e8371e23bf487b28ff8aecb435921b36b42bc88672982cd1af9694259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd0333d6cc5292b758626bd461fac3a887e83cabc71ef2d0cc7c5b4037b58a08
MD5 e8f5f41a3c8f603ef94bc494db85f4ab
BLAKE2b-256 1011772e688bfe445962740d99dcb5e6d077354571345b6ab128e8e16399db2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3aaddf32a04ed9c40d1f8bda16ac277637d0d9a2383e7108be0ed6a76f89099
MD5 ce1569d4ba58132e7a7d07844198817d
BLAKE2b-256 122fdb000002a524278bf3b0233b0cd4a8b09592aad42f66f45d047955d2c1f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 5f5394cadfa02d66012a3e0baef17c0453b69bf260e83fff933609acc97ff3b2
MD5 c9191fc64a64f25a6685f69d39a61bc5
BLAKE2b-256 f83f19963c76a7916c6d8540a2007df3bd7fcd0e52590cc5ce8a2bf1cf0d31af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.1-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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3ca45cef991ee8bf4fbe01770f2776c6d425caa3da82eb53326582f0176a24ee
MD5 f4a958591e4108d824a41500ba06dcd6
BLAKE2b-256 d06fa9350ee60b618f89144955bb3d178d68f2ee37133ef9ce9537fad2dbcda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4e23817102fccada7d2c443f7e7cd0f2a2a9947a85accdf37f525ae37f51e95
MD5 79cce28f9a1622fd7a48bb95e468c74b
BLAKE2b-256 ac3de250282aaffd64a3c53dc360f60a32fc5f2c2ed8529a2e0ed4576354fad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ecb7893c67abf7fca135b9fee824d6ff293dea405cd098a0982b1371c70fdd8
MD5 6606b356075d1f6833afb5e53542824a
BLAKE2b-256 c1ce6f2af604ba04eb7889c22cdc9099525750a50f7277b800eb2a3027bd5450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10d8dcd7fb23800518c339065bb9eb50f44b729dd9b2aa70592aef9d2b444651
MD5 b9639dbd9a4e88bc834bd02f861a0ff5
BLAKE2b-256 0a245004a084f8258b5e4cf3f44fdc093360eb8fe08f6de5cb654b3ccb8db58d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74907592a402fef9f3d2112073f9583a3ebf7c957347484d1daa53835849490f
MD5 5a9b18cc9b6809128d2feb6653070650
BLAKE2b-256 2d6ee43af4ca5bc6c31365d43f9a5b0f1068cae33c47a2b633660361e89fe977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 974ef69d064ffd5d1afc8b43281461a3333f0a5b9f2d8fb9e2000fca08e5a1d3
MD5 2ad116ef59cebb8a71d68c763f8e92e6
BLAKE2b-256 6421560301c1cde1051f0daac9da30eecb0ef30ff78fef0e3688ba1c27a3638a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 717ae556cf04ff48178ef058a26a99ec37ba7b8bf0ca20b286610a180da4759b
MD5 91e1f8a9ba5ee29b3965bfb9dc5c45e3
BLAKE2b-256 edfe2f893612ec4e802a28035db973438f3d7f54240c29c100cb5400804a65bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb5ea74e34aa94f8a9e20d927033ce7e5e5b0df41622b304b5e4021f3d2b2f4c
MD5 7e54cf2a20e62b064b648f5711319055
BLAKE2b-256 1c6bea8f1aac4097762f95d14b418d3ab30dcd195e91d92f9f007b533306b591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3342b6fca990c4e2c9229cfe96453a260642da067a6c029beab42c642c681381
MD5 e21434445a5b1f78eeded626e99988a4
BLAKE2b-256 784fc121ddbb6d02da3db8e63edcdee6c990534e0c2bab23beb1a15cc18b7b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 487d26207bea27361d48433c71edf4b04bab5c7a443474f3cf69e331fa38790d
MD5 d9445ef7fd70338eb585e7eff309e866
BLAKE2b-256 b30d021dbbbe332f3ef2bced15d8a5feca123d9ed16355286583394a79d83c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26d73597cc509cd0eee4534292da676fae3d0325c84a8e66646ca4a629c2b327
MD5 e220fb214fc7843a3018f46c657ee2fa
BLAKE2b-256 355a9b27fbff8fb04740d300f07f3e52db22525a13905e67e5aa2eb913556508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1be8578b87db45be66f6595575a289e49d6e2cd487f9cf18717d10d65f90176f
MD5 c09cbd80ab745cdcc15ad4976399c52c
BLAKE2b-256 47743a43eae4826727572e7e11ba7f93c2d78f27aedca87000884a9b7b8bddc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01c93fc74b6bddca90e3e85051c8ca7184adfac94722c2b2a706c8f77208884a
MD5 c388833edca2ed08ea9cd4dab21099bc
BLAKE2b-256 aa2b1a290e1a734ca9708e5167fd8a4f4bbd562f51d7373616d741665719f96b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb4cfe1de3ea3947cda3367070bf10f24da0f740b27235f094c4ff0d2b5775a7
MD5 934538ee1e2e782bd92cb3fe75fad245
BLAKE2b-256 8b07abaa45b58e20c5229f1a7ad84fc3d37a35c5d34807e1b80f69dfa209843b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.1-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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3890677ffc658655332c18c33696bd3363f42b9aeaba606039238cfcd44d5c98
MD5 384977b7bedc8cf1e2fae59f6ac7c260
BLAKE2b-256 3cd548117896e73095927a2b5eb2a96a30daad08f8af5d1c4d5751af28e69371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 238bd457c8f18c0990b1b3d2274e61a5a1429467afdf08d468c4b28e543a7ca3
MD5 80236cc3339987e5a8915ca0068bb1ca
BLAKE2b-256 5fa26400bc995223102c7df7d80e401ae9f8c2142214526fbb686444e4576235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7637996d764fbd74e21cc35eedde7cb2dafb6b56ff8710ff95f869dbe8045959
MD5 e03bd197ed22bd34fea6300bfc18899f
BLAKE2b-256 78b4b91e10e33b4339b2d6ca1c2143fbb8ecc68cbd12c27b3b2aa956b67c910a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 766925e0ac6b3314d2af3635c3bf97fc4e6949d3a7ab70aa6ebe51bd17ac7262
MD5 e808f71956aaaa5d96574381d712490a
BLAKE2b-256 cc786bf9862b87fd9ac636106b328390af4f5c4f8fe80616350f47c3e8675057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73611ccf34217163a5df430c2e033d8b6a6741dbac399d1df9fcc990651fd9b6
MD5 e7573c0074a84fecbac74f9a1a128021
BLAKE2b-256 f48cc98ba5b92860a1197862d92fec1b376e789b281b4c34aee369f91931c42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6b0bf548c0e2311948777602cad64b472586cdc1ef9a074d73a7b5cff42b939
MD5 b11a677388ffc2a1819d082e1a09e290
BLAKE2b-256 d245a960dd967bf0b477752f496aa2a593fd97953ae31b4af91bad96c653d6ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8911e80f46021ae4399b2d0a62ca1a8935585d35b89b5c40e4bda9b36daf1713
MD5 627bca53e25e818d72aba3bf20b46296
BLAKE2b-256 f09a6eb92b6e5ed22506f99fbb9545d944e79b26795818774a088f6997742f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 934cfffaa3bfdbee86f89068fefd45fde3b6232fa553d8f79ba9f2ccb1496ce7
MD5 40746be795ea11bbb9d0d4b05cfb16f5
BLAKE2b-256 acb2865aaf5da00a4366e7c772804438cb7616842bce0535968e55e7093c1f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afcdce31fe57d31a233f8e1d8a330f1473c5153a12dc5f29ba77fd1651f804bb
MD5 dce1928ccf17918d5d4d9c9edd00b4a0
BLAKE2b-256 128f29ab7848564ef5d55c5443164b01becf72e06aefb0e42862e037b7b8dfa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8019db37efe1ce0f124a7e836fcfa39db1c2b17b2a430ff81670036d9b0b400f
MD5 538b6a17d741fcb0bd550a83c25ec9cf
BLAKE2b-256 ac15a5a2707fc14722da6896aa7b4562c306865107d710537e43b4c81e7d17b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf3d995918c5a47b89986baaa3254fad4db291ffaa83ddab69eac75b2fe36a5c
MD5 a23134bd53d5d845c5abeb36ae4eec1a
BLAKE2b-256 5757580fa8acf77193cd0f391d1b0fd2874493f57822f4acb2a9bbe733cc4330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8267ee3aeaa9c5b850866eaafaf4b0f43e7df9a23e767a28a5244352532de939
MD5 6c92cf47db25a6553f53d332e6a33830
BLAKE2b-256 740c4d3c59a2f7f88adfaa73bd642e771ab654c2f1db88a2f0a77b4be199620d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68cf25af79d5ecf45bb2a6203a15c74f9a842e567094e9e6b54e8942bc251533
MD5 f838ba8c9a06d4c7f1543d1586212828
BLAKE2b-256 62179a1847087254bc7feaf903e2553598689770f906f4a209dd9d49c926605c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9019c7dcd510e579d110c19244e4bd852f3efc339766a3ce1a18c192bd00b623
MD5 e11ca673c3f8ac5357f748f0d0cadf23
BLAKE2b-256 2ec6eda0f275687cf3467460f349924ff681b29db5972fe685ca3b1c0b90b295

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.1-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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ffecf9f3bf0838bf5c41369614ea5383af5aec7750632033ce5c4471b3bbac34
MD5 bdc8d4876550fa707347e26c29dc4bcd
BLAKE2b-256 5717497ad6ce8c9ef3da92d6befa34db2b03e8f3ccee68f2cf7579236f989dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3416b4b4fb7166d9937aa5af187c17f5d7007473031573c0b0761a363e94723
MD5 b3aea7003fc63d051ff2efeff6707471
BLAKE2b-256 6a539a09929a07aa7c72527d5d1230546370e6ee3e0fee0e49ecb1bfe17c7ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2069521c392663dc79f9dd0cbdc68c66dbd21c15bedb631d279bfdc7485b44f9
MD5 cf6eb12818c4cbb822061e3c11ee64f4
BLAKE2b-256 39379858428a36f05f2cd588f2980c7b2280e530bea1643b374ecc92ef3552c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91899dfe6db9dea4296b3fc5513b7e14e9c4fd3a17b84c15197cf9033b049d8a
MD5 19c5225f1b521e98473447ed130ebe62
BLAKE2b-256 99c72e6635e8b89c5ba9f92b9056cf1600542e604cb449348b7970ff5be8ba7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df8f862cc17948073262e259523d24159df2f0fba0e4f39954c89eaac9c08182
MD5 6dc7afac2ca6c43d6fdbd851e4919663
BLAKE2b-256 6df6a9ffdda68eb75600ee165f6d6d223f992a8e9a9e7163a84445f178770ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 221fec8e3f28741b93c4cf3bac9cda5ac4e1427c4573d1dfa0b1acc055b9cf79
MD5 2b8b6e9b08adc072362276ae525c8f5d
BLAKE2b-256 8a65486ba13ce3b2cd4b6be60425b02807c85c68b462edd540ab0f7d55fefa54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad9bc9d06eabf11bfa5a21762b071cadc9713a0fc96b46b6fcce2305c64bbc6e
MD5 a46e7eae94d3cc1ed46703bc18e33f9d
BLAKE2b-256 16af824198676792ebfc55e6aa78f999cd43d4dcb1710b17fa70f67366b1b1fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc2e50b3f9dfc5fae2b60224829748b40814c4a08b6ac650ad29eae1bf93fef4
MD5 d82d4a0e0251fbad28095dd87561df86
BLAKE2b-256 808e37282002191d6c14b176ca2cb96e7b83792c2d2d30fe9d2fed587d6c660d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2473091e6c6f6fd2f38e4a7511c1fe11f369abb3a6e3b67387505c3daacb96d4
MD5 296f9c84300145916d8d528b937ddd73
BLAKE2b-256 33355937945f028d94e1ae3ffcad745272dbf4b1de849b29fdf377e1765bc9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43056dedd35b694d7433569aa3703a27e5afbbd937ecfb5704fc606ee746776c
MD5 708f569d26e44689b45987d88aee8a44
BLAKE2b-256 88fee3979cfdf35be2cd21ca0b35accc51c04ee4fbb67ae45d038c36680b0140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2ade8ff2151231a08c2a96614c51d8ab421b12213f388ced060d5841bdf4539
MD5 51497e50b9ca8a3f22ef049fecb85bd0
BLAKE2b-256 1c3310feebbc3d15fe53dfe095f2203e267834d331190568d87b27d574a92044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d7f5a794421977bb74d7da81ee683d9d267d8f70b177c052b7a8b0f70a6f1a
MD5 8385a8a23670868e6249154c00e77348
BLAKE2b-256 17c3c3e57205199c010bb65c88d36eb62c3d1c5c56fa06f68199de8fe939af80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2049320c493b68b4a46b8042c094e4839c8a09ced29671023c973e5d0c274b38
MD5 8d4725538a3b2b6262a42d74dc64bafe
BLAKE2b-256 bdd0a6730a0b18dba7ebf96dead371b402ef8d34033d0c9666026009e9e19a7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.1-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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b449fb900716b220ea6b9c31cc34aebe730c08b2892b1772d64146f434d44c43
MD5 12670a9ebdf6fea8367c8ce6daa96d62
BLAKE2b-256 254ff3dc5ff2f1017afc641111667e7a8b84372b6d86d520f8e1cb876517e4d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7105cc5729b7c91e1b44900e3422fba712dba04297ea37fff17494cad2616c8
MD5 269c520cf1bcc708dbc11cd72c02d5bd
BLAKE2b-256 147c47a59311e1b1e2beb3cb2a622b47a9e53697f746861c9211acb725dee2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04c6e4249d6746baaaba8bbd425eb28d7f673d913a5d69eb7474eb2fcc7c68dc
MD5 c5a1bbdbf2e2bbe5cf9a306a62b8330b
BLAKE2b-256 c87ef246b2cbe9561a2339887740aca3095a6f54f5387658df4c3498777f52a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8cbb60bb9db309d7ba049fd868e1e58fdfd6b60f393b2e48283d4c2a01a406f7
MD5 5feb0c0d813a2b0d15d63a28d511c63d
BLAKE2b-256 10021bb82cf56be9fd295db5424663580095f6aff0f1545a44b2668a1b10ebbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4316db75878cac63795efe23ea937ca05e652ff27abb30bf7eb1dd8aa621e15
MD5 93ecc4fe83810b7d261571e3eb628fdf
BLAKE2b-256 1b0ab31dea0854efd53a40c93f5b0b5cb3d4b97af077a1b9a3ddd428cf8cd6a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c6d4faef89887ec13c75b704f191625079a70e95542752c277dce210795e7d0
MD5 962bf0fa83eb62a5123f637bbfafb481
BLAKE2b-256 56107a4283881622b4d7a855841b7c5b78e235e372c6e1b619a31e17d77f9563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f51054dd27e71d8dc1b30989274e8174435ba8ba6a9bcdc5ddd371037f744a3
MD5 f41bd6528e097ba2fe11e7b2c79992e9
BLAKE2b-256 5efb4310212fbdb423e22c538f62f546b6cb1de350e9f39a186dbe334de520d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87dd5126a494bbe3ca55a944e828285090bb4cb7d1bc254f650aa9d5ed36944c
MD5 95bc6a38e6e5b551ac9995dd065e3401
BLAKE2b-256 e2a54ab52f1e3678cd8dd34e9a03985f001bdc8505761ce4cc796cc76917deea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc21eb11021ab3dfa1dbee8f4fed2a1acd5f004582ee9535872123629a0618a2
MD5 b1725f7212619f4a633327b93d93fe75
BLAKE2b-256 03610f6f6551ffad8c4c8966aa232d7c5b26352aefb85cf81ec9d4985ff84ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49a19c196dcc51285510f4b541926c7526ef8d8fc296349edd2de8ac6dcd20e8
MD5 b5fddb2658f28814d81a59863b42f38b
BLAKE2b-256 5cdf52530ff3d40743b02fea74640902c98cfd04b77cb0672788eab52b9e8ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5661e672b6b991ce3e95b50f4f097ea25aeb4fa7543bdcb719ec9e4e0570a312
MD5 dfaad15b00cf3268e403350319810988
BLAKE2b-256 8a64ef559b6034d8e8e2769a12349a7a162458a37db4f8098198f148d87f4055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de7e492d1810813389ff8b7bcdeb02e929ac3083eacb06e11cfa58ea2933185b
MD5 41fab73c3ed713197677f0b55ee4c61f
BLAKE2b-256 fb51219877b1aa498377c2452c2033ef479a17ee86eb4d5de5719356c57cb011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 07b80b36f071d17be662f62d81a6b92a2df132394798825fd989e1c44c0e4adb
MD5 ed65ab42d65b9280c3e5c4f50d98ee42
BLAKE2b-256 f32094017d57440ba088044e04fc64d9d5b0aceb7de9e8031e17dcf0a5a15625

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.1-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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f7d9ac0f52632d4643b842895bece0e43df1ef6a6342f0b48f8046ae8c3df43a
MD5 9d04643982d55bfa100e421172fc0141
BLAKE2b-256 d48e4b3a66c11e720119c386dd5e5dea6de020ec2cec08b6fd359cc95734c95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29a7daf423ccf37a59c20e0b2954018eb58023dc47a013ae84fc5e0feb6de7cb
MD5 cdad1f14bda00c73b231016717d6b29a
BLAKE2b-256 18867ab1e405b48a7c8926327410c6638a9e03f68910dfa22cc636786546a3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e6b7e150445df04fe6d8abf59af787260d0950352dcd196f028a11c7199a1ca
MD5 82bf2205690321dac3d6015a78d92734
BLAKE2b-256 a953d69af88cfd890cca3689da98856271400e61a6be01163dab8daab78cae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 945a4cc596ad960fce2d8878f7a927496c72c5eefaca14612518df8a2fe1d632
MD5 f4e133d9974df26dbea46ed2528726a6
BLAKE2b-256 915db84b3c5bd42048976b3d4763ba37f683ffa7be7bd94b5bb978b36a4b87d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b815b5f2fb158e995ffa83aec9a9d0a67fdc08cf579cf0e05d664dd3554d3aca
MD5 a2ba780483caaf38668b34245ba2d0b9
BLAKE2b-256 4b7aa9efc014cd244198130453fd959d13a2c91e2b5ef9f05e49e6ce80b99a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7d03b0e9b7ee97a55a9462366ed5082038dd7202cb88b59d76426de5cdefe6f
MD5 79977f64aa921356a5218756a3f90aec
BLAKE2b-256 3ed5f10302401633f7b28e491dcbdbd6370ec1dd94b16d384c37478c6561898d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a14958963c4dc851a92f0a7fcaf76efe2eeed483f6e45f671ff9228d0bb2775
MD5 272ce1ddc82bf93c0bdec61dc54a5360
BLAKE2b-256 40609b2775bf8b0b44b43ebaae9e7061f872c5a5e6e145756b83ce3e305c57c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a516648909d077549347c23383d22dccbe197055a1e84b29e29d9202e60a09aa
MD5 8d17e8434588c42ec64a85907b34f5bb
BLAKE2b-256 56c67a77d0e54168f1692d88b5d672c5eec48ada3cfd8805908bf5f5c9cd531e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d27239b13a27b539368071eee98fcd18e690f636870518760704963289e23c5
MD5 4c6f0b330cda31fa0379326cf36ba904
BLAKE2b-256 b1fcd8a87d7735d18a5c8e12b58e5c6cbf3d0397c86d321046af964324ad1774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80757d5bc2549678345a3d76b5e15460b1963e2af321171cc60c4bfc1a7bcf28
MD5 94de49a7d5f33ea3cfc338529d326c84
BLAKE2b-256 0a3df51713df9cbddada8348d492ab827df2dd19bb9981f003f4938870a139cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c2ab3f63626dcd86211c68900257f5eb702af78f07bcb4798d852879f1c6b21
MD5 02a9681d08ace58a2110056226138551
BLAKE2b-256 f81d812725e97acfea9299c899c7a388b68c52e634de483fb2533bb541b02899

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