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.4.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.4-cp314-cp314t-win_arm64.whl (77.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

mdl_density_histogram-1.1.4-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.4-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.4-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.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl (92.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mdl_density_histogram-1.1.4-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.4-cp314-cp314-win_arm64.whl (73.2 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

mdl_density_histogram-1.1.4-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.4-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.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (87.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdl_density_histogram-1.1.4-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.4-cp313-cp313-win_arm64.whl (70.7 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

mdl_density_histogram-1.1.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (153.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.1.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdl_density_histogram-1.1.4-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.4-cp312-cp312-win_arm64.whl (70.9 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

mdl_density_histogram-1.1.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (86.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdl_density_histogram-1.1.4-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.4-cp311-cp311-win_arm64.whl (72.2 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

mdl_density_histogram-1.1.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (85.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdl_density_histogram-1.1.4-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.4.tar.gz.

File metadata

  • Download URL: mdl_density_histogram-1.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 91794df517b9caf8d0ded2a9da9c23773577b619bdaa9675d094c4cb1d6f6170
MD5 727dfd6ec4b44772cb21d42ab8e901c4
BLAKE2b-256 940980ce0d6b00a33f3e95b7fd0a64ef0449125cd3ea31ae0f891e70ce20697f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0b480fc0b9e7db86d325b036d68f3d0536da02e295a9c6c6941df93294d02762
MD5 200a73e77f440ddf472d4e77037c153a
BLAKE2b-256 f8298db7dc27ed25721f82dd42d394ce45ff25a43740df12fc13d944d0b19cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 de8d6751ec469b6e2c6c15465b485b393a706c8b7e93e9c5f6a4c2887403967b
MD5 65a6296627f3713c166642c66a7a487a
BLAKE2b-256 71ba724798763cec4f4df7ec65ef71e501d7e7fc030c925a34f41a05b7390487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d76dddc6dc69e87045bd0eb5d84cd99f4ef3dfebe070dbeae2bc1ee59cb7c707
MD5 d2f135ebca388249fcee2fddc89051ac
BLAKE2b-256 389e3c6e696b19a80a6bb4b2fea00d6591f34bcbf4f7ecca8deae8eac9e5a079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2c5c41ecba2f2e7c832a4ff65041b4cafadb939cd42eec6b87137315a3ea4c5
MD5 e2ec3b606063d13cd0a4778b01b4357a
BLAKE2b-256 70fc1b7e1993d9549a7a5e175099bb6198e12aa03fbe361de5e8737c3761a249

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35d381df437a73a6924cbee6bcf1c68ca023da3e0e097f83baa3e3beb0fbfce6
MD5 ef34367cf83e7266cf857a01e6bfb7ed
BLAKE2b-256 02225bf7d119439a13eadc76d239725dbc264f24e352422afa34e8f0d7cac5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f794822b7b1776c3b60a8bd5ea95cfb792008831d585dc871f09e2c12881ac3d
MD5 d2a03eb292183007b6f6492713d16fa7
BLAKE2b-256 e89aa85f6138a6c54a81fc793a731cfc40f30fbac2761c00fbbc35bbb290de8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9935b2e902283c4da914f32d6399e3aa27a57640d7d88212464a969bb6aeba0
MD5 ca5a9a303deb455aec5311ab4f41d0eb
BLAKE2b-256 70bd5101a66b3483dd8eef91275de2ec71adf5c3cf2bdb08b00382b3d22c26e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 56144c24de337f6365874916b43d4252d4a693bff4d99ab2a2ce241a4f95b325
MD5 8c4708e62d03b08d426e92f2c41b9f4f
BLAKE2b-256 bca78ef7a78075d1c33c6e6c5e8f2f3555f7b4919ba775df67675776dbcae030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6b2bfbdb7928352fd3446c3213c0195047835e5aeacee9c8e0752961d744d442
MD5 952ed241a73a034f2dc8c23321614f88
BLAKE2b-256 c04190ba3d9596fa277df97d4c170ac732a256cfb6f81c568671e1f889e296f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5575e7e0c107b71c5ab1e6e28dba3d398e50c7ffa7ac07d4f462485b4c555b70
MD5 0109c41e8f7ee14b1b87ac18f7298ab7
BLAKE2b-256 3b038fe7905c8fd4987cae28a01e214f72968f8ca761911a58a1e5ceaa7aa0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db91cefc6f8c5b68690551d7518b9f8bb21f90c5d6bbb902702e65a8f0fcd10d
MD5 c8ba3db4ecc1523ce750cf3dd0b54e2d
BLAKE2b-256 19dfa01236ffa00070fecf0a11ecb34f5e28581e0727ef6109dce1acd260034a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 149e72da61ca3b2a581cd37cf61f9c4a77268a96b89e262d5dc73c9cda19ac9a
MD5 4d1c5ff8859d7a4e4a3b204f486cd670
BLAKE2b-256 9072ff466cf69216e5b08006e7a2f81898a62bc2a78be4d0dc12b89648c22e4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8417e446286bccdc1a45736fdbd235477ad425c9a95c68734329077df694f229
MD5 b357cc919815bb447f411df8051d49f5
BLAKE2b-256 2cdd9d16262762d6658d255872abde7ed0bdd20baebe536399904aba0906facd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48dcb3eaf93a105b85ad54f24a81d4eae8ca88f306786bb948b2f2d6043ae0ad
MD5 4573450d9bb54fd35742ad2a862f9113
BLAKE2b-256 a8cd65529be4827a74b6581dfa1400851ad788b1c7a5f79d1730210ee5f21beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4241a66d9a83e130471db370ce3611bef3cac01004ff20b1353b714d280226cd
MD5 0b75cc3f32dea539cf8d2054bdd2cf15
BLAKE2b-256 b813de56f23e54f087b69d93f9845b712032b7c466252b953c975de92b2311da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8c022d4f8c691c9039156dc542f5e05eb5ccb9109e5ea6feeb179cd30ca314e7
MD5 4c94e1294dca4df92c99bd58b447fac5
BLAKE2b-256 289f858ead9433479865066b063ddcfe2d13134beae5b93183f22af1196c1605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 868304bd9b51f760d7941b6b2a14d6fe17104fc276d7f502c6faa552a60da6ef
MD5 01b1ba0643b40a22020ce0bb791979d7
BLAKE2b-256 f51671b5140f0ab1600b818e6023abe109e5c672bfb27365aaa65773fa0a6d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0770e3ad35475254cff80250214ac35a6978fa46034db6b77ba7bce3e7fe4810
MD5 ae29d1675628ddd883a88d2bf826c523
BLAKE2b-256 b43c0bb06e3fd30ccd1eb863a69de3661a7c74cb4a378086485e128901978b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2afe79b2f261505624b616f26f2798083b6a347cde1217794eabeeb5e85cec05
MD5 fcebfe219bf897d18d4a53b1198eab4e
BLAKE2b-256 542822979fae9a037f8aa67f9d495d796ada2f73017293aa4a2b1952c803eb0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 229c6eb240278dae477ae8bd3eaa0c094e7d295ca874e1c3a077a4b978c72868
MD5 9df040e5e44c43437d8788daf87acbe4
BLAKE2b-256 df8a158b42b544493d063e3eed9cc50b86b388ac225810fffeb5613d72e35370

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2a867363588fbd120801a52a2c04ff7dbc00ad2a2e8c05759c4b9f20d3de427
MD5 cae50508457b7840a7532c8cc2e1b244
BLAKE2b-256 8e205cae52522cc6727d01abc974e15dc71169cc486d3f92c3a6d398e5e49d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 348dd107ed446feb061b9e7d109cb51e7118993318395527aea39e6b1b2ca1e3
MD5 7e3fb6f4182df13fe3006cdb1b631200
BLAKE2b-256 d034d795e5b1b5e89544b534ed71ad2ac2260cab762b6059f325eea95f64f7f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4f0c15a9ee1143010b4be41c44291e354e0f31ab79e54558802742641abe17a
MD5 79813c0100edbe17159d30926f9f5b3e
BLAKE2b-256 ac94248f233481f2bac0b61d452ff8e6757dc5041703a044fcad04c760bd017d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9db90f519c93081640fe3e5007668b6cc12bd9c48e7486f835a2577c0d3d8744
MD5 0eaff9769a36451e80514125ffa9f90b
BLAKE2b-256 7e7cd59d864c08f0ff8aa1fef465e1e70a46d48c0a18fda8477002184016de8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 12eac338eee349595ca5d4733ec4cdc493a9543a223d32d847407d0cee52600f
MD5 8919eb8daaab1c3c151f61472cd7b1ac
BLAKE2b-256 83efcf89ee62898b3b55e78593332c635a33f28a339c63f84fe637e8c75a8470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5e93d2fab153a15b43353754c5813b57f0c992060660496827ca9b0c744277f
MD5 318b2ee35ee60cba0c849ec1c599f8dd
BLAKE2b-256 d481cdb9173f77715ec0aab46a37eec05782368cc8cfad28d8006b1710fa3aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4721f65c24b83c43faeebd1d0362ffda42c59faf291b1c3cbe0b1c7d8a9c4630
MD5 c0de2bd9a8f20a45c301530a6c72fde2
BLAKE2b-256 16d51ab44627c7962935e4bdc8b08508fcc9b77bdaee6ef33de44dcb0369662a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb02f1175f03f210e1455c933c4cb35fbb029650c8d9a3aa9fa6fbbb2b3c28cf
MD5 eb3e1084ab9ff7f59c356517059b7656
BLAKE2b-256 d9160de27e78422855c487516cc7bbd88380395f963da28212699854ebcbabbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03f85458ddf4b8aea083e83742047b62d28a43644ca4acd5aae39726d0fd7952
MD5 c401d7df153c8722a85026c4c7827f65
BLAKE2b-256 0e542c0485f617a6915bf442fa70b2d9617da0f6162cc6d6ac2f1df2858fea0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af85a04e9201b713db95323f4f1130358e1419dea48f1e4425c413e5d368496c
MD5 82ed9b2548c7a76a84e7ec3c9babeb62
BLAKE2b-256 207262f3b6d30432f1c9cf8682249c8153a944c2ddbbf2e091559ba78b962981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5476d87b37cecc456006693769b2b4587c4fc1e16d6b3e8cb6f9832e5469b166
MD5 be6ecd5c939c2172af1622c7f1d6b40e
BLAKE2b-256 31f05ff913fb0ec954b616c55a30367eb8f90b02d6b3d82ce3d57d77ceaafd42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de995a24409894ee5d2f437c3f941de9a00ecf5bf765ea235c6ab82f138445fb
MD5 ac3db333b934d430ec95e9a1dc3f1f7f
BLAKE2b-256 e200e517df67cd9cc5165b3beceb0f44b2e2e588d0033f641b3b6179a2b9ffa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 36d4a185fa7b8707a37351d10e713302ca680a3dde009d26a4e142cde24fea3f
MD5 1786bc6127d4a6b29a8bfea8c5749180
BLAKE2b-256 796377df1c8ae97126fd893d8bbcfbe576d58b7b3876d6c0bec945bc8d2aa9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a35a81adce94593eb630ff87bcb612d6f7d5d115e1268dc597bfcf4ed62e568e
MD5 acf12f82a2826368e3d2e6a783557922
BLAKE2b-256 5eb76f6a9daec2aa223bcce56d2f2b7063c6e605aa1a10a80c0639a3f3689ad1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4671f0484ec6ae38ee22b191b6f8319588538998dc3e4dc94d6ae26227a6e38f
MD5 7f8077b6a119b0bee9041857ee882228
BLAKE2b-256 0369cea598b422d1f7254cf667543a10c61220cb1fc17eebca4a15d26a7c9bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66f6226ef509021b6a4c1425f7188a2b21227dfc1531eeb8ffb89c4e1644f9a0
MD5 f6c8ca6bf5400ec007ffc438b5e66a30
BLAKE2b-256 dc510a81c2047e8ce8c4ad87cfd193db68c0c2203a3726e83edb9ad32467411b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.1.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15d70fc7ee03093d2111895f09ca5a1b5d2d0011ad9c61b4abe6c1d0be2fdf34
MD5 22a678abaa528743a54acf0ad39ba2da
BLAKE2b-256 55e28fe0c85a6d1a7f6df93a5c73487f5cdd6e7430e9b3fa8fbf8731c71ebc40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 537f55a7a051265645c390225f144bd3269ae0c7d4148fd2f1629ad79a24634a
MD5 fb83c6d16c0909850047e6803a118f6a
BLAKE2b-256 c0193fff0aa8f620ab5612bba2683ce0855a7a0e4cad1bcbbce172abf2933949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2ecd37e5dd27e735e557c426a4a58b2c332ac20ee1c787e5afd19a9c2cab3b5
MD5 60c2f27d9845ad2e33613a24591567b8
BLAKE2b-256 98aca60805863a509ec4f214d613d87ccdc248bad98a7a6b2520762d0476ddbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for mdl_density_histogram-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 610d91869af8b5c50af5b3b6f2edc33ca587d5a335fac4d4ba0022276df5a6ee
MD5 977264e82043439698a17339f8d817db
BLAKE2b-256 9d3acdf85355cdffe5be846c4f695481d99c451401b7265d5e5e2249d0f544d3

See more details on using hashes here.

Provenance

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