Skip to main content

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

Project description

clumppy

Clustering algorithms (k-means, DBSCAN, HDBSCAN, COP-Kmeans, correlation clustering) with evaluation metrics, backed by a Rust implementation.

Python bindings for the clump Rust crate.

Install

pip install clumppy

Quick start

import clumppy

# Correlation clustering -- determines k automatically from signed edges
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)

# Constrained k-means with must-link / cannot-link
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,
)

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

# Evaluation
score = clumppy.silhouette_score(data, labels)

API

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

numpy support

All functions accept numpy arrays or Python lists. Labels are returned as numpy int64 arrays; centroids as numpy float64 arrays.

License

MIT OR Apache-2.0

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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

clumppy-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp314-cp314-win_amd64.whl (378.7 kB view details)

Uploaded CPython 3.14Windows x86-64

clumppy-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (500.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

clumppy-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (503.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

clumppy-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp313-cp313-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.13Windows x86-64

clumppy-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (499.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

clumppy-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (502.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

clumppy-0.1.1-cp312-cp312-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.12Windows x86-64

clumppy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (499.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

clumppy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (502.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

clumppy-0.1.1-cp311-cp311-win_amd64.whl (380.2 kB view details)

Uploaded CPython 3.11Windows x86-64

clumppy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (501.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

clumppy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

clumppy-0.1.1-cp310-cp310-win_amd64.whl (380.1 kB view details)

Uploaded CPython 3.10Windows x86-64

clumppy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (552.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

clumppy-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

clumppy-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for clumppy-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50986586f67e7e80a0f50b14574f175c93a5c3637c2ccc32207c5220abcc7932
MD5 950ff5bd92670b9aa7848f1af7570d9d
BLAKE2b-256 32ab2e70e3f3cdfd95053a421a1410b19a1cf90e90b00c96e47796b0fdd1fddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d6977d2d97651cbf45fcb0bcb7551d6e63965c1190b100f40520c1a0bf2df24
MD5 b9300a45dcb7e4586e76b3393d4bcb36
BLAKE2b-256 7099a99fe5a341d6ba20100991249e0690ad96aef8fb51f2974addabd453ec58

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3e6646bd333dc5fcf086ec0d4150b4cd46ce203a3b747cf5034b766910a9989
MD5 bb888bb089f463201317c588eb4a1e9e
BLAKE2b-256 d31ef082075cff78444d28fdb74810d73ab707858115825b391b5ba498f72e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 378.7 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8c77c9b95902999428fb0e9cf30ad9f2e445ab21539d55967b0ffb0a3b8e1ff
MD5 4581c824925a20c856c5847c54a34ea2
BLAKE2b-256 063edc99e998fe0fd72b5e506577d736f6f1681aa749564e00fc860647e9d622

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d488c760dd2c86f36ef3d104700b158a36d940eae58c2f3c5c6ee0ca2577eb3d
MD5 87f7e8b6215172a429e209fba0ce0ee3
BLAKE2b-256 268af476fea90483a38173e53660922e5eeda6ac9918bbbb904b4210ca82c9d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4eb7842f1a3ca819ea6ec6a296ff405c1af411af5f457db0e9791766211239a8
MD5 a741512c2ea98f72010f7096869f908e
BLAKE2b-256 9edb9bfaefc0902a407b1440ab8d0a4e94abacff3ff2f4382d9aa64a322c60a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29c2593fff79d852773b38cae827cf69550bf0d9a7a081269c6d88d68e344e7
MD5 1fd5fd36401467701e2be11e83013a5d
BLAKE2b-256 8db49ee83d2e1c6520b03a76fece3e76ec212f05cd54c0c9f58794e839a03c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4457bf859fc0fff357e50e02bc35ba183eed881f5e93e3cc7319b2de30a016b0
MD5 739b35e96bcbb0812257ef6eb32c8a58
BLAKE2b-256 ceb64f092123e19260e604c8043efe9aee37ec1c26f1f3881ef997451e0b2cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9ea1dcbb35b00fd5073a9e0df8a34e4ce56cd765f17effca3570dccd7aca395
MD5 36958fdbdbd4c8d9444a0f541aeafa01
BLAKE2b-256 d2d2c96b16b618ed0cac00c25a900bb4024e2250b7d6f54ce819e921890bed90

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 378.5 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3dfe900b6b4881873b17043718d2a4116373cbf3e1af199fb0639abfcddad37
MD5 6ed7242a85fb04526d60c1cc290e2bac
BLAKE2b-256 fdf50369cc1397270ce5cbdd34993fa2981ce6f80ba10065b796c80e5b0dc8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b2e777cde0e239d8f7b8cb2202b10d0ea63da18c91c443f1ab2f448b5b83725
MD5 dea83fc9e1763221d8613eb48ebba9e2
BLAKE2b-256 cd7b2bac797ca405421c030cd9e85cb8ed8466f36832900d1e78d7499f9b3274

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31b2cbc71a645de10f6f1ebec1d79eb52506c852da16bb9d6c5990bfdccbb1d2
MD5 e7ce433fe96c612959a970baa51f9ab1
BLAKE2b-256 c0113896eda0af6dc103da5275ca7d9310060c2dd2c8fe553a026146f8b543de

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 797e068157479c55ca4f26522713a7d17f7d25cdcd3213b8f9681982e0038cef
MD5 251248b83d368c0ef30ffe1517370282
BLAKE2b-256 beb162346f565dc2466136cf6f24cd01eb396e942c5aec27998295bf59b6ab55

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5f20583cff3624120647bbbf9270ff0337961f01396a29e2ddfc49124231bb9
MD5 aea1aa2c4a75d351ad737182eb5fe00c
BLAKE2b-256 102dd909cc263b7d78a2e99256b55c3c972bd37ef10329dc53716a558d7689c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 378.5 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 077fca94a461d6da59a922416328024a909d805a1c37b51d7cd1d0ff3a5bd2ae
MD5 1cc34a8c2d0713164f63be75d415bfaf
BLAKE2b-256 03cd5ebca78bae4127edbb8a20eefd53f842ef8efbc2e4d33f68a0f4e7fe4ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d2f15b35f5c36fb424b5c0a4cff1de8aea9be356fde5ea275ce92aff4bd8b41
MD5 206cd957d5a1a2d555344d4496363d63
BLAKE2b-256 e0287ad47b0a1ab6720b46bfb9d5aab53c9cbff74069824ae3442c8d3de48a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c75fead075706f578c8e9d12228e47dd20d9558a6cad294e29709b2c720ae23
MD5 0a608e8cb5c3dcbd842ec1db32ac64d7
BLAKE2b-256 1188789d0b008d47975fa32dc831c1ae0ee0587143e5c1bc918e8fa61ad79157

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd66d67e89c96d514676a868b4224948006952f41fc41683e8737bf9200f527c
MD5 f94f8a397b70bf0d6532271bfdf5ae24
BLAKE2b-256 10cf640f1d7ec3019b166a13305ece9a24e5d186472055cada966de9a85d1ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 978c2234bf5c4ebbb5ebb966069f161b97ddb53aacb36b99efa89b958af177f5
MD5 641f8000928983137bd1d1dd22f5b5e2
BLAKE2b-256 d260bd5265f275300f91f9435efbd4da708eaf02741e4e8195a387c98ad32609

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 380.2 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 205548e614a32106ca34f5aa331e02d05775a36f574f4007745de0540273346f
MD5 d7c36554aa42de765038af3171dc2b97
BLAKE2b-256 da33cdaab597d7c2118e7b1b5c865011abf4168101ca1935093e40273d851f7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c413852557510852fc5a40c8308aeccbf17873720e63e3b0810e3fcc48197cff
MD5 71ed92c831592542735676da27b59abf
BLAKE2b-256 7c348aa131f94e927c24cac4d30586fc28bd5201915ddcdeecccfdf28b9ed92f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6edab577f7a0bab7935351a9188b712ac9b68144912f74c4dbd6fae7ab00e610
MD5 0923f66db5442467fb9759abaed223b1
BLAKE2b-256 1bf3d296701e2fd2df2e520e2232248a9535417bbe56da6c7d35291acc05aa48

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60be1cbfd7ba311f61f8aa403531e5dfae83663e291b1340170a7b891c048610
MD5 bb556c78171dc26965736c515d3eb0e3
BLAKE2b-256 b09f2f5eb795453b8721c146668dd46e31e9c5637ca6cd1ec557774ac6040288

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87bc350da2ff443129b109c4da24007f71a77b91c53cc4e7636fcf4aa883d937
MD5 e2008a286c12731cee375327270490ac
BLAKE2b-256 7cce5c97e433f46abf64f7a3101e85dbf3e5f665175942ec983868529c6adc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: clumppy-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 380.1 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b332b5d87e71f335a290274f2ecfd5b4ee2e941b7fd342380acc77c569257591
MD5 afbe46460258a31e56cfeffafe02081c
BLAKE2b-256 f4ae097261c3369e0203432959dd07d4ba6f6720ffeaab5b1f02441dbf0df4cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1f1b0c1d3da2cdf6cc9d14390037bbb449278cfae64f7d755d23fffe18fd1ae
MD5 29a048c08fded58e610fa10d34c3f7fb
BLAKE2b-256 b9dd1bbc0a57edaf04d3999c30c5a31ceffb21d0514a79e767ea6f6570f17998

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70862b973c6d8f742c8d02639e5668966e219f2f69b8298cfd38ba40d8bafe9a
MD5 13fcfc128fa7ae56c7309614dde90510
BLAKE2b-256 d90e081186f3987b6ac4e48e9b6e68e201c5db1229dc434ca4e0c78401f11a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed7d33466213a64085b6a54ae659679499ee8ea29fe014ee6090884dc6d646b
MD5 f70124a2711da65f47b0d8388d1049ed
BLAKE2b-256 0a967897071529bae5a07df599baf9a7a61cbe70d7a321d74dafd91b884f257b

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4ea4d31beb8167b876790e5b5e75137f0616f9e3f926dc0ee30981690234afd
MD5 b0ba2661dd5778be1900a821f22290cf
BLAKE2b-256 7fc2599e401577dabfdaa4ed0cba803e209688e3b24d1f08e4f5d5ed583ac93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5022c45b187c5bf99d94b1d53ee9aad51c6b78a5099bb78351cd602c1d3d14c
MD5 6c978291ba313380ef95742107193f97
BLAKE2b-256 411f28e72f8c35c9a75a4a01d3d3296e720712c13349f99027460da927af271f

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for clumppy-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e43ec693f72c2e2f24ffbccf2cdedf7d413f84872920bfecdd9eafd13cfa7b6
MD5 f4edaf74de51fb6658e0fa865a19f116
BLAKE2b-256 9b4014d9ca5cba7ba91c12a67da356d5881a26eba928b5e2179d514d45f8e4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for clumppy-0.1.1-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