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.1.5.tar.gz (10.6 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.1.5-cp314-cp314t-win_arm64.whl (77.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

mdl_density_histogram-1.1.5-cp314-cp314t-win_amd64.whl (99.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

mdl_density_histogram-1.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mdl_density_histogram-1.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl (144.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (141.3 kB view details)

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

mdl_density_histogram-1.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (142.7 kB view details)

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

mdl_density_histogram-1.1.5-cp314-cp314t-macosx_11_0_arm64.whl (92.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mdl_density_histogram-1.1.5-cp314-cp314t-macosx_10_15_x86_64.whl (98.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mdl_density_histogram-1.1.5-cp314-cp314-win_arm64.whl (73.2 kB view details)

Uploaded CPython 3.14Windows ARM64

mdl_density_histogram-1.1.5-cp314-cp314-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.14Windows x86-64

mdl_density_histogram-1.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (148.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.4 kB view details)

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

mdl_density_histogram-1.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.0 kB view details)

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

mdl_density_histogram-1.1.5-cp314-cp314-macosx_11_0_arm64.whl (87.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdl_density_histogram-1.1.5-cp314-cp314-macosx_10_15_x86_64.whl (92.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

mdl_density_histogram-1.1.5-cp313-cp313-win_amd64.whl (84.9 kB view details)

Uploaded CPython 3.13Windows x86-64

mdl_density_histogram-1.1.5-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.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (153.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (146.9 kB view details)

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

mdl_density_histogram-1.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

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

mdl_density_histogram-1.1.5-cp313-cp313-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdl_density_histogram-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl (91.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

mdl_density_histogram-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (148.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (152.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.4 kB view details)

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

mdl_density_histogram-1.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.5 kB view details)

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

mdl_density_histogram-1.1.5-cp312-cp312-macosx_11_0_arm64.whl (86.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdl_density_histogram-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mdl_density_histogram-1.1.5-cp311-cp311-win_arm64.whl (72.2 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

mdl_density_histogram-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (146.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (155.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (145.1 kB view details)

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

mdl_density_histogram-1.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.7 kB view details)

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

mdl_density_histogram-1.1.5-cp311-cp311-macosx_11_0_arm64.whl (85.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdl_density_histogram-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mdl_density_histogram-1.1.5.tar.gz
  • Upload date:
  • Size: 10.6 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.1.5.tar.gz
Algorithm Hash digest
SHA256 e49ccaaffda35f822d6cb243a7f61dcbff95e5fefb2133cfbbaccf1475b6efe0
MD5 02da208abf78bff8096e43a56fe61be6
BLAKE2b-256 373ab505fbdb9701ec8073d5d6eb848488fbc19584b9f537db4391b8fc105327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 03a1cea7045c8670554fd742bb384e4ab4b23b316f7458e8b895b1813347b67b
MD5 1b83a1cf156a6cd461adaeedc79f2975
BLAKE2b-256 e30d6e7d129bae3b4f2838c63bc5e0726c97e96332ae3eaaaa875299a7258a96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 28509e1dca1f207cc0ecffa5c961866537e790c7a749a2c3ad97e4d0d262d149
MD5 40a694a8afef88bdc21c7d034af72923
BLAKE2b-256 d1e29a3c565b6bebfc9d9b3192ae50ffe4f586253b22281cef9544b193f2896c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f688b0470708e8f4c10ab6cb4d3a39744bd2a6768c8f57609795f777684bbc6
MD5 cbf3c95964ce7d2d6b18bec26333edcf
BLAKE2b-256 22827b70ba5cbf77649e1f8e706ea2305386d988eb9ec98b7dabc8c8b1c4ec64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7e1b716a62c28b1b88314e8a324fff9ac48b2b504e79a2b16d9931e974772ea
MD5 ef5e633b033dee052ce6be984cc5482c
BLAKE2b-256 e55e94a756b2ebc01458c6dbe3b0963e075ad133642d4038eb503c3dfb92143e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.5-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.1.5-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.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93971f23c7d57fe1419cd3bfbc6e1c17d184bc5d7281398df12ec6746e0c2134
MD5 33ca678a48ec1c6677d5f8f3bf588557
BLAKE2b-256 63c66e8ab456ccc0fa0cc7c80ccd62f021fe0b70c6f58e2b7e388cdb9bba9c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c73ac91fb48c9dfea3dd275849b1f3eef2d5b6dd92a74ccb0b5e84657bafb1fe
MD5 7232bd9d71d10c4e4f8fdc10637973db
BLAKE2b-256 f4557a55dffa4789277955743e4b2e20d940ec61d380cd063fbd2773d992d50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 812fb0e9c9f49541a04a5a10f528fe6b890f1492c7b71320c489728f5f679498
MD5 5a3189e53f8ed2771ef620d9e53e9498
BLAKE2b-256 dacf1bf7913646740e366e09793af30ed198484ca765faa583b81345e4707693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6527b82ae315549f141af734e1b5d7c06dc78f962bd678b21646a44aea578f86
MD5 cad49064a531cc1bf1508ccc7db4da0f
BLAKE2b-256 7e42be16d104794816a772753b94a0ae32aa8ed10e91bd3ef76203a795eafb46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 db4bc0103fc915fd22f6cadbd3b3d02d53f43ff46b1eeeb9a7dffa8e2847a784
MD5 7c6ba4cf803b0f8435b99e5a088f42a0
BLAKE2b-256 68192bd928373909970eb2479d13687841880b048bb216ce93f8a3ba844e372e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4a06f79ed0e893b870a8070a3d844f87ffe505d90ed98ccbb3995962bf6f2b0
MD5 de3672a0439a6a99d120a464b67ac9c4
BLAKE2b-256 3149d3236f66ae19ffe4ae1ff94d6c2ac213b1b5176b5d594352f54a18c213b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32de5842ff52c31ea85e73e30da59a1df963d6ce07840748617d5c1517fb270b
MD5 23a7fb990244769530e988b960f1b165
BLAKE2b-256 cffbf6e3804101d22ea4c8d09cff996eb4d341ed0f310dc46a73f393f2183492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc8fc4757614444e36e2d94d1618df7546f711ef49e919ccd1140b176a2edc50
MD5 c82e5aa2761de3866b36c2242a344df5
BLAKE2b-256 38a764ec677f1e09d813bbcf708786853a3926921137a05c1e2420d924cecfcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.5-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.1.5-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.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d96ff5da173a1d1b6eeaa5b687fd3580010226a32112a25c485b78249fa621f0
MD5 03c56794dc4398651f7bdcc5f7b1ed4f
BLAKE2b-256 d508a0ce0a7cba854d78aab876a7cbb65d13e50f2fc47726323a02d0294dc2ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b947b52c3d3669c504752e23752168b09984fd187b57b91123e8a573b66d7e1
MD5 73cdf275f0e4eab7a191c2170838a32a
BLAKE2b-256 e23d6d06bc1d281a1906c04dcf3594dafabbfb81c64f4faed6e308b9f65fdbff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd17ee4e7427581ac1bf3323f6541e39c78ffe21d20ae5870c44302094fb95a7
MD5 2bb4d770388d6e956b9123a06134b9e2
BLAKE2b-256 38d0e82eb056068bddb101615b407b08ddd4b0f74f6bd6d471ea98d80a1443f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73fa4f874a703c13e8c5d03268e1f151766c4ed11b4dcb3af1629460bb2acc87
MD5 ade48205c3ebee4a0811d715e1f25086
BLAKE2b-256 9176290ac0600293d4a36075498bb1abd66b646fff613668b9a424bc51ddf225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e95bdb1eeba4180a5a977054b09efbea14fee95cde15f35c848ddbb807c5545b
MD5 706c09e8e631f85ce089ee80689fc86e
BLAKE2b-256 41791d87c6b4bf096de603c4a583e8f61dfdf50ee2bcea483a6fc136a7250ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d13579a449009cc25132185f410847f0e6dc21095b5cfedd1548127f24e91dbf
MD5 bd117866f7e8e3e997d26fa0950b4265
BLAKE2b-256 330c84a231c11333d633aa1f6509ca355f9e4cbd038a2469521ebcdd23d185b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0869cb36c75258839a81788700715384ee30a08a98e379bc9f677e23bb78abb
MD5 1bda787b3c44592ed7b13248315b9814
BLAKE2b-256 b54fc3a02ed6b030ce492e9d5826d9a6ec4ede59ac27ce90cc7e7ffcc10c6bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d522d94d915e1357d6a5b4e7cb153239a2d90005d23cafca18409350de22247
MD5 59c45ed0bfb72e7b40f1568bd7753a74
BLAKE2b-256 76d42347cdb94515715702b3cf3c8af7c78226271bf36e9eab4ac91948e6c965

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.5-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.1.5-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.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 981a6045a06ba5d39c43bba76e1e7b9b4d7153e55a292fedcc428dc39f4c503f
MD5 b218199b3384c54844b5e3967ead589e
BLAKE2b-256 076c6b4f9071ca68c3a24f9255a3d434a58ef81ab8d8c4737e45b7893e1675ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de3e03ab56c4abf6d0142cfa1b021ede245806cf64b5f6ce119e03845647a7fd
MD5 e74f13b9eeb75a5314aa38480797d92e
BLAKE2b-256 af141dee977583003916266ff0dc8237561953292c871bd69bc3e41c88b7b34e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e483bcc2097e2c219259ae3e68709c34fceaba0c4a24ff62610dce280d8b5cfc
MD5 d6b9c4dd091c0c6b08cd175c803dcf15
BLAKE2b-256 a876b859b49a01cedc2ff58cae7586f0952c61a33ddfa3ba8226776020ae78e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de0b15162c2c854470eae498d07d091be3c4f9704dda96dee88c5d97e42de8c0
MD5 e4841738f4a5cbacd05f28ea823d8eff
BLAKE2b-256 770f87f26e0ff95cfcf3b76ef004e829aa1650a098fdac72cf407fe0add89c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d9f329c643a266bf3a3e30a07c89da0c04611dc8e158a5f3dd87141727e387bb
MD5 61ec381d0d1a0836951707cb907df23d
BLAKE2b-256 dfb5c52b4084a3e10f96ebb29b6fc1f0e3237d67546b8c382cff6a580c299b7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b3b0c88a5573b1fbe220890bb2453effe267c01b92526d8c68c313905677790
MD5 0572df529ee59892131cf427d1c12442
BLAKE2b-256 89b902259c9765a3b9a6112fe40a4bc04e2e054cecc8403c56af670caea78bd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd41b070013e013cf3dfb135feb590d676cdb9d2a8d7aba3ab89c8182de2b77d
MD5 7706e7de0eacc80335a5df68d4fba685
BLAKE2b-256 1b90a4c02d6ba14604b8175aacc1c4ff2413d18604c3f984842f28b5c44853ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e559805f230aabcf8485025879e8d27e56bf50114efa8879421e532ee5a95c8a
MD5 3afac6d3152d56d1803d4b8ca853a1d9
BLAKE2b-256 489d9cfc0604f5bdc1f2875f23ff946ceb17f933c523774ab401bbabbc35c593

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.5-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.1.5-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.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87f5ff57f614ca5da1a9d016e09dc6bfe9bbca8061a0b8513ee6d55c7781c8ed
MD5 45b92eafa2df3853616964d2f518acaf
BLAKE2b-256 472715fee2929ecb9fd490599f40c182b682f19b5f608d90c827c1067b636c7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8603846ee626318b53c4c4d98d1109090326db120f9f9dbc5b63c3619db1ba1
MD5 64de2f3db81051d59120c7c08d067d07
BLAKE2b-256 c8e5773c2050db95fe4ab6a7b2747ed01da83061537ca4bf8266bfb47ef15b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0091a5a7b5a76e62b2367cba1c7c659878c1c7d816ef6beb0073e84a9248de08
MD5 979495bc58e6faee4e188cfe2d075e78
BLAKE2b-256 50542d2c59a3cc1580cab8b3ecc8624340e16c4e8301208aabd74a9e7e5bd0f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba050a1aff73ab00d37dd38ec6b9b5e5067e715e46cdcbc726d8dfc445b47bce
MD5 1ee29a40edf0f1b722cdb1018bd7b7bc
BLAKE2b-256 e859fa0c34d709d62ac4b10d497bc8c8b3d90ca9a572af81a39a498353642411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 95462d1ce41596f5555b3f07200a72148a76adbc352026775c30ef3c5cf0f581
MD5 16839eac76f1eb939000f9748bc6bb0e
BLAKE2b-256 3e62316585fcaa096b1d053f1d516b34f3c66b084695b32c53c68bd80340a5eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d27ad28e04033d9c55064bfd28f46ccda77270771b029a8d489fee95f821012
MD5 b48736c7bb6cb0f6e91e20dd9b66500a
BLAKE2b-256 f3e5af88fd466b65e7cc06796a1192c28a70ae23e66c87453c97ad5410de9a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8dc8eb103b3521f6ea4536d1475cc967807373bea6edef0579d888e09761767
MD5 da609912a4c441970d6f621273c6b1d3
BLAKE2b-256 ac03df85caf781936065532d87d24cac827275198535c91c6ac336656ee20867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee7497d3180a395f662f8beb1a72b0122475a9564254f12733ebbd783aedf579
MD5 c2db549efe6e16073683e572d4d7d176
BLAKE2b-256 e48c367af781b2f5ed8f46a207655edbfcbc0b8e15ca02c6bb91dbced3850c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.5-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.1.5-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.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24053f0dba0543f32ae2a48dfb0f8c1bc9a84465963fe217a678c15ebc62e23a
MD5 107a808125b1dde370aa5d39d7830ce1
BLAKE2b-256 aba60014a8c58a7b58174b8649375e0ae8abf8b699335cba28f47f203e59f9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76aed54621ce45287095d00990afbefb91b71dbf2583ca0c95bc374174427057
MD5 71d2e6d846701a7fcc436a5d840e865a
BLAKE2b-256 cf4cc96931bce6cceb91438e47f27817cee7ae3ff29eeb3d8f3c51507f66e9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bc7bbb880fe40944aab50f759c3311afd328a51e8eef4178fbea86c6484e6ed
MD5 7aae3e9aed24f6676db21b38e5993756
BLAKE2b-256 c871402dccbe71acf1cd83706bdd69a17af52d2711d5a44383f71dcd68867aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2122546ce8711978ea771ff672bfed6c24f0d4554c21d0b585f4319c675a445c
MD5 c289e4eff37302934e3a148ddcc4ab2a
BLAKE2b-256 143759b3b2f26032b41783d937899687e7e530588ef99006ca00ca647c01f559

See more details on using hashes here.

Provenance

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