Skip to main content

Cython-accelerated MDL histogram density estimation with dynamic programming, implementing Kontkanen & Myllymaki's algorithm (JMLR 2007).

Project description

Upload Python Package Python application test

MDL Optimal Histogram Density Estimation

This package provides a Cython-accelerated implementation of the Minimum Description Length (MDL) optimal histogram density estimation algorithm from Kontkanen & Myllymaki (2007). It uses information-theoretic principles to automatically determine optimal variable-width bins for density estimation.

Freedman-Diaconis vs. MDL-Optimization

Features

  • MDL Principle: Uses stochastic complexity for model selection
  • Dynamic Programming: Efficient O(E²·K_max) optimization (cache parametric complexity computation, speed up)
  • Score of each Kth bin: The score of each bin is returned to understand the performance of different properties of the same dataset.
  • Variable-Width Bins: Adapts to data density variations
  • Automatic Bin Count: No manual parameter tuning required (except maximum bin count to consider $K_{max}$ and data resolution $\epsilon$)
  • Cython Acceleration: Critical operations compiled to C

Installation

You can install the package using pip:

pip install MDL-Density-Histogram

Alternatively, you can install it from source by cloning the repository and running:

# From project root directory
pip install .

Requires:

  • Python 3.11+
  • NumPy
  • Cython
  • C compiler (GCC/Clang/MSVC)

Usage Example

import numpy as np
from mdl_density_hist import mdl_optimal_histogram

# Generate sample data
data = np.random.normal(0, 1, 1000)

# Compute optimal histogram
cut_points, K_scores = mdl_optimal_histogram(data, epsilon=0.1)

# Print score of each bin
print(f"K_scores: {K_scores}")

# Visualize result
import matplotlib.pyplot as plt
plt.hist(data, bins=cut_points, density=True)
plt.title('MDL Optimal Histogram')
plt.show()

Parameters

  • data: Input array (1D numpy array)
  • epsilon: Quantization precision (default: 0.1)
  • K_max: Maximum number of bins (default: 10)

Algorithm Highlights

  • Uses Ramanujan's factorial approximation for efficient parametric complexity
  • Cache parameteric complexity to speed up computation

Paper Citation

Kontkanen, P., & Myllymäki, P. (2007).
MDL Histogram Density Estimation
Journal of Machine Learning Research 8 (2007) PDF

License

Apache 2.0 License - See LICENSE file

Project Structure

src/
├── mdl_density_hist/
│   ├── __init__.py
│   └── mdl_hist.pyx  # Core Cython implementation
└── pyproject.toml

Performance Notes

  • Precomputed parametric complexity using dynamic programming
  • Memory-optimized array operations via NumPy
  • Candidate cut point pruning for reduced search space

For implementation details, see the paper and inline code comments.

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

mdl_density_histogram-1.2.1.tar.gz (11.0 kB view details)

Uploaded Source

Built Distributions

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

