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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-cp312-none-win_amd64.whl (499.4 kB view details)

Uploaded CPython 3.12Windows x86-64

coreset_sc-0.1.3-cp312-none-win32.whl (338.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (604.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreset_sc-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (704.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

coreset_sc-0.1.3-cp311-none-win_amd64.whl (498.6 kB view details)

Uploaded CPython 3.11Windows x86-64

coreset_sc-0.1.3-cp311-none-win32.whl (338.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (602.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreset_sc-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (705.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

coreset_sc-0.1.3-cp310-none-win_amd64.whl (498.5 kB view details)

Uploaded CPython 3.10Windows x86-64

coreset_sc-0.1.3-cp310-none-win32.whl (338.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (604.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coreset_sc-0.1.3-cp39-none-win_amd64.whl (498.8 kB view details)

Uploaded CPython 3.9Windows x86-64

coreset_sc-0.1.3-cp39-none-win32.whl (339.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (604.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

coreset_sc-0.1.3-cp38-none-win_amd64.whl (498.6 kB view details)

Uploaded CPython 3.8Windows x86-64

coreset_sc-0.1.3-cp38-none-win32.whl (338.8 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

coreset_sc-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for coreset_sc-0.1.3.tar.gz
Algorithm Hash digest
SHA256 673583697a1de9921afc2f41cf7480092628cdadb7c69defa74881cd23366b6a
MD5 11b43758a73f845ddcf247bf852f9770
BLAKE2b-256 82fdb09748a3fe150289e863e0a79428c1afa58afbd89651e534667e5bddee4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bf15750179c92e4f602c052507cb408f38a89472bb55f3e30fc3b0ed2f3aab1
MD5 24df1053183693d01ee297f0af4ca5d5
BLAKE2b-256 2e9cbbd6ca9c5cfcb1fbcc5eeeae656f4a3a9d166b161c7158d1ee14812984e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42cc43d8f39d4b2898ae1c3bfb682a6e7a9c4008dea2b45c72b865e2876e07a1
MD5 83fd9c60dd85dd4f3f80a3afaa9153e0
BLAKE2b-256 f8fca6d6921708b0389cbfd04114a9a7aca73f73692a5934aaaa60e0dd186c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0f562def95e5f8e8d95419b16021c8c2dd489e6a9a307bc57113d70dd3b0c74
MD5 6036c3a56437119bc823de1199c62285
BLAKE2b-256 8cba256f08deb7991c7a8a367a7eb2f511e59e75ed8633db38b2461911e37dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21b9eead081de0f1369973c5ae511a4dbcd275c43ff7e0b7a530448b82fd285a
MD5 1946b780a7effbc55ef082524ae0677d
BLAKE2b-256 849313fcffdf115c9c0841732e840d16c58bd4f79d1312617240420de086a603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0be82abc79354876b48c6d490408e38efa04f145d35c21086a1ee34df2c12093
MD5 d1f4056b5e65f160b579ecc11275bf1e
BLAKE2b-256 c2046d3e2b55791afe4e55df277fffd63d1585f1914feb44ccd749afb7b3264c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35858f9816480138a17656967c93d09bdcddc4ee7a0b5142f6df5cc8407a576c
MD5 fef650dece9c3a35adc8d94105a9c126
BLAKE2b-256 e4786994b6ad2263c8f8e45945ca8ed0c8cbb766cc602d7b6b0fcd30729f66d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f286441345b0ab695b8ee3419d06f1ad4f9db15b432d9524042400cd02a7fd38
MD5 ede8ba54903c2d5424e8f159551994ae
BLAKE2b-256 d11a8d3d81a8034cf65a82ec71e4e48b1c107200f0a52a06e30289384fc9cd13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1d5c870b130c3dec4e5112b41943bf8699873b59265643cc10d726642459a8a
MD5 f773160151e3efebc9ddb537a262d45d
BLAKE2b-256 b4d2c2ce70cb0968719fabd62c41d70095e5d76f3682afbfbc9608f2bf4278ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3768f940a537972635defa846078e979c5b75f1cd6383c3fca9af311437a528
MD5 e27fa90620c5038a26e264ba4360c9c7
BLAKE2b-256 67d412a135854f3caeebcd8748f738b2aabc200f93d00da9a5fcc8cdff52ada1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d35665b8c5b6f58ade83a214df3c58cce0ed003f246644589af1a76ead7f9860
MD5 88e634c69495240de65b35da8c1996e4
BLAKE2b-256 4c0bc7c4e3dfedeecf032ae3f9a1f785af80b3974deb030328522a9f62ccce4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 440e6d476d21e23c47910a1809657b6a49c24fd87be52bc46239d1a26f3c64f0
MD5 99be1f33d60b06e3337dd0e71a0e47c6
BLAKE2b-256 ed2ef038a4cb5d5580ecf759af2c44398e2e3bdce18424e7fd3e9f4cc109eac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f74a9871340dc1ed098323d49fdf7c583a63203f93cd3e6b41ac7d689e1b94d
MD5 5fee7115b8c5f2c30e1c5915985c6309
BLAKE2b-256 a297553baeb6c9d5d6a80b09e43756d46c3cf1de50e4dbf74f3f799b68db6bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e31bb0292bd1d85ab4b8722c05e2144a603b230a3fdabd28a92056dd13e7b40
MD5 c2c91564773d3e5f06066a1113e930bd
BLAKE2b-256 5414b3e8b5ee96014b55aa7e02897e79c9855db5919c4a34860611952d6d2142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ee3b6d5cf82b399b376e83ce1faea767de96c3a8afe56d4ec303f9c11b3fee2
MD5 70d580ad86840d8a12e8efafb0871f92
BLAKE2b-256 e223319ed514dc5bdc7512b560bc1624a8d9339511213f2791dd09e48477921e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30010077313e5a8e28f5ddd2ad3772fbd95f7b8a0317d797f0670299e3146cea
MD5 ff66e96b348a58f29cf349faec781006
BLAKE2b-256 cdc63165293f2bd2cc5fc9a24ed9be8ab16cf0bdc6fb7f52712d7ac5a5ba6f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2af0179fe1f0d39647a9f55aa3737061e5889460e385ac4d88fc78ffb9faa598
MD5 6c7fdd1e23b6b28c9ed767a645b752b8
BLAKE2b-256 162e3a5c4f6c37d0aae28bc1b972d0a2882d29809256d0f592f6db4960349c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20e95eab2e37269c60614e1315347538ca0942c2d3dab7d690022139574ca5b3
MD5 f20f269095bbf3a775d3df1d10d7ad72
BLAKE2b-256 e8a165db1f59f4f92f97b00339d1182896d05681dd055d187fa9acfdb73efd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ff704b425a7573b41336a109acbbc5bb20529ddf045971dc3438c33214905d8
MD5 ea87c0079eeb6a1f4bd6816f495418a8
BLAKE2b-256 4d9cbb017ebb3fab2072281dbcb429dd06a64c2e7f3b0a9b36f629b43743d43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 359165b38212ca08952c44cfa772deccc5a0a7a7672042dcc47f39bb4d83b13b
MD5 a1fc06f3540512d0cbab65d272d21ab3
BLAKE2b-256 c61c40d949406bd1416b60863d10d0fcf0f0437bd865e2c376de598dbdcc2b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ac84555260e50742394669a5f7cd41de3ed8682aecd8b4325a1cc5d522250b1
MD5 90309a97296b3f1fe631c11703d2e906
BLAKE2b-256 df0472bd54a773e5b5fa3071ff55ad9f98f7ac289c819e24079aac23c81b32a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdac9bc95db6afdf70440bd3eb45cc6648dfb831a39dee909d822a983ebe5b64
MD5 a68c578ee5f679e30255c94270cdd7d5
BLAKE2b-256 6627aec758ef7aa084513bdf2f58373ec0534987a6a3d1026c2475366e6f8963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6ee51d0bc081014a861066e411e52954c7e7382acbbed2ef90a756ad87aee44
MD5 9dc8bc2d1dbe880d873cc6f5d2f84a87
BLAKE2b-256 c1826131498353e19afebe1231a2ffd3f5c8e1b82cf06a04cd6cec219318f6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72c9fb66f54032e13e30d7d7655d8f84514114152454b4012ffca5baea250f76
MD5 da1e635308f7825cf4405f1552bf456c
BLAKE2b-256 09b886698f01922e4091e9916b3ceedfeda8804ea1bde90fee1209d5c2aac877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59657131b48b58325ee9faa257bdf444e5d21a435f023d06602e98a568be1b97
MD5 9be61b65a36e49620b30347c9357ca0c
BLAKE2b-256 1bef85b8443cc446b12242a836cbaf407b37120d5dab86a1a7c1345ef78fd403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48293dfc4d35cdcd28827dcdd9f3d112023a3b7dec783b9b6655344e03f3058a
MD5 c33babc2a7492054e5a64cfe80c9353b
BLAKE2b-256 1609d271d1a38bb04bd044374ab65489fd1fec1ced366389e8cef5ec647dfd76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e476478966d4177d637f5d57e333c58f9dc8d9a5dedc28b73e417dd20c5fd28
MD5 741275cbe66209f5a3912d1e700c1179
BLAKE2b-256 13d88fad04a27772e40aa3049f5a6b42bc4e746c74dddfda1d67ab3fd26bd849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9cbd61cf7ff47d7168879b7a0726ee5746a23e2166ea0d506fe6843bc2127fed
MD5 9de6e5c0b2b064d3dad6b4c708bfb3fa
BLAKE2b-256 83fbeda7fc51372fb511878b074c67693f78a9db41df610b3ef2ec670a864377

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.3-cp312-none-win32.whl
  • Upload date:
  • Size: 338.6 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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3598d6c579188df6934557d47d210ee84a096b206d482645b99f66b8543acccc
MD5 0a5cc2487bf0541f3e6f2b6e37d84f74
BLAKE2b-256 793b207f1e42c6fa8a96e356d01ab44bda9a738aa6bddab3df014932679e8150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 293163d472f411610b21fbf47de23f16f2d026fe4bffedcb1a3c4ab169be38ef
MD5 9b7ceb0339fb8fefc5f14b12fc07b42e
BLAKE2b-256 2ff2b77fde06ba6b843f3ee05f74301efc0d52fafc6e0dd73666cd80bfdb0e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fec0c7c6019da0691d9ccf497628ed522dc310ebffb531d8e95dc9f299aaec8
MD5 a7bc52ba28e8a0fb7b28f48656752ca7
BLAKE2b-256 66fe089a3de35924c610111d994dbcd2c17bea701179549135d3451cc41288d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d163a926827dba7ec07dbad5b8466af58b3e9fc14ce918f9da3d7131edb5c3c
MD5 6888e2f3f4bb5f0bf0b43c6721aaf8f4
BLAKE2b-256 6483dec1f932721c10b86728ca73e8b78a3b876f7eb2234720fc2d3c1f94437c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7e4ef581a9fb16b4ad2711850d4547c00fdfc8c48034be9331dc78397aaae03
MD5 e23ba4553daf48226c4b54b1e9d2136f
BLAKE2b-256 a1c1830f327538eb4d9365057dd381c02e105dd816d0cdb5b64bd97a912a6e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4119cd0cc998da49f8e7eca5b02874f6e27a11a65fd61716a36981879a950fa
MD5 225dfb9e434e3cb78953a88b3c49ab56
BLAKE2b-256 a6a9e55c47fa73f8a3d569af259687917d7705af3c8c1c357d38b8b0d1d27a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c04d6731ae587b52c7b847673dcf1fd811a3c251b6a9872a77b09897129b49b1
MD5 ee89bdb93d7df14b8e2b8c3c9835f529
BLAKE2b-256 5d6829bbbd7c5646bc89ff7f5aef41e4e9599a5df947f2c60e4ed6653c881ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ad7972ca47be91618e43f7740ca2e38bddf0310ae1b4e6a901abd4f73ce6448
MD5 73cf88080601c729cf1cd94b22170bfd
BLAKE2b-256 c27e4db299805548c53d29cae3122691780fa620472e0153f4e9085278994b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3d1a6735a4a89ff48789cb3bc1f8b5881afcb153b37500825c276e5a82a2738
MD5 b55986cc94a69f0d45e50b6fe030a0eb
BLAKE2b-256 fa1cba1bd330b16bf2513827838e54984ef0c2cf39e7a3064401ea618742786e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1a9325798e2aa0e9b72a4cb79b427324981cb99ebfbbcf6b0ab067ae8e8e22b
MD5 d27661a11e5dfb1eb3f81e65885e2b6a
BLAKE2b-256 06dbe8c265873e3256dbf2c194af98ab724c5e5afb20610dcb70045db7040b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25357eb71a114f88b37508830ea523b12e39fcad062b97f316d8c9f988265b80
MD5 15ded66fd6af02b1d7b3488f494642c8
BLAKE2b-256 c320d83bd5db1805f38a9f565e56f50c64d04cb233bde54d3cde7010f4d1a1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b47689a6e2fe8fccdd0db98104938a4f4c5d64e4a357f81cbd1b2ba935cce39
MD5 02e1a160ee6dacdccbbcf60d16376e4f
BLAKE2b-256 01bbac6491405a4dd3c285618c4a578b49f81336a69525a97d1205b2d303d792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b54ab669948fdb9efe691c95f1a2d260e3527790228cd9bf030be23043bfb74
MD5 f1bb4e63ecb318105e506b1c211ba792
BLAKE2b-256 358b42119656b8cb72e9bf2cc9481528453abbdf6d57046a3fba58e280fd69bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d1746df23d433f02c866ec7e62b235a80c4fd47cad17ea4fcb494b9b38b75d9f
MD5 66be186d0befc0663848956900c908e8
BLAKE2b-256 c65cfa809ec7ba803b21493b0b94b9f4af89a509d44bd8e5ca94a216253f713a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.3-cp311-none-win32.whl
  • Upload date:
  • Size: 338.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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5f8950c7149678f9d1bf8a33cd5a73636fb69d1690d433e9f0234b8cd158ea8f
MD5 1a5e1a72ac51e30081aa66d77da03561
BLAKE2b-256 414e5d5e8aedd1c6f654592d720417c35f4533e2eb86acc0813de02abe969698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c61eeb73050b9189bc5496d4e1ecde058da745cab1c520b5ff1d42f1b330bb9d
MD5 43607de6df70671e9653b0d58a3c42fc
BLAKE2b-256 5e73826bef5ee3de5a2b52bbd79e733823052b5eacdfd290542095a3a5d5348a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8427fcf5f72c1b2377816c3acc5afc09289ffcbe2330f6a2c4add7f7a9f8f1d8
MD5 e06dc6fcad1b1cc1e9886e104c0cfb84
BLAKE2b-256 0385b901f9054667cf885406bcb95bf7936fbac4535a965c473927f691997665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32297e5f5315bf02537b84e30c4d76fde18e5d76d3e4e0e874cec6a5075ce414
MD5 d0768d62433bbc5f91a4d9d11ff68db2
BLAKE2b-256 8f11892a541599fb69102c63c86b982306c214bfc0567e458b31cd696b201d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dec4cee3b47517a399e6d0f5e245c0770401b349492360a067d07d0e0725e67
MD5 693e7bf5d8c5d2913095caff12177eaf
BLAKE2b-256 cd15002dcf1e85aefb38bcabb7614de90869ed9d86dcd31f776ac7c242b2bb7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cdcf6a6c9f73154c0e757fc86feddfb3029c39c23d55cebb5d4c1c28690e09f
MD5 6746f5aa6ef3921082f837cf98bd01a4
BLAKE2b-256 29178ba9c9f5cab4eb678b4dfce339dc2d2705eaa3e2fddd2e3bf85abc33db6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16051266457a1e39f4a21b6b8de5b14c8ec4b304b80a28346167189a49c0c90d
MD5 2c33a3107e82e70b92b8de2bfc93a3a6
BLAKE2b-256 e7ba99695830c931124ab4a115544b4bd8a3ffb88b20a69f8071d8b63088cdc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6639a62944f51472067c4e6e04ee0d51bd31830ac8d47f3e57e5677121161ed
MD5 7471a4fe2e5a97297f13da5949fc9a1a
BLAKE2b-256 85e24ec858edca574a3e9342785b53f2398ee14cece744360a483441092bc300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70bbf0d7789a8861d306fd96ae0a1bc7e690d2a83c7052018c7e18c2ad0f589c
MD5 08fcd6a4312f7e58b46b45a85b452325
BLAKE2b-256 a71fea22701eada6b3c45b097ef8178c756cf0a19dfc5fc2fc7643e83bd1eb23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26e66d6f976d7cffcc280864ddb0a562db54d938a2638c6d15d833999124b52c
MD5 defc52b1146e113a2dca8e1da59eb423
BLAKE2b-256 6ab4cefcc5ba296e74f0897b05e6a41c31cbb0d003d1d0a0cccfe4a03ef7a314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25ea0418542128e7d0fd13e4641a27bc709cdb56f4b57d0fd5f545bcdbca4e43
MD5 70596152f4e31ac1f3587758aea84496
BLAKE2b-256 a4f1fc17d9415844abcc7da7f927959e6c170e1a937dc6c7fd00a8bf6cd94e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044ff2ee9b7e6a8ee65fb6cabd447e56877e2b8a885352a06a97f51366ab1277
MD5 ba6b0dae693905619b45d43486ecdad2
BLAKE2b-256 2b99d472d7c7304f5fa8dce6dfed94c62188e6c0f41d7e2c67d7099bbc30bafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20700588617fb2696c7cda540350593f127ec4e653efebd49960f1440f70126a
MD5 70653fa3974ea9b4d7fa513974beb5d9
BLAKE2b-256 314482e9ca638b6049dcdebdfd4ff454fa722e6f11577db8f075f46c2b57dfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 49fa987b8b17b472026f35d9297b053532b228cfb092fc80957bd99bf4f85d28
MD5 6f025850a1d8afbd9d8db93503e16b3c
BLAKE2b-256 46193972580026ab3daab2e5d435fece534547c1da3b657da8956d0b8c92e282

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.3-cp310-none-win32.whl
  • Upload date:
  • Size: 338.7 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 dbebd57732f02e163620924c924048a1f726b840eabd13c77c101214e4ec4d9e
MD5 17c2dba1970e67142050c599f6d21071
BLAKE2b-256 1acb6af1adc8d6b8b51541f1b3ef17352c45a58b4d30b6bd510e7689e4b84fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b5472617fa40f07407a816cd4abb5ad014125b90538c6d416c6d5057083d78d
MD5 6c945491520143b634ce4d9b1ad0645c
BLAKE2b-256 6e7fbcaab597de5525629bbf15ae393e0474af3448b507674b6dd863e11576d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da89f3610087b3feaf78659580219fa1a507a7b1d24e3621a4c58f006287b94c
MD5 a5092b64bc114bce7604e1117fc0d7d3
BLAKE2b-256 6889aa42c2b286295857910b0eee60f4671db1d2088398a00ff1323da1db4560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05cd76f3d45bda853974360de20ee8f24dfde98f09cd15388e8a68b41cafc939
MD5 5bde762354b76d00bf939cec28f27446
BLAKE2b-256 cfe8dc8606b4bf84ef93a0d3727addac0c07c2f23d931d6c0fbbd18d5a2da583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbe81b146e33f1e2e28845846fdc43a28fdc62d6881c06917135f5d78e30281b
MD5 b8e88e54c63dbecb25c260befd216a30
BLAKE2b-256 6346a545e8af9d72c5aeb2bf9f72048980d6fbc892177131d821139c075ba3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d243c62526a56cd5c8ab3e7a07dda7c0d2eaa039061c3f496746ec09590d22bc
MD5 0f79ccd286e7fd42c61222c1915fa900
BLAKE2b-256 1107f8c6b6a7d0cafc99fa89950d653985b3d2a5e45b9598aecfd18a5110448c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33609de650513c3a0f49baa414c3ad7c2063601fa131c0522f1e67c23146082f
MD5 c7518575c74cdfb7ee603c4aa66dd046
BLAKE2b-256 c564281cddc55effec5f1d5681b3a61eff50959dae7efe08ea179135c50cfe0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40a74f793b25f0f4871c8b2b52ec83e38e767965651affd832d0fd657dea271f
MD5 f05c675a359392481ddf8f4e0891df29
BLAKE2b-256 0a13d95ad75a693830e2947bf1d7083cc87fd2b0a39a9a2138637c70f5a22f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81d9a8c590ab713db0cd735272ba5f4a3be90a2e83486c4d9464a4406feb4c1a
MD5 69000d6289b2f9918811ab969da32109
BLAKE2b-256 64ed532d3ae55dd2c0378e20a74e25689e1d7740e266d92bc0a540681897d653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8c6b634609b1208806f0453b54cbff6627ae40e3204bad909a23f57fe0f397e
MD5 cdf7de4fe8e571251604807f4b2c36d1
BLAKE2b-256 2bc1ffea4fbee7890bfd44a021b9ed0a7801fde035471856db8c1ea353dd4dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f0ff86c73e03446207ba47534a64e3d06923fa1af5151044e2e6ea32208b971
MD5 ccd1d0d9f0a844f88370bdd872a9b85a
BLAKE2b-256 dbabdd4537c90e418350e34247a586c5aa7c3ca0493a9b818cc91337f3cf1582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b22d1a0150aed0f1b1be771f7c588d36b03419e93bf0681b2454164c613b5bfe
MD5 d34c2443647676f257e131085735a47e
BLAKE2b-256 39503bf44caf3b865e4d8d1f755792f1e94b19d6ee944af699e4a11256522e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 419581f2f109bf7ce6062f43d37688f972c70b47f18f0212f3e13457cecd88ce
MD5 6c9409f6c36206095cbc54f2b747fc10
BLAKE2b-256 709d480484eb7830340266de64997544087da60a19d0666cf20039e8952cb76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.3-cp39-none-win32.whl
  • Upload date:
  • Size: 339.1 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1b62730a3df8e6ff0391c07201d7236814583874ccfeb2ceea17418906a38707
MD5 42dad8d582cadc26aec37b3789142611
BLAKE2b-256 945d38694a15f606e0956fd3843ad1dcfb14094e094398283c547df558204091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a56d9b867be2df08d505cc353cd45f52793b2a558012e3b2b3674b5888a1e763
MD5 4a3ab380756f4b3232b0699d848dc91e
BLAKE2b-256 8f3bc7825a42e61ac24d80e39bfc327a016a6b9d1eac8f42672d30dc9d020c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 202c88f35178dcfe90b666f816627335883a18e6c2514078817c95c0eb27ef74
MD5 1c0d941e895a1c82ac94e5842416b70e
BLAKE2b-256 e712f78a8473b6820b5556f86085e70e269f16eaf03dfbdd069a5c52d5860daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88f0212f40205a2be56bb6d11c2e575706ec5ce958a14bfd173bda56278ab686
MD5 31a779e5eb4756651c3738fa3a4c23c6
BLAKE2b-256 f249546e7d1d2170c6c65f6f7f98baf03b7ac90e0ca45bae9c2dded1eee0eca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 663f1eaf7b79e188398ea41c1482eeb5a469c2b4a001e2d4830d9a8e61b0aef9
MD5 8a5bab3612dcc22275532e5c59da0f7d
BLAKE2b-256 8428882e770fabb76dd2aaa489fef115690a84731c4702ba622c8474108d738e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceee409dc7f120e5d8d8e49811cfefbf5f34d7b46c540c9866484ed33ae34a42
MD5 210e207bade7893a4b454b2c2e928a11
BLAKE2b-256 e9acd6f7a0305dce102587ed521b81336129cca9cce8a4fc3122838c60cf7ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e24c030ea67b37fcfb2746527c0fe219b5eadf7eaefd7c4d49e13b48f39a9565
MD5 ab87dfa3702143b9f96701a6fa062f01
BLAKE2b-256 96eb3f5b5874ac9c5a9058ba1bfe48a865674907cd75c006c0bbe1ba6e9f11df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68fe383c0492ec1531f3e1edcd12f4de23bea76edee431626cc3c9d0f6c6562e
MD5 3d8e8ffa971a21c69178b6951c76370a
BLAKE2b-256 3ccdcd1621b912d6356510a977d6e0f6d55b1a877e972d3ebf02049d89c61434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d96a32892d75d8ca6d42a28623fb855e2fc3feaf82ff9c11203094f0219e2426
MD5 0d16e0b690d7bd5dde318029970e903f
BLAKE2b-256 bccfda5a67c69281744cfe0fe399f28e79df06c684b69aa53bfa8130d44b41ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c40149e84c7c0105745ab899f66278207343c69a777797a3123266137a38028
MD5 23a4e87a097f69cca41546c9786a36bd
BLAKE2b-256 5b7019fddfd4cce2a83eead2a18de1eb6eb69bdf8127363654cd192d696f4689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb867dd68fae3e96ef851bd7ec3ffca6ec99e5a58cf19218c986c9e1f5928067
MD5 b3a96fd7c6fb6280af091346026a3fd5
BLAKE2b-256 327780102c20de5840d9d0fec631ca93825c7e875ba81c2aec8c4b4300d0bd0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96d04526ea3cb1c5c5a3f6c9b104c710cbda8e73592e565a35d1cdcd0573f830
MD5 c53c789b7779ea077d75603e403cad73
BLAKE2b-256 f637389c652584730987afaa4a283d3ef8db537154f770e612c135909427fbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 336e7550e6dffc44d0f5bfd97cbffd591838c295908f714d0f4b0aa9e6ee111e
MD5 2162cc75d5be2c00e70245160170eafe
BLAKE2b-256 d3ede939ecd1afbb01d6323e085920e52b109ad4825dae9de31fc76de02357bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: coreset_sc-0.1.3-cp38-none-win32.whl
  • Upload date:
  • Size: 338.8 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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6c3b609512185adb6faae6d3b68c85cf2924d59877517a2c728bf29efe6c8db6
MD5 141cd620a9c9d3cf7454bc2052dbcf0b
BLAKE2b-256 54e8571127ce91f6276daa7de1575fb5d881d4f9052ced23cbcfcbe98a17fc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce7ebf4a8f9ff0637f837a25e489aff7ede47c0d9fec5e9b1f127b99663bb68
MD5 07bef955f2547fd075f4e295ba0f7ea2
BLAKE2b-256 3d3bdff6ecd981c8344a055aed6c763bc4ebc369d0ca59ef201e17717edd281f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 813326dc8f086ce0f0933c5a45489f28fe2cda151a67472e9c836ccb7e4e1937
MD5 b8a69706c8cbd93c007f03963ccf0d3f
BLAKE2b-256 192d2624ab39106067856838f98982df3ab9fa62bacf3847a7dfeb82b1ef1c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26d35b79433603b586159c2391f392ae5d697542d9615b2e53e990a3a0cb4284
MD5 8f23cdb6593d083bb2be007551da581c
BLAKE2b-256 e88b133c074871a379e30c96f7754158ef6e0c59cb78c1745628ba4315c839cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c36f5bd404484384f1b3baa5dbf692cd5eccd121ab3afe6fc1fe9dbbd9d1e19
MD5 412d9599ae861b64621f0170a5c7194a
BLAKE2b-256 2650ffa09b52c139149d16ffc2d3dd55331362630b70aa865bdc8b45c3cafd62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee3b39f205c16cd5e0f9eb8b7603125bbbc454d43a142b39db741cd7c99cf0fd
MD5 5526d9cb827fd413b0b8985e0bd9ac94
BLAKE2b-256 aa1a9073a65c42a7a6266fa5f365c8f51e3903b5fc735ce1fcd2967725614f25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef499b17604b896a77163df9425675359b37d2dddacc8320d8d9e7a0bbceecc8
MD5 81281f829c7ababc2fc87e510895d7ac
BLAKE2b-256 c773b7683975293fbd8cb3a9355e15afdc92c9369384acd06eeb0ff28a6b5a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b650fb2003c210885114b0078f041cf1f5fbef2ad3ab48335ea8b763980d586
MD5 378bccae2c2359a0decbea9ab79ae41d
BLAKE2b-256 461ac7ed9838848d272f42d280a989a8b1cce5b8a4d0bca3f8cd35ff27b957b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9292ea7fa547e4871643ce9dc8fe391b4733edd5b97e98509470a052e707c3d0
MD5 4aa6de8545f676a28ec56441dd984797
BLAKE2b-256 7ac45bac56525a911d481994d7760f50a77cbf353021f80308d4beb6a1bd76e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15fcc7402607735ae1c333d90bae56bf53960d02b3110f6b8b9a11b49916b888
MD5 89ec5d1dd3ca28aa03ce2b6187600ee3
BLAKE2b-256 586432b6afa882dfb762dd5f58e8f73a1b603ea16b43d114c83a3a4032cde20f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for coreset_sc-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fd9743b8e28b386c23b39fec8cc358c2a73f6d1ff41f098c3e27a1b07548b97
MD5 053995f71a64e6b04baaabb8c01f74c3
BLAKE2b-256 b0c90c739f7644d56cdc95ab6e54714890c2e6b3d87a04d68d812e8eba1ae790

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