Skip to main content

Dense clustering: k-means, DBSCAN, HDBSCAN, COP-Kmeans (constrained), correlation clustering, and more.

Project description

clumppy

Python bindings for clump, a Rust library for dense clustering.

Provides COP-Kmeans (constrained k-means with must-link/cannot-link constraints), correlation clustering (signed-edge graph partitioning without specifying k), k-means, DBSCAN, HDBSCAN, and cluster evaluation metrics.

Install

pip install clumppy

Usage

Constrained clustering (COP-Kmeans)

import clumppy

data = [[0.0, 0.0], [0.1, 0.1], [10.0, 10.0], [10.1, 10.1]]
labels = clumppy.cop_kmeans(
    data, k=2,
    must_link=[(0, 1)],
    cannot_link=[(0, 2)],
    seed=42,
)
# labels[0] == labels[1], labels[0] != labels[2]

Correlation clustering

edges = [
    (0, 1, 1.0),   # positive = should be together
    (0, 2, -1.0),  # negative = should be apart
    (1, 2, -1.0),
]
labels = clumppy.correlation_clustering(edges, n_nodes=3)
# Automatically determines number of clusters

K-means, DBSCAN, HDBSCAN

labels, centroids = clumppy.kmeans(data, k=3, seed=42)
labels = clumppy.dbscan(data, eps=0.5, min_points=5)    # noise = -1
labels = clumppy.hdbscan(data, min_cluster_size=10)      # noise = -1

Evaluation metrics

score = clumppy.silhouette_score(data, labels)
score = clumppy.calinski_harabasz_score(data, labels)
score = clumppy.davies_bouldin_score(data, labels)

Functions

Function Description
cop_kmeans K-means with must-link and cannot-link constraints
correlation_clustering Signed-edge graph partitioning (auto k)
kmeans Standard k-means, returns (labels, centroids)
dbscan Density-based clustering, noise = -1
hdbscan Hierarchical DBSCAN, noise = -1
silhouette_score Mean silhouette coefficient [-1, 1]
calinski_harabasz_score Variance ratio criterion (higher = better)
davies_bouldin_score Cluster similarity index (lower = better)

Rust documentation

Full algorithm details, complexity analysis, and benchmarks: https://docs.rs/clump

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp314-cp314-win_amd64.whl (309.5 kB view details)

Uploaded CPython 3.14Windows x86-64

