Skip to main content

Automatically generate qualitative color palettes with distinct colors

Project description

Qualpal The logo for Qualpal, which is a painting palette with five distinct colors.

Tests codecov PyPI version DOI App

Automatically generate qualitative color palettes with distinct, perceptually uniform colors.

Installation

Qualpal will soon be available on PyPI. In the meantime, you can install it directly from source, but note that this requires a C++ compiler.

# Core functionality
pip install git+https://github.com/jolars/qualpal-py

# With visualization support
pip install git+https://github.com/jolars/qualpal-py[viz]

Quick Start

from qualpal import Qualpal

# Generate 6 distinct colors
qp = Qualpal()
palette = qp.generate(6)

# Display colors
print(palette.hex())
# ['#f68ec8', '#233604', '#15045a', '#13cbf6', '#ebf919', '#e84123']

# Export for CSS
css = palette.to_css(prefix="theme")
# ['--theme-1: #f68ec8;', '--theme-2: #233604;', ...]

# Visualize (requires matplotlib)
palette.show(labels=True)

Key Features

  • 🎨 Smart Color Generation - Automatically selects maximally distinct colors
  • 🎯 Customizable - Control hue, saturation, lightness ranges
  • Accessible - CVD (color vision deficiency) simulation and optimization
  • 📊 Analysis - Measure perceptual distances between colors
  • 📤 Export - CSS, JSON, and matplotlib visualization
  • 📓 Jupyter - Rich HTML display in notebooks
  • 🚀 Fast - C++ backend with Python interface

Examples

Customize Color Space

# Pastel colors
qp = Qualpal(colorspace={"h": (0, 360), "s": (0.3, 0.6), "l": (0.7, 0.9)})
pastels = qp.generate(5)

CVD-Aware Palettes

# Generate palette safe for deuteranomaly
qp = Qualpal(cvd={"deutan": 0.7})
accessible = qp.generate(6)

Color Operations

from qualpal import Color

# Create and convert colors
color = Color("#ff0000")
print(color.rgb())  # (1.0, 0.0, 0.0)
print(color.hsl())  # (0.0, 1.0, 0.5)
print(color.lab())  # (53.24, 80.09, 67.20)

# Measure perceptual distance
red = Color("#ff0000")
orange = Color("#ff6600")
distance = red.distance(orange)  # 33.42

Documentation

The full documentation is available at https://jolars.github.io/qualpal-py/.

Contributing

Contributions are welcome!

Note that the main functionality comes from the underlying C++ library, which is developed and maintained at https://github.com/jolars/qualpal. So if you want to contribute to the core algorithms, please do so there.

License

Qualpal is licensed under the MIT license

Citation

If you use Qualpal in your research, please cite the following paper:

Larsson, J. (2025). Qualpal: Qualitative Color Palettes for Everyone. Journal of Open Source Software, 10(114), 8936. https://doi.org/10.21105/joss.08936

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

qualpal-1.1.0.tar.gz (414.2 kB view details)

Uploaded Source

Built Distributions

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

qualpal-1.1.0-pp311-pypy311_pp73-win_amd64.whl (699.8 kB view details)

Uploaded PyPyWindows x86-64

qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (547.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (516.2 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

qualpal-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

qualpal-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (391.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

qualpal-1.1.0-cp314-cp314t-win_arm64.whl (823.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

qualpal-1.1.0-cp314-cp314t-win_amd64.whl (725.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

qualpal-1.1.0-cp314-cp314t-win32.whl (587.9 kB view details)

Uploaded CPython 3.14tWindows x86

qualpal-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (551.6 kB view details)

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

qualpal-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

qualpal-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (476.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

qualpal-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (396.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

qualpal-1.1.0-cp314-cp314-win_arm64.whl (819.1 kB view details)

Uploaded CPython 3.14Windows ARM64

qualpal-1.1.0-cp314-cp314-win_amd64.whl (717.4 kB view details)

Uploaded CPython 3.14Windows x86-64

qualpal-1.1.0-cp314-cp314-win32.whl (583.0 kB view details)

Uploaded CPython 3.14Windows x86

qualpal-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (550.9 kB view details)

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

qualpal-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (519.5 kB view details)

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

qualpal-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (472.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

qualpal-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (392.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

qualpal-1.1.0-cp313-cp313-win_arm64.whl (797.4 kB view details)

Uploaded CPython 3.13Windows ARM64

qualpal-1.1.0-cp313-cp313-win_amd64.whl (701.5 kB view details)

Uploaded CPython 3.13Windows x86-64

qualpal-1.1.0-cp313-cp313-win32.whl (565.2 kB view details)

Uploaded CPython 3.13Windows x86

qualpal-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (550.8 kB view details)

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

qualpal-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (519.3 kB view details)

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

qualpal-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qualpal-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (392.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

qualpal-1.1.0-cp312-cp312-win_arm64.whl (797.4 kB view details)

Uploaded CPython 3.12Windows ARM64

qualpal-1.1.0-cp312-cp312-win_amd64.whl (701.5 kB view details)

Uploaded CPython 3.12Windows x86-64

qualpal-1.1.0-cp312-cp312-win32.whl (565.2 kB view details)

Uploaded CPython 3.12Windows x86

qualpal-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (549.9 kB view details)

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

qualpal-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (518.2 kB view details)

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

qualpal-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (471.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qualpal-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (391.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

qualpal-1.1.0-cp311-cp311-win_arm64.whl (797.6 kB view details)

Uploaded CPython 3.11Windows ARM64

qualpal-1.1.0-cp311-cp311-win_amd64.whl (700.1 kB view details)

Uploaded CPython 3.11Windows x86-64

qualpal-1.1.0-cp311-cp311-win32.whl (564.3 kB view details)

Uploaded CPython 3.11Windows x86

qualpal-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (547.7 kB view details)

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

qualpal-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (516.8 kB view details)

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

qualpal-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (471.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qualpal-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (390.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

qualpal-1.1.0-cp310-cp310-win_arm64.whl (796.7 kB view details)

Uploaded CPython 3.10Windows ARM64

qualpal-1.1.0-cp310-cp310-win_amd64.whl (699.1 kB view details)

Uploaded CPython 3.10Windows x86-64

qualpal-1.1.0-cp310-cp310-win32.whl (563.2 kB view details)

Uploaded CPython 3.10Windows x86

qualpal-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

qualpal-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (515.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

qualpal-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (470.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

qualpal-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (389.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

qualpal-1.1.0-cp39-cp39-win_arm64.whl (796.6 kB view details)

Uploaded CPython 3.9Windows ARM64

qualpal-1.1.0-cp39-cp39-win_amd64.whl (700.1 kB view details)

Uploaded CPython 3.9Windows x86-64

qualpal-1.1.0-cp39-cp39-win32.whl (563.1 kB view details)

Uploaded CPython 3.9Windows x86

qualpal-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

qualpal-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

qualpal-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

qualpal-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (516.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

qualpal-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (470.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

qualpal-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (389.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file qualpal-1.1.0.tar.gz.

File metadata

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

File hashes

Hashes for qualpal-1.1.0.tar.gz
Algorithm Hash digest
SHA256 5073ad3b2bbcd3985b7660a1b73ade254e6b3e52620337a12da05ed432b2e3f4
MD5 2b3d9a87a86a9a662d6c6ba662ab5521
BLAKE2b-256 a82015cd76e2c2a811579357cc778e99122738e6a125001c92a30b92b996c3d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0.tar.gz:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b801b3a303330915db79aa842c8263e4fe11e600025fc863966c78fe79a0f19f
MD5 c0fb768cf980e6b1bdc4b9eb1c022c17
BLAKE2b-256 7462222f9d1e1378bde2266ca51361af49c11b1f23d1c54f602b95d25d9c9263

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4384ba87b02e1d00d65837212ef989c819bccc4ebe7eea45c9e48db39304cef3
MD5 0077fcb954ade5283e23bb20a956bc4a
BLAKE2b-256 36ed6677dd00321cf15ef47251e7464f6522fc4ad35545f5ed92243eeabf2b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4ddbfbcc583ec6d05d9c8113f1bcf7716ce2849ff27e8c8e220c22928be587a
MD5 da5dd0707db33a5198347745de261db9
BLAKE2b-256 5889ae4293b4a7c5ee5a4d422e41b7d31dfb303354faf97f836c643d074bcb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a90f922816b1ab243b16418fa0e876d50eea8cb590b3e594af68e5ee0b69e453
MD5 6c536355402782967aafb8ac08486a2d
BLAKE2b-256 5ba7874deb9acd619aac879b193dffd161d9b2d5aaec9be13005653c19f63aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5552166dd13cdcbead99f1444f1e85d52bfef7eee6c8810e03bbae7454b15523
MD5 b1d4385595ae924734547b4b85e15e6b
BLAKE2b-256 e2f07a6dd2eca8fe6dc4fcf4b73e08c1881a83e1b1f9e20491f337c0fe80b4d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 823.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 193c830270cc8a758e99798e0dbd5c818f524a6feb6dd94d2680ebfa13c246c9
MD5 d9deb84b0de860da4f3a3df850394523
BLAKE2b-256 842870c16bd859849a1842f62962b79ec244de189dd18201bf6a60be7b62d74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 725.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 808b488940044c9314361405e2ad8fe06783d1fcc347860a7100558b2fca1479
MD5 82af06679f9750385de8cf7024833e1a
BLAKE2b-256 8fa5606427c2e157aa0d2b6d19e3804a72742f808eb4dea8db9a166b314925b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 587.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 59e9a2cad596dfffa0e3e0b8576a5e074989d16e2434059220ff10e8a2a9ca1b
MD5 1005eaa23af897667aa458c53129bf04
BLAKE2b-256 07f494563c9709bb070333df21c2ea3dedd149e994ab6ecd66d3c460a9c209ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c01367c2ee240881f49f4999be920f998a68a7d3f81a4c0077e99e49baf4202
MD5 f779cdf43407a150ffad6ba5c73f8c99
BLAKE2b-256 9823cad877138770a8bb493a122136543017ed176c7e533dba21238852a118fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ca68396cdbfbd2fac363caac98599993e7000dc5fcf682fe3a75d7183e65ad9
MD5 e206cb1e2a4c3a8fb29701f66eb0e76a
BLAKE2b-256 fa9de98a43f6cc055aa2a89d39986799f25c28e5862efea3265275209ca17a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e823c8c58531fe3859d16e02a61e3c08a9239178b1e7c970e7644483dc6fbcfd
MD5 acdfbb41b6c57aafca6cf69d0640e88b
BLAKE2b-256 9544e530de9d0327f23d358a69ebe68e9f163b109e1189948f26a90fabab9ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e848d56964d5e48408bde55aaafee886e7b46331cb7076b6cf2fab308fbc579c
MD5 59ff3d8c333e8508f92866d5ceddf767
BLAKE2b-256 05f3535d935c237c4c28b8910c2c4d54abfb7ad8b8d5067e0959c6ad346087a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95b77f6aa761c1a45fcedf20166f2237f26d4d5557c683937365d9fb17ab1c1e
MD5 19ba38961531a331174600afbf5a10e4
BLAKE2b-256 3817a0d1ab918b24b3c74ac7e594b8f2e41db69d27826bdcca9daab25a0a81ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 681713f22391db20e7aacac835fdd05c65cc44e7aaf08f84d5cc9995d63269eb
MD5 95bd816406e4f35ce02c43471c48ba4f
BLAKE2b-256 48fda2355f5f372259e9c71a0f09baa860f2bb592e2595a21300e99cddb73320

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 819.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 79182994356c6cb2b55f0817ff2fa8f0541484d2221826b22b4e3539ff6c0ce5
MD5 1b03ce5d3d96b38d3e17afd609207427
BLAKE2b-256 3dbef34d17a3ba037f6d1979b913c1f66353408758723e14b901aedc16fd4287

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 717.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7da3fbda3e9b1456ac86f4e988f48c463895d0c15419346d4bb121a70c327c9
MD5 8e9364c351d24269525ef7dc04073418
BLAKE2b-256 ef1130fb7a1cbaf1bed844db81f8b6649b86ffdf62ae80564b172e449c720fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 583.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 59acfe839fbb9fbf1b4b8c5c8d2772d5807e19bfd422237edd4ef774a85d7896
MD5 df9158153aa2a48746ca9c79c7c76895
BLAKE2b-256 c09576d28c07e13d241999ed33babf30d8c14363b4b5358d69c38f224df286bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 982a1638080486cb763da4adc92caeb6ceee0092ffb66663e38130d38ebdcb52
MD5 16483b13168221837e5f70532a8fa4d7
BLAKE2b-256 d2647d7c08b358e60bf79b7f2dc651cce81c3e6f86c3083cd506130ab9f97400

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30ed30c0903902190458f9e84d6a63b42d0076f8eb363bef3fe3bbba2294690d
MD5 383996117aa9ea00d9fb5e6b4f006fd5
BLAKE2b-256 691b93fadee7e34808fd7a671315452eb34a72128b149e443ae17bb678aa24ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a44a555d7d138ccfcb4ac8d2061610467bbcf49fa9f80f0e6fff4705f768d84
MD5 c2d53f5357ef0c232da41217925a574b
BLAKE2b-256 1077bc76fb6839ac1c535b39640b326a9923e1de71d749298fc2443585487eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fe67f2a1b10aee24a12176ffeb2d66a0c6e8171e78e57b820e566f23284c27e
MD5 4a378298e8c47bd928693e87ed1a7f5d
BLAKE2b-256 b4d631b006ab884db308dc7177fa356235f0b60bd939b1774068e7bfe7bf6ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3ab2ad32d0ba52a0a67c6bfa7083f03109195e7b741b013e121f6ceaa4622b8
MD5 63622de17d6669ad3e3798dcbf18eff3
BLAKE2b-256 2a7df9044eb191074bccde907546fd6f7a75f400d9bf0cfe2c3e499f5a9af9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1753138f07306b7d0fbf13b1480f9ad9aca18ca517a58f3d9d062fc94fc8500
MD5 88f8b565bfd711bb2e41a683e1832c4c
BLAKE2b-256 9f60cb31773c60f0a720d1ae76953d6f382829baee0dc3b0800dcd9439cbfb5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 797.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cecfad21361f9c17e396ae39499e0a42a78c6e03868ad748ee1f4d3684dfdc66
MD5 5b33d3cdccca6655273fc9600fbd53b2
BLAKE2b-256 9c694a8b59e0a6b681267b39295f99707ddf7de6ba7f5c7c9622d177640b71f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 701.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c5e76ea2c8703ac5647a84bfaa082da179b18f6d44cc516c25b8a0649aa016f6
MD5 e51c6fc7aff542cc82c99f186c02ad22
BLAKE2b-256 6dee232b8d34b0c9b8e4751ceb8ef87f849b2ae8184edd22af95c94133bc2f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 565.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 234d6cbda76721592156d8bf53c2a70ab93fc03be320cae36c7c9caab1d5c8f0
MD5 a6d0f66399d14e2a7845f13c652cc65c
BLAKE2b-256 124a635f1ff4fedbab84b1e72071301e646313dc269a63ca7222c90f3e4bcbf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65af7ee766b5050538aa6c6ff43ac4b07c04fa514b72da23e4459a52b44409da
MD5 5a64c01a2468b00c1603fc8f2cfd4f28
BLAKE2b-256 9922cd7e1d58f3e8e5cd2f961b53b40b8a5d2dce73775fb29ec6e76ce1d334f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e67b8529346e2903a20e73d05815fa1e1f140cd3190c5fb646f22700a0c25492
MD5 7234fae943875c06c4dc90780f435f52
BLAKE2b-256 9c6b02127c15f043f552446d9ba87f058d84f1e0509b715f837a766ad861ca91

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdfde37f7f2e334741f4fef66a6fec1b65f891b403cb661189b5ea4564894839
MD5 5ef539b628063d415efff62f3ea58751
BLAKE2b-256 abfd0ee3f24c3ddf5a1a36bf3d4d24e607a013fced4e3515f32772af58ea25a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd6c917c0f60c1950a4f70ee134a2052657f4a948749773ad152b5127d2d7097
MD5 1957abd53078f92393186bc2d5f3658b
BLAKE2b-256 838d4abf27f0559dc0529ceaff1d5be60621e58ea14f36d48843f658baf781b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfae252079f7a11c9773d253a4e53664c308f9b4c91963465f93bbfb793764ae
MD5 44527fb3f7f0f58b9e29270612007293
BLAKE2b-256 8752e89744a1b12b1b9d7dea3ca15eff7d3037538eb7b79dad89532dab1b4299

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5db9bbe630dd905ce8b0ec1db23a2a188d18895888c5b526514cb4df0783403
MD5 f3d93d7106e7a7fd2a9326dcc5bdd278
BLAKE2b-256 aefd26c1f7bf0fb665a23feea8f7f2bf4d9539a52ccae83654834f570d9db46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 797.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7842d605c45e1eb09c669ba66c6a6cbfdb914309a155e2ac800ebebd62f59c1c
MD5 73f509915473290b76b300815d3a25b3
BLAKE2b-256 345df6902889c8e336d310f611d3ce1de74af872e375dcc61c7a6d74fb7bae70

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 701.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15ee0825772af84edcccdbfd7a8ae85c1f53e510fe39846d1ce2953017b72bae
MD5 114663ad60953cbbac8e92fb178626bf
BLAKE2b-256 a16ed1221974ec87d7b9f35a59a9c006dbf6cc77ab8fe1b89ca153769ad07333

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 565.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4a26a87f55c27178928f93aba9e4b93df514fdf17c4d7a1399a6f9535c251564
MD5 05e89ab348528bb47315f55c88fc281d
BLAKE2b-256 59e28bb3ee40f4b7b45901c9b85516da110ca93e5e89bd7f23915e3ce4fd2e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e406c6b0380d2a03b1ced797ad21d9539343cdf38605711593f65c5266874047
MD5 eaf10249f41b977a616e61398cc91a4b
BLAKE2b-256 e93db92da2a22b4cdaca847ede4b366076f778e974a4e04ef537e57aa6f527d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13bb05959852de2515f2d0520d528c50882e7ca5ba88b900c1f7fe2bc09d51a1
MD5 47008f79028d69e2cbbad95def95adc3
BLAKE2b-256 1ff9accdacd04dfeea31c424ad63fd4f59d71ccd24edcaa1cbd892690619a18d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec00da0c9a2176980f98640712543caf3d0881a5fd78d4a8134c59f51b0b2ae2
MD5 0b7e5bd6de1d776a5a1475d0283d5033
BLAKE2b-256 5e229efbf43fda732c7ea22754c0d50517e93137f2a5974dcfeb5120e41c83a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb818fd4e11cf48a73ffa1e6061ca0523013c95d76443de342099abb132b715b
MD5 ba05706dd906627803bacf424242f76c
BLAKE2b-256 43e88aa1170331c3f95b5aab038fc93bee24ab987e30d124cf495f6a2246bf2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 112c078f59fc938180d2c03b5ff4965ac7546b250da77bf55a4dee984c0dafec
MD5 d18ee38fd63a5c6ca49aef9807851f56
BLAKE2b-256 011571cf2d90649624da37deb9c05914bbc423943a94245b10b0dd0c08cdef82

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46c302f730897959f260ff5ab2e10c62ef0439e3f12ca2d30e487f1c13f2b4b2
MD5 dcbb4b10531d7bc6873a57943b50d248
BLAKE2b-256 86e69fc8acb78bf51925104ab0d4025c133c507c4d18726de6e022f16e12e62f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 797.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 caf68163a62a175ae90034a114178fc514f8ed67c6b78f03081a9bc2b22b6c29
MD5 459cef59640c0d5df97ac3d8e8e5c6f5
BLAKE2b-256 b1b12494e67211ff29d90626d2d1a2b9dc40d758757447a4ba9fb3e0f3e8617d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 700.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e4260c1c17efd5ddb69e277e53e0de2aae3af72857ce3f91aea8b285996f01b
MD5 fc67ed43e5ec01305125f87f3f1e37fa
BLAKE2b-256 72bfe84babe00c0d9b35ac8bdfcb9c50dced65d84d251b0216bbedfddd603bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 564.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ec2808b09017c5412e4d95ce2fecd7b333a97ffcfa14f37b9c449f93ab5039fe
MD5 5f41fb5c374b8087038b4bf62728a52c
BLAKE2b-256 2345e5bf97df91abe23408e6f3f2c967f032127bcacaf4e82a69eed3e17d7759

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5f503c863af01cb13660f7813e39468cb4691b04deca1417d66df06b90c4897
MD5 aa611c7a20baa8d10aa22714eb856d78
BLAKE2b-256 ba2056350dfab1b50a26e115728a0205ebf580f8c9c7366bd69f9be97e543c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e0e29a704e837b68681cf88c7c8d882bd978ed30ea421976b994d1369f9abb2
MD5 8f2c1ea0020b80ccac745e92e732b2f4
BLAKE2b-256 999e0ac82b25bf332bc7da84ac328fe746a0039f649b514ff3edafd724c6a175

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21f9a7b8d4f8bbaee259eba5579130b2b6c228599fd84d13649dea699de5856b
MD5 d2ae790872d488ef17f9a91aa51e74de
BLAKE2b-256 b484852446558947b6949a4e693f142d195dfe72fea24d0b82231c559d6e2f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2b9b9ffae9cc280934a0711a0dcda7ae4a79291051326eaf0c6bf360f47ef3e
MD5 e7372a6b46a44c55741d2b335d8cc4be
BLAKE2b-256 eea6cd014339b3f73ba3d213fd3fc8776eb90a01021da3d87c61ed6c708408fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ec54f204d12c3f357c29f3e339b1397ead9aa6309ca9c66e3f9c8faf8ae62af
MD5 f51060dc0e388fd7ad53d75c8dbfadb2
BLAKE2b-256 db87c2797fb1aeb67320d4c372dffeb9e3c4d3595aa6493e0bda1b33accb7080

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1f4553509ab9cf1456866f56d4e5809c0c78156afe52c138ed110390a437264
MD5 a534027a9550ca58053bfc5e9b71127c
BLAKE2b-256 6a3f08298edb3336e0fd091d655ac378910986fe41b611f038bc7d0c3dd46c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 796.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ec098f9937fd3a6093f2114170cbb1901fb7c4ecb794c99c89f239d970ebe9d1
MD5 becda58645ccb076a6982367b3133254
BLAKE2b-256 d10c4143cc3c52b3a34afd89d7a6e3421cbc4f4abedcda39fd42914e8e56ad22

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 699.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79329b0d245986b8031c93ed5d354034bb44707248109bcf9a0d6f104caa9bb8
MD5 8029eb1ab7d1ced795650b0f06fd7a49
BLAKE2b-256 d0682697176bc4387dcb834f8000aae500f0986d1bb8d1dcec6b181fc75d570a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 563.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b65337cda8f63cad8cfba0de1eb75c47c89be670d229bfefcec6559367b75896
MD5 2f7e53581641800c1c3e596f3de19418
BLAKE2b-256 a51b5d4f57e3e0af58d0303f028711d30dfb32a0fdb416ffd5743beb7313d332

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24e51d5103ee1df187043064b79e49543677cc56f4dbab8d93b0a5545141171b
MD5 f42d2fa05b1028bf9ae6a30b056b7dac
BLAKE2b-256 bb0870da3cce83e3e2da7e57683719a77398bf43bbf486dad67dcd97322bfab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a11f533a7e9cf1db1f72837c06aa030c877c5681059791004fc1bec3cddf0671
MD5 bff978c4013284d203661481281d5508
BLAKE2b-256 78034eebe44b3e96fc8140282d64d2139a71efc5b5017dcffe7aa1403e0c67bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11b4d238311692db13d66fa36e4bb3f62541819dfb29a08f28b85842bd072c38
MD5 f8708fff9da86c465570849ea4c361aa
BLAKE2b-256 6aa8edc1183aea21935a5f3becfd055781c0ca80e916ce75bd3bd9641e713c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02c7caf94fadaa4fc5899744e0c7d378aa3fc0d1c05e449df1c8e064758c00af
MD5 adb4ddf63c590c7fe7ceb01bb8e9ce8b
BLAKE2b-256 62956c706538b686e9ee7b7b5225a24757e938b35ef0e2ed0d2717bf6eed6053

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1852c4639fb33dd5a342ccf278611392434b0f0b2df39d377ef7429266ebe84
MD5 0a357073e8fcc03265d8d3b665d73602
BLAKE2b-256 d2a4780761061bac0ac0a3575198c73cbe9185b2fc600213a2710eeca1bfe4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c76971a544e658f08c29fb89eeffd413379287bb18f4826c10c9f5e08301cf61
MD5 957ebc0dbf8d42ae6105328459774dd9
BLAKE2b-256 659e345e113887390a8d7a9d3f213b29dfa07b0d52779bf94477a230316f0621

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 796.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bb4bb831380d2e0a220f59d92b560b852092d9ceb50ff9d4ffc93180885dbe6c
MD5 a70fb351d6528f94347cedcbac436ca0
BLAKE2b-256 16a3718b241b503f6051f8aaccb3b78ad07d1c886931f3367f66319ef29e7685

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-win_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 700.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6aefdf01bda72bf0981e9de4a23ea80c44993864ddc55000a3991b1656ee9082
MD5 3b008d6767a8c3f1bfee7f56d26956fb
BLAKE2b-256 717f3013b9dffcc3cd5cbaaea347de964d1e8c1a6fa4c13600d8376fce9ccdf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: qualpal-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 563.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 10eaed7aa49a27e5d34862dd2733601be3af40bc6246253e35cc48118c0ed686
MD5 a85329f19998b2a8074901549dacbb16
BLAKE2b-256 2451f71189a2cbeda1a60df137adfa59bea2694ec7351f12142ad96e9b5c77ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-win32.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d998255718ceedaa47fc9ab63cc93d210b8e35dd2b669cda005a02e1adf02431
MD5 41d5ce332506cd59901099410bb5714f
BLAKE2b-256 20c5468a14bc2db441cfe7d467bbb3c14ba8b18de43cc097eb1914b31b3e72bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbb97479c959393b428c2650e8058f5af4e3f76048dd05b06aa995e9af9a025d
MD5 a406453b93cb1372208c8e28176aab46
BLAKE2b-256 e8cafeb23b791450cd6cda0cf545362472a96c4a7decb2079209b0303f73ac89

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 832d88e94a8d01bb6e813fbe10cc5e41092675ba0373017654afc16729fdc131
MD5 e341774f2a02db2799f73b40fd54eae8
BLAKE2b-256 ed56ec5491bf875ffb57b673c5705d628022441fb63b8dfd54e637d8aaece188

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8e0b617e627cf8dc1cba63f6f74543eb43617c74159a05e6cbd26a80b566816
MD5 2e1e18c126ec51271d77c9d9f0102871
BLAKE2b-256 79f65fe740669d7fbaa6f182f8345cee0c50748d2891c7dff1c9dd94fe40fcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18edef55c41a23cc65ec4cc98b6e9fe08218f61e7cdab68c19fce9feef0522ba
MD5 2c66f65f2d2e6eb8b7fe3e4e4ff21971
BLAKE2b-256 51d951ab3ff76925e5b8425543f45a9b37590bdab99e189cc6fe918230976298

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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

File details

Details for the file qualpal-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qualpal-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14955414df70862c6858ade6d70faa0b30d3b7c11d450b469250689df8083167
MD5 a9561273186dbbe505e59c64197dccaa
BLAKE2b-256 e2cae9d699e33b6586ff0000a1d3fff64e64587ff70ead9078782ba047e3e13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualpal-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on jolars/qualpal-py

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