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.0.tar.gz (10.9 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.0-cp314-cp314t-win_arm64.whl (77.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

mdl_density_histogram-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (142.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (144.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (141.5 kB view details)

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

mdl_density_histogram-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.9 kB view details)

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

mdl_density_histogram-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl (92.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mdl_density_histogram-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (98.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

mdl_density_histogram-1.2.0-cp314-cp314-win_amd64.whl (87.1 kB view details)

Uploaded CPython 3.14Windows x86-64

mdl_density_histogram-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (155.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.2 kB view details)

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

mdl_density_histogram-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (87.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdl_density_histogram-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl (92.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mdl_density_histogram-1.2.0-cp313-cp313-win_arm64.whl (70.9 kB view details)

Uploaded CPython 3.13Windows ARM64

mdl_density_histogram-1.2.0-cp313-cp313-win_amd64.whl (85.0 kB view details)

Uploaded CPython 3.13Windows x86-64

mdl_density_histogram-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (153.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.9 kB view details)

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

mdl_density_histogram-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (86.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdl_density_histogram-1.2.0-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.0-cp312-cp312-win_arm64.whl (71.0 kB view details)

Uploaded CPython 3.12Windows ARM64

mdl_density_histogram-1.2.0-cp312-cp312-win_amd64.whl (85.3 kB view details)

Uploaded CPython 3.12Windows x86-64

mdl_density_histogram-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (148.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (152.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.6 kB view details)

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

mdl_density_histogram-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.6 kB view details)

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

mdl_density_histogram-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdl_density_histogram-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

mdl_density_histogram-1.2.0-cp311-cp311-win_amd64.whl (85.7 kB view details)

Uploaded CPython 3.11Windows x86-64

mdl_density_histogram-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (146.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (156.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.8 kB view details)

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

mdl_density_histogram-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (85.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdl_density_histogram-1.2.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for mdl_density_histogram-1.2.0.tar.gz
Algorithm Hash digest
SHA256 9ee71a8a53a16031c8dd1a84db53739912c3e340d4478a01384346790d95bf80
MD5 55a31669cfa696a5b726b8fa4f000673
BLAKE2b-256 e74c0bac1cf4b1a07df8ab0ee258085e20192a20cf983c03db623bf898deaa75

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0.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.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9a4a146508d9bb54725a70eaebeb171f0d5f1255e766b8b0b797ce926cb244b0
MD5 440ab3816369b09d5d0caffd0103579a
BLAKE2b-256 844b3c845b5bed969498fc0311034b6154b37818f5d438b4ec4a2b18490c32f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2541936ba70bf8e7280a6c41efdbcbe9db4ac72fed9c3de727eb11ce9de3d5f2
MD5 137e133d0f0e1bbeddc8eb8795a68cc9
BLAKE2b-256 ca883ccdbce2b4572307a3bebc8cc7f554a07e4575b6a4f7b244792e72a5a016

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6631cc6378033001ba6207eeff7cd6533cb305fae76f476ab8fb689f64de02d
MD5 95146e9edb7417d58f1532e0ee97c440
BLAKE2b-256 8dacfeeb03506c4f9b2ed77a76554b3bbedf7e24de36f05b285df7e121e7f925

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba8063a207bc6a95d59e5196f6653af2d7a9ea7a31a0c0c26102e6d472cf8948
MD5 147a13df8e739a67f74e9cc10cd099fa
BLAKE2b-256 2611732a26c65f88c5e41a21145b7941329e0d511065ec80a776406595fbcc92

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 867699b75861c9584b7f1db1d1539fb6b0153d7f050b16e883094f5f612b22d0
MD5 926ea240aba8dc6add623392023648aa
BLAKE2b-256 69a0648aaa7d710a687e4b74ad9bc1c3981f18c75217a28e8ceb385d60a439c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d39ecc3aecda994b3b3b7afceed114abf0b47e1c2379c273ef265e2814199d72
MD5 07f19f1d0382a08efe35d68b774d9367
BLAKE2b-256 c3cf9aa4cedee92f72033f8d640879a5693ebf8fdee3087d53c9519865a37e41

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 686bbc4066f235fc793e0b8c7acd0ac3bbacf66e936c6252510f1fd49f6b3b32
MD5 7ea4946257f48573524ede679554e7f9
BLAKE2b-256 2bae80522896e8868e4ea8cec7f20b47a7b48182f032acca06afb75af0ff3a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a1c9eb95f267f8364310771aca01735473221b95621acec4de5656ddf6ec504
MD5 26d8813b4f2a9d8bffc58d63a50ab5c1
BLAKE2b-256 cd9b5c5c92d491914bb0b29cbe6dba73aea3ad9a87649ff1794b362c4cff8e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 97557138e126d24ca2af59b56f3cb950ac14b16a68cc8ae36b3a1b2df83de11b
MD5 4569b4e85ee019b5e6ae0f18389a46d5
BLAKE2b-256 030ee3f2beecd0d4b4980f796a215245907b77f96b1d9d38193d4031a5ca0e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eae40bae817b451a687c03c318a0269884bb0de920a9cf6dc77e49d6a5f4b1f5
MD5 4dccb8031fbf6c2fbc285c0f52428fa6
BLAKE2b-256 709f1bfbab5ae93123c9edd95242b982e2874554eccd404723726de057bf7dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aee6e7ce3e663f9606b565f3f6c3e89f4d6cb8c246653d1ea208b7fc993ba2f9
MD5 52006b3e1fa8e6ad85aa1787a488b1ea
BLAKE2b-256 6f82cdfffca11aa6779ab7c2fa5a4458dccd0a59832f54f6470ce3e6ad0e37c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ee892a75660485f8a26c0a83095edede5a3b575f013ae8e16bcb5612888eb7
MD5 a255cd5c2bc5e134a17a8b47bd231074
BLAKE2b-256 34df0cecce8a7f40563b21963499ec486b3df91c6229308e8d0e73310cf17b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 199f2d5378afb6bd0716c1325d6224903cc60d4e9f55a32624733777e3f16e64
MD5 bcbd0714bf602e59b5528c6cdc203900
BLAKE2b-256 34cb492ba13f51136f6c2002a0b27f12becc4696a238d8037906a342aaa0bc33

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 024b2561a5654e53d725a4f49461fa7b133c2e808df866758560691e3849b269
MD5 62f572ea2f1e3b8d7fb39c99b3f22342
BLAKE2b-256 8c16dd7f2d032383e90a526efd55e11e8e4899a2de6935b11dfcf8bc8b1eae80

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70e0dc06765c7f8ab245c8eb89198117e73664426a46215d9b84448822799940
MD5 173391fe4b8b77ef76074fa13519d72a
BLAKE2b-256 e12c875189aebd8e38d5bd23440cd2a72f1496af3f40cf71fb8b3743d43ea44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c73086db85c77ee3846c463fc6e849077efc571acc10cb5bfc31997bf5295f0
MD5 8b7a8a54d2e99b6f5a69ad9dfd127713
BLAKE2b-256 50a33407f41b305ad6e92d5bdf6a429a250fedaceab973bfa84e0467726f90ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fc893c3898daea51be3047d32ad5ae062697fed44d15d28383f7dbd573663930
MD5 e6135c16e644c5554a73fd49332613f4
BLAKE2b-256 9eb39cda9bc6d1695f3e0d5496ae4429e0eebcfa678790890d8d7bb4dc3723b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc3fb879115a571d18c88dfb0d2f1e0cc8bbb49727cbca34fab736244b83bca8
MD5 e52485e0750f465e05620b1289b25751
BLAKE2b-256 d3655094b8ab050d6487cfe650f823a4d0c1ea7bb35d22c5d0abb2021ea77475

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69cb1a42ecfe276188917b952e4abf181d5229a02c4c2502ba3afa496370396b
MD5 eb2ca2448aa80d57e5fc75d7e2509c9e
BLAKE2b-256 b40fbe69b64a3bfe401d346d4ce5bc8f1c1ca8354e80e2b1a04772132e63ab0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c56d6889730f4d087fc4b87b8f6cbfc146d1894b1b200248f2bfe4ab7fbb9633
MD5 98ed5b427df30b326cda86bc5412e047
BLAKE2b-256 ed46255e8b43ce96f3cfa8be6233f088eeb649e4896166d962a156780c8867ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73831547acf305408f3ad5553272285199b6cafb8c266aa25d22f5487a15542f
MD5 2041d3ea8ee2bda1de1e9f13984357b7
BLAKE2b-256 1d41f605173656a92cfcdd813029aca7d2575010b71526c4c2803960b7ae40b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33d14faf313ac36dac46689b882d413cb4b977cd6d088b3801142f809ba679a8
MD5 2a0890058aef18a702eaf07de2197bf6
BLAKE2b-256 d9ada15ce90d038f8bfbe239cf51bdb212708db2e32433f2568b309aaffcd611

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f228c823ef292e200186d9c032df4dc157d6e7ffd4648cda98a43b96d564b52
MD5 dcbee62837c51abb1059223e83db38ff
BLAKE2b-256 aad44838a7836cfbe89184d845b7b48926a06a82e1949b1e95ca210973a47c9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3edf954674d528342ffd95e745e92785c61508a012186a2ac378f2e838effc9f
MD5 47729108d6420d4433f6c23f76d06155
BLAKE2b-256 93a9f455f7126f1145ce9537232a9337d2eb26d53f13df3cf9ba4caaa4263166

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5ee042d23d6267e1ac9e19fb024fb2c134e5d7a2f00b9cfc368c4f54648ddbc0
MD5 8315839b02836ba4b0dd3c407c88b8d7
BLAKE2b-256 7d2d88835415c00bb0392574d16f9cccb7413fbe543c61fbf6edfb20bf509e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5edb3a40ac343fa7cb540bf7e0786d58931bcc3f32bd2ef85201f8517151e2a7
MD5 bb4ee082ddf6946f03b3d7d2a38a3756
BLAKE2b-256 a33f25e4483d01c2c737628e3085c8f3c641b0d8acacb3a5344622b549528ede

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ceecfa65fd0c82a1b3f53b99c357bc81f3e4c84c86b6ff9c1904f95397453f45
MD5 cbd376ffad834c81389991fb1be92729
BLAKE2b-256 d689a78cd05f81bddd15ca9ac89d5677652bae7029fc51f5408be8bccc3dae82

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41bce904a287fe2c483a69ae80212f4b419e3fd817a416a05672c96dada3652e
MD5 25ee37f7d5219d002722ec2b8f58047d
BLAKE2b-256 3935891ae2a029643a9f9bb38123420cf3cc3f71caf5e633fa9ba6611e30bbde

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bda5bcadddabb47e7297b0a5a887bb281bb9904d7964faff1e9f618b76660f44
MD5 862aa304ff76dcbfd967c929dcafef69
BLAKE2b-256 447004204896f27e8935f86e4abca374dfe103aea01e943a85d7163914e6c9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69d51a456087dc6aeb29af68714506f106e45faa13f36cd74a4611322b9723e2
MD5 f47421025aa4b6534c691089f242d5cc
BLAKE2b-256 55dda06e58720a088330c177ba8330a59c8b2e03eac920deb6ee51f527768983

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 453c0a1ceb19dfa94d373aa8eacb61cb97ce484043159e5fbb0ab9ce48f2c075
MD5 50755072025685d93493ba5225b60b1b
BLAKE2b-256 118099ccd73c5606641aab26ff7ddfe6fef31ea91ddce7c62232d612c1afb15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2df91bbd42de5ded1a29c66e1f2c3343c59742b514ec747a1f63ca62e1eb2d58
MD5 933c42455c21abfdc8c8feeead46b007
BLAKE2b-256 d9793ea8b500d2a5a9343c32c1fab3dea649959ca5e82f07835962b34320d8aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a53a3d5c93a5465198b62362b117fb2a874bdcf1b794a4bb78b5ea529732c980
MD5 31d4751ffe2a67d7dde43c6dc54cee67
BLAKE2b-256 6d531d414dfd12a41b1659ffc420cfea7c8d3e3bbb2fe80d945ff7f481cc2f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55ebe702123622d6b93059f56963721e02ede4a0d23d0573c3c2894d26099dc9
MD5 817a28e343e60c3f4f571095177588eb
BLAKE2b-256 2ed8125447abacbc71a51cdcac28a1d09a7db4ed18b1b24a173182ad24f8b37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b2059a9e02c387566de399fa3200e982bf7c6b311ec76aa5d3acf68a33ab7b2
MD5 d20d4ea866adced789a46d8f06164884
BLAKE2b-256 67732c0b5811233c58a918a1d78f2faede5b14ccafaea1e8c19e255e8014ad96

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6f89a81d7e44853153002b9e1acd3c4003e998684952ef6b886714588261015
MD5 7a1704788de810f5d616368b66744f88
BLAKE2b-256 555ad74b37f77890690e3c912f6e429d7038a6abcfc535ec19bec0526aa794c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74846f9c9118e4112a389c1934b21a317d4bd14ceb8b3c9e22556f7b0c0ba3b0
MD5 033f03c989767c6663bd9a053df4ac0e
BLAKE2b-256 50304cef72cefaa9e7a5f0504d8d9577e47ee1334c1b5be9a06dfa0a41dbba54

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fc152bc1ae1ab1623def69427fd1b9df899ccfcbef0c5192c23a015581d32cb
MD5 8661676eb9b5d75958790b1b3f153b22
BLAKE2b-256 b54b9df869881fe4df276a9e18ed79c3cb73a77f860395cfc23b41d3aecbd50a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3969927c9511ac725e0a6d22180d541b5320b61e6021bb42ca4ec877e1f9f775
MD5 168e4424f77b513d56484a2b4d633dfd
BLAKE2b-256 ada2075b9de1d8b26bae1db53f097e49cf3a8729b8a1d01ee6c0b5961cad61fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08e0dfc06c61f795abbe28dda4df99ee4a7bb755ebfa39423f8a299c2bb901fd
MD5 13d0a289ebb15847bc1d82766294fffd
BLAKE2b-256 781fc869659fa4d073e9eb11db117ce74077f71539a0e23a02d2c7bc406517fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.0-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