clumppy-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (425.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

clumppy-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (427.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

clumppy-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp313-cp313-win_amd64.whl (309.6 kB view details)

Uploaded CPython 3.13Windows x86-64

clumppy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (425.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

clumppy-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (427.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

clumppy-0.1.0-cp312-cp312-win_amd64.whl (309.6 kB view details)

Uploaded CPython 3.12Windows x86-64

clumppy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (468.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (425.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

clumppy-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (427.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

clumppy-0.1.0-cp311-cp311-win_amd64.whl (311.4 kB view details)

Uploaded CPython 3.11Windows x86-64

clumppy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (428.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clumppy-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (429.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

clumppy-0.1.0-cp310-cp310-win_amd64.whl (311.3 kB view details)

Uploaded CPython 3.10Windows x86-64

clumppy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

clumppy-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

clumppy-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 483e7046a44302ca4eea2f95401668cdb176daaa9e71c03601fcc7b1b073a4f0
MD5 b2869ee8e0401a638d687df54446ce5a
BLAKE2b-256 ccbf83748fabd94b3d8e6c9cdc4926e2e76425eaacb55dc43d924bc25b08638e

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96911d07dd402b1f6fd13b737ba70667fc7cef250ce217d0afd2fe35b0b567cc
MD5 760def0f1f8ea9dc89d3150886edb88e
BLAKE2b-256 c8803ee4106b21349d68adcd1b496e3d3111bf1d5ae1a72fa1608ce64256a72c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27f884c1f30cfad13f17ff897c26c69210eff48be06c2fb3bec68cbfe251e0fc
MD5 6e8bbbac404c5b651482caee8ab32e09
BLAKE2b-256 c41bab795ccd367fcf278071a7060f2acc2236f2038a2777d8b6489029426e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 309.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for clumppy-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0b3052e7da621b3f2cd5e3b6e42f93ea77a9131edb3fe47d7f5b9efce12101ed
MD5 79b27f604f280e5021b752e38f515b14
BLAKE2b-256 ee2a6fc39cfa748476018ef5516e7ca950ae09593dba713a37f2430f3f24110c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcc4d5959c5a48bb24d43dacffdaf8c589e9e41e461f94619b6e70a8df97dbaa
MD5 d70a9887b7d0c82a64ab68c4649577e4
BLAKE2b-256 d1540e5f1e9bd94e0d4f89ee6575df6ea21d7f096613fa9197dae75e644814a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed841fb1e6393581d43ac5745e6cfd67cbecc2ecfdc4902ed4b523f8be806d8c
MD5 aecaa17c183d02b8dfd1caf11f530f42
BLAKE2b-256 f9a30fbaa9c6bd481e44c6d91f2bac2f5ccafed2329e8a0716fde27f1af16ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 954f9c73d860eccd7a8be01a0095068f7c04eaaafe190449fcc5a7c0b898124f
MD5 f9c0a536393a41d0e71ebea174bdd50f
BLAKE2b-256 34fc24550cbd0fd799901688b499769440c5de81af7a9eebd540c59ba922bde9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4512b059083cc3ed922b04037cd7db859031b42dbce1296052a72985a2e01895
MD5 7b0a7bfcf75d0afb283d3854fa5326df
BLAKE2b-256 d3f18f096e5d8a8351d8ef9613d4d7a156ed88d9691399369a7fd93dcaa4d257

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8526c127d68371c702b10198a7ce17c8fdbf2f17dcf1209cb70cdab49c8e17ab
MD5 5f690429a4562ceb8203dc867b02022a
BLAKE2b-256 a8e8d34db06b44055a313bef21df1cfe523efd7c9094985a2a45846743be5686

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 309.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for clumppy-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7122adc137122e4771efb6d1c3ceae4aa5bb29802c8e77af47707250c48988ac
MD5 a640d80da9cb42fb343078af72b9d37b
BLAKE2b-256 6e58bf786861b46893f1cc04d6159438893ccb0b24d89a06373982d863f9d430

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08ab2869afb40f396732e3a2d35a24ccd04b5f53e522fc13e5ae61cca307589d
MD5 7f954a1d5502991c5afff9c33dee4aa4
BLAKE2b-256 24a53b18dc350468cb9ce8318ec22779bf82ad1fea8a97051c20c659cb7a1e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd7261ade9c87e500ae0ea34e86517d0d02e421bff13b21ff1ce784db955ecd0
MD5 347aa3cb1f833e3c03782d480d3b9550
BLAKE2b-256 bc7f4b5f167cc83e35980ba32bb8d88de1df7822671c4d13788972636f95b311

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42ed13ead767a0aebdba614077fe29b4b8f67201384772b0c2cbef5e79f87a79
MD5 32b71f6451c8b9e48554ffd67d940c32
BLAKE2b-256 9a72280ef095fa4d252c9db37281c5253e3520d87e956a167da731a05dac3c5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99266f2cc584985c685dddd8eae0cf890152b8031ee302d75b972966dfc12497
MD5 99bfac937bc0187dcb3baaed5e066732
BLAKE2b-256 afb200d763d534aadd3c92e9eaad392142b402278163668c62159eb180bb0b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 309.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for clumppy-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 10c77a57c8c7820b982e26fda5b44d300bf5f25657d20fc036a38436847d1084
MD5 9848ff48caf471de455db74a459fe9a2
BLAKE2b-256 fdd7ef65c1b57503c5eb07547b7095b2061facbf380381b0dbee31229e247d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216220f5acaf7c9957b0799783081f6c8952fdffed3d2517ea4fb56a7e089616
MD5 9837396b4b4d084848519f467df2db97
BLAKE2b-256 344ca997596b693decd5f9c3ffb88b571ba26360bf455855da15459cc63440a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c38aaad91a130bd048a59b6e46ece6a31ddf1fd16e7b35301b69136cca6a8d9
MD5 0502507605dc800310d0ed1e655264a1
BLAKE2b-256 c950aed24e8ed4d255feec0b35ca1de659df67bf11c6f1d0f9b4a82d30fe01f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d8c449d2fc858bbe036d156bff0e50a32d42e065763795959e7caad02d8cef6
MD5 34fec93d46525a28822a98ab3263ff59
BLAKE2b-256 8e4aae1ac5d29589367dbaabf515225558ac92451ea0d9cbcf86acd227446c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a66b0823076b682606247baed37ee60f38b25536ac1847c9e49b0b3e6afbdeb
MD5 e809ff6683492dddb167c181c1faf0e1
BLAKE2b-256 2f49e816ae533978c77e77768a3cba59dff7adc03f735db832389d09ef27d13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 311.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for clumppy-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 729f561cc5cfcbae4fb700743a5f5667ad8e6b70a834e0f08203a027054ae9ee
MD5 e27548f2a29938608ad3e9d620722064
BLAKE2b-256 06fce6031e78fd6d0fe87c7621c099cafbb15e9410de028b50c46a0c62b087ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28005d83c1e522e30e4ffb701bd26cc42ab58f07792a55f67208720038fc4e66
MD5 268df1cec38055ab6ae4518f2aa927a1
BLAKE2b-256 fb783f26036acef5babaf910e403f523369691c8c35f43517f3b208f5c7104ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f10689a4a8e511077d3ecf1a6094abcbbe9ff5d39bb807e31a5fd6ec76bc7d4f
MD5 c9ad71c7bc0f3d20e134403161113bce
BLAKE2b-256 0486fb89da1c355dbc16304722cf47a2e71f4dc1fdd32016dba1c8b1c559636d

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c79efac4cd6415803796fd07148d0c59131f2964b950f1059e2c15cf22e88d8
MD5 c7edcbdc1f0cce6e9895a41e6c1d1471
BLAKE2b-256 bbe8e666e2f96c1111ad626d1e7dd062928f34b31da441faf2d942f557e82d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fd095bcd888e6db6d55d3be97b707ce32ca59f209fe70dba37c020167c9881e
MD5 4e35cf1605646cfc05bea99a7d7e44fb
BLAKE2b-256 eaa648ba1eb43d98e0c87a7ba24450e06ad5c9cb59f11bde69e1074741ee1f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clumppy-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 311.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for clumppy-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 748cd8e80f5750a58f88d611cb93026ed96c0d995c2e4ed31601340963950c0f
MD5 328b47309a80084e7f484d517c9648cf
BLAKE2b-256 81cf1e8fe19bc193819435231466495c36837a1fc6364b7caf189d110ea40ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7151f69c338f9746be04b3ad24685acd3287e3ed8b2f6e3e1e2634048eff178d
MD5 3befbc71892c3606c17add72b3306741
BLAKE2b-256 24fbd3b2e0dfb9d7cfc45bc75076ee4f4264d777ff1c00efec6022c0bb1a12ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 707b50eff4b227f47e0c771227badf102789ef94a93bd2cfec419a8edb2b9582
MD5 20a9ee40561bc204e0457591860634c7
BLAKE2b-256 1ab199360134c9bbfc0c833054e81e8913facc9d5cd727efe6703a9cb7ea8554

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2579a7acd7f3a1d95edf00b65f8b0d7cbf62e5fb42c93d9b9ae350c1effb14b
MD5 e8e541e7012dd8fa216cf09e13681252
BLAKE2b-256 22fd8aa45fcf30a3964aa3cdedcd7877cd6e77ae4b47ca7b5c84e464c4ab2190

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc057454d9472a14f140da3564a10f4fc68a66629edba6ddd813cee1dff66c6f
MD5 34790ae4e4bf62fc61b4a13cee6fe5a0
BLAKE2b-256 3889f33a9c9b9d2877af6e08f7bc6f7a8ed9705a4f2738fd1023eb820f83aaaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 729dcf15cae94b333cc3aff65bad324f4c0fb630c996ec2787ce2d84add9810f
MD5 755394fc7fa00b45c3f046f0032d3c2f
BLAKE2b-256 197d383c74404ce06a092c1ad2cc6b84dee08833e67221b9b39eb4d376035081

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b47932f74437cdafb7ced52ab8934b92a3133927a35bb5ac56abbe525a965d7f
MD5 ca0737d868f212c8c2cfe7646c2ebbcc
BLAKE2b-256 db2c34c43e9f668548961c1ee23f34e67fb853a2ba679fedcaef463dbea764a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/clump

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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