mdl_density_histogram-1.2.1-cp314-cp314t-win_arm64.whl (77.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

mdl_density_histogram-1.2.1-cp314-cp314t-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (143.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (145.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (143.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (93.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mdl_density_histogram-1.2.1-cp314-cp314-win_arm64.whl (73.4 kB view details)

Uploaded CPython 3.14Windows ARM64

mdl_density_histogram-1.2.1-cp314-cp314-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.14Windows x86-64

mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (148.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (155.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (153.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (87.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdl_density_histogram-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mdl_density_histogram-1.2.1-cp313-cp313-win_arm64.whl (70.7 kB view details)

Uploaded CPython 3.13Windows ARM64

mdl_density_histogram-1.2.1-cp313-cp313-win_amd64.whl (84.8 kB view details)

Uploaded CPython 3.13Windows x86-64

mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (147.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (153.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mdl_density_histogram-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (86.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdl_density_histogram-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl (91.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mdl_density_histogram-1.2.1-cp312-cp312-win_arm64.whl (70.9 kB view details)

Uploaded CPython 3.12Windows ARM64

mdl_density_histogram-1.2.1-cp312-cp312-win_amd64.whl (85.1 kB view details)

Uploaded CPython 3.12Windows x86-64

mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (154.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (153.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mdl_density_histogram-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdl_density_histogram-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl (91.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mdl_density_histogram-1.2.1-cp311-cp311-win_arm64.whl (72.4 kB view details)

Uploaded CPython 3.11Windows ARM64

mdl_density_histogram-1.2.1-cp311-cp311-win_amd64.whl (85.5 kB view details)

Uploaded CPython 3.11Windows x86-64

mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (155.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mdl_density_histogram-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (85.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdl_density_histogram-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file mdl_density_histogram-1.2.1.tar.gz.

File metadata

  • Download URL: mdl_density_histogram-1.2.1.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mdl_density_histogram-1.2.1.tar.gz
Algorithm Hash digest
SHA256 31071b854bf1e28bcf01d9e674f57e8a555d58fd98027b4eea7174f2afb39d53
MD5 bee6b82cd55e11d24542af809d690a34
BLAKE2b-256 614db43d49bf1ceb410e2bd6be551a775bf8aac0be1b9a13c04d9ac2ba43a8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1.tar.gz:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 85599f3d58a6f6f4c319e6efe6d1e72e5d3893c2c7d468872a20a45422658a04
MD5 76be2554cb3330a34c820311015fec9a
BLAKE2b-256 0a1356f34848fdc04b327b1d62a9a4816896093762c86ef2e33b330a985d0b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5f3824aecf941525c0c747873a120018e04193eaa421359fbd7b63fca7d22a27
MD5 f1bb66262d3a12e014119cabe6b0f4ab
BLAKE2b-256 67a5b47507296f3def389670ff0242a4c9a96b5d7dbe19f4bb007403db157be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2c40a249c4f78a9fe991f5b7bbc37042357bb3c9c25eecdee11943d842671c0
MD5 2b58141e4fd0f6cea9f681db74923ec1
BLAKE2b-256 17410162ccc9999555cd16951d2a87e3e933a454471f80962a99598fbd4b0f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 925009ce29f60c3dc5093cc6333eb5119682b36b3b6b6ffe5b01b5f1c2d8c65e
MD5 d26bfc10008bab2ee24c16bb45dca7e9
BLAKE2b-256 6a99eacc1339cfd141aad993b17afc452490054f2826c85efc15a47d01140072

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e1aa5aaf7b4b4f924d6d61a3b318fa844130c8df0a33e707c5255d68d457978
MD5 415aae174a78f397576cb623065fbf41
BLAKE2b-256 7ba58a3ec7cf7a278883e27868270c2e9a8043d68f609fd19ea2cd2965af631b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6b1c983628f4aae0fc272ed672aa7e94a93727ed7af7eef8ea08a0d29546b70
MD5 bc7e496181220f629fe69a02a368912c
BLAKE2b-256 50d545a90ea662266169b9cb436d23f98b5fe168f4f574d18b54575f45c778c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 463df04d27ae741950ef40f8be6225d487561d5b6d6f6fc23edeca4c31bf866e
MD5 2486194b70befcd438e34e9349affc4c
BLAKE2b-256 e5b7eeae6685f4118fb26bd07c1eb64ab4464d9241b36af88e401548f19f6f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c71b65de05b247a52255cd94da6581035e60fb9bf8faa5a2c3792ec67a69f876
MD5 0301f98e05205a84e97da76b0eaaba6a
BLAKE2b-256 528204287a4ea311b398ec8ef50f684bbdade8c0ef80d9935a52fb43d80c4ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 296df7156ddf42ef5583e1de542311ca6c4b08407ce0abb6416477630122043b
MD5 cf29290d1c27d4353fa0c4b82d2c7a13
BLAKE2b-256 a31fbbf42ebbf3fbf41d7de6c827af975de5e8a5544616f7ce893d30acacfb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0873da50569c04b30e749e16f4004f39aabaac09211def60669271ed7cf6480f
MD5 5db1f8fe75ce9ab7e97d8e9bacbcbb52
BLAKE2b-256 0dd484f8720ae60596706654f64cdf837804f8902a68b96742e068d8945fadd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe545bf22e2e2766437bec9fd48d4c3b1df8e5bb8d490c832cc65e6957f987f
MD5 88e2507375e924624fafb10ebd98eab6
BLAKE2b-256 5fd3b68e4606f1d6d824cfe8eff3a62f1e72a391af82284b3f3e4691d7144ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5920cc38ba9f3e5f243bbb14056c5321be8f81d56fb8ece15f0c25c3ef6e62bf
MD5 c8e9a36619e6bb3acc66e59bf84121c5
BLAKE2b-256 fdac4c461079fcd7bf5488e1003e05df9a3ddd53431c33f9b8ea9e99a4a29567

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13f83f65f8858ce4cab89723fdd97d2420c46f926f047de642607590b9981cc4
MD5 87817005e9e7e6eda25bd79e449a38c8
BLAKE2b-256 ef3357d78cdde357ddc6a91a169b6b7a18dfdf3ff7ece01e423d191bce2daaae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d9a005fe3e31709b0fe88a2624b216a48a21add835a5662eb8a6e811ea4c131
MD5 9f444cc9ab3f68080d021dd7cdd447f6
BLAKE2b-256 89d3d65e126294259ff9114122c277b6dca19be335956ed339a8d9f7d95dac2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ea35616dbee0d759b70e13e1bd0ea59b5f1f1eea26c7123a26e4ffecad29936
MD5 6fb66339d85d47c6492717ec612c10c8
BLAKE2b-256 eaa9be6586f7df494383a3939092a0f043c03dc69089abe635e3213336f44b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5988b62a2ed2e21fdeeddd8a713f4331bd7056002cb03f1f21767fc2a380a286
MD5 d703291b6394fd85f5541a8c4ce5fb08
BLAKE2b-256 3244f8b6fa27cb43606cd7f803fb91c8b166bc61547c50ce4ddca20ef32cc33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9165e08152a82b3024bd554143eea3931efd6fc437e29b1f13022704385bb36d
MD5 1f0fc7cce5c675d3ad64d9a735418535
BLAKE2b-256 09e9b125981df61ed1a5be9a0e599aa48b18e32900df14a2fe6f896233a3d6e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 909399493dadb768f531005809689e736128e70d43eb6f4b7e717405ba606cde
MD5 88e02f545eba58f22031a23805ae506b
BLAKE2b-256 8beaaf9fbfa30fb82044d19ede691c56e729e449c98a8899d4c2233c6c3bb376

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2486664d9b4083734d1b1976d40100d689a567a6c7cb09a7d3e0344105a4fb3a
MD5 4b12b2751fa8405ccbcbf81dd6457ff6
BLAKE2b-256 e78ac24527e3e78ffe5b4e6ad15aea5818272ee5e10ba230735b27beff704651

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e7efbe6414e7224447c90d0f48281a9f0a72069147756a721feb71ae2aff9fe
MD5 08bec04b303bf7435ff58c23a64124d4
BLAKE2b-256 016a3235b6b41a80a4f3b46ae4c0747c603a4e2d1feb8f85f662895a0ee24bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c342242f667d47d9d11c692ec2edaccd54f2dc7f9e3a891283bee20b4f19cc5
MD5 59bb239e640db2e0449eaad03ac6e461
BLAKE2b-256 75995d30df872c4c951e77240d3cd054d304a308b382583507236f9d85d4a4da

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea473c3ef4a9cae44cc48c0f51bb7c1f369e0adc91005eadf17057b98624ab24
MD5 13ae29e8b2805e5718817b94fafdab5e
BLAKE2b-256 4ef893340854dbd1e5db2ae0245243c440b7bb7d75ae44494729012c3b33103f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f2a0be3e18d80d72fa77acec919652f6fb35cceb8ff38ac187000167d7fb32
MD5 0398ab3bdecdd7681dae40ea56500332
BLAKE2b-256 a4d2c539fae5c9b297de04ecb27e7ce646e90b685f05af5d8d3d40c51def1f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7179e3ac12e1d563794947feb9ec8bb666a75e67996338ace99a6b430c255c8e
MD5 91cfc4047a189b6c74b9ff064d20ba85
BLAKE2b-256 5fca7e33fbdc6baa4ee67d8a4e44bda57b577e75d14cb0b3a2d6779fc016031f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c8c77a8b241af34afae2f77ffbfe15582ae3380f30d5d71da1c59543e96b5f30
MD5 979c361793878f696433988ba48d06d6
BLAKE2b-256 8bdd7e675acf9a511358de3b3d5475113a9c7105bdb1ea2dbf63424b533496a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0ed03f55c85f2ee20d704174f0e3834db20b2e66bd8d3409f8711c014426ebe
MD5 85e4cdbb5458ba00533eacb30ccfe4eb
BLAKE2b-256 cd9d2b4fde95bf7d9834449c8cb9d47e4edc63cd664a70bed91420e222d46705

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00c61d04f9fdcf985f5b248f659c31bec2ab13deb2ff5eee5ca0c79f7f02e8c4
MD5 4f47dd12ba360a55afa75ec3800c78fd
BLAKE2b-256 48d3a2249e94484f4442cacf30ccb5ad2b34731965d8d910eb8711af62d9f15a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 652f3ad3d2e8eb45da2f628dd43a7b54cdc0eef35cff886416922cdbc733aa1d
MD5 50b4b18c49ccad78c47a4a2a4aeb639d
BLAKE2b-256 803cc5b93f5365955ea0886dea85756a1981af823c3790917103a89e4050973c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ff759789f1051755e4813fe8a1480a573a2c2ebf9d97a7d99a29b7e0e4d9741
MD5 f0e98afc09a5a0b8ca4716bea435e8b2
BLAKE2b-256 a1bd224aadbdfcbe204438a42fb47f5d8c3f99ae08f6ee633c7da82859d24ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d5cedea7bbcd61aabb7a612a47ea7b60016879dcae853c881b26d23fb02e4fa
MD5 a6eecde673d97ccea9b97ac05e18fd57
BLAKE2b-256 e0dcd8374972c7f6597909bf2b3b1dc0d4ed1e9699ddae1af88cb2c29955f9fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c112d1d0e0785d3726bb10c696ce92a6b0b479c1bab82230ddf40f03b52ec4c0
MD5 f6beb28559b3ee5946bf8663099b5919
BLAKE2b-256 808f3b5353430a9293743d97ec9315fde8bd04c0e4d3b4c52d7cc2fe85a05670

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7abcfc69198297aec1376269f643ce88886f32d8160c7cd063d926d71b94fd06
MD5 9fb812b1e62048480512b971a7d2aac5
BLAKE2b-256 fee2eb4870b9de15a152f42599787164a45680e6cb3dfb67f01da16b291d180a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e820a5b05f54eb9353b82e726934f01e4145d924278878059949d4b7f1b29596
MD5 50df4815f2c6fa527ecaf18b570f6d6b
BLAKE2b-256 f9fbd30cf7ae3ef836cb14f714ded932df3260c24f31cff6161adeedd4cb517b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 052dac1e47308fb69ee05cafe3ad73d908bf00da4959f81a5a90ade4e89e63b0
MD5 691c53ad0b1ec24777ec75f4624902ac
BLAKE2b-256 f307a083c58825c4048f4177b7565dd223873be19304c2e74d5b7d2093f6f397

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 125841bd436b834a4b7829b874362218e1cdb2d6fd543e320c1c2e179c8f41e8
MD5 560f3f70205700238f2e7b3169236de8
BLAKE2b-256 0a4db921c5b544b7d83590acc61350c960be88a1f6d7a0c6710ae8fb042d36b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ab7f7240baafbe095e30679a35c09ff288cf4954f34de824d9be55a2fbbb93
MD5 cfac180554143da7e9c3c434612963e3
BLAKE2b-256 ffa73fc634942a8f4c74b0a7f9b8ceb93c6a4546b63b37d322b784bf744f6fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 355eb9a6eade7e023fe987b82b2a0ee429401c12adb786ce16871a41e8eb4229
MD5 e30e292392a61fa577dab0873b021d13
BLAKE2b-256 3b12cc4cfd42d442ea832a2e045b872bc52fee5b8880420e7faf8eeb178964a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1b23947a94b0fff830c81915d29686bf388ba93a4f640883ec93f8397aa5bbb
MD5 403d3a7cc4442036e422da19b2d0d704
BLAKE2b-256 10fb96f3c2ccfdcbb38ed29c9756c7b43fbeacb18e77f5d180faf885759af7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83037cec225aaf6c684c6089bf9dd45f048ed5cb74237d9966804bffae043019
MD5 2356122722b173f9b40c17c192c720e6
BLAKE2b-256 c0b5110f137a03e145dc850335a4767b1b0f75ad77f4054904804c2e85788dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f351543be828318129ccba0edd03c8e874c78cd593afc9cfb17360bbd54568a6
MD5 91390a0a78d115bfb2f9fb1d728f092c
BLAKE2b-256 4b31ae143ab6cff77a9744659f69802fb46b680c27f78a05c2989d3a0f3cff30

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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