Skip to main content

PPMd compression/decompression library with Gentee installer variant decoder

Project description

A fork of pyppmd that adds the Gentee PPMd-I variant decoder (Ppmd8gDecoder). Installable alongside the official pyppmd package.

Install with pip install pyppmd-gentee, then import pyppmd_gentee.

Introduction

pyppmd_gentee provides the same classes and functions as pyppmd for compressing and decompressing data using the PPMd algorithm, plus Ppmd8gDecoder — a variant of PPMd-I that implements the Gentee installer’s modified codec.

Development status

A project status is considered as Stable.

Gentee PPMd-I variant

Ppmd8gDecoder decodes data compressed with the PPMd variant used in Gentee installers. It differs from the standard PPMd-I codec in BinSumm initialization, frequency updates, and model restore behaviour.

import pyppmd_gentee

dec = pyppmd_gentee.Ppmd8gDecoder(max_order=6, mem_size=16 << 20)
result = dec.decode(compressed_data, expected_length)

For streaming across multiple files (as in GEA archives), use lightweight_reset() or reinit() between entries to manage the decoder state:

dec = pyppmd_gentee.Ppmd8gDecoder(max_order=6, mem_size=16 << 20)

first_file = dec.decode(chunk_0, length_0)

dec.lightweight_reset()  # keeps model, resets context to root
second_file = dec.decode(chunk_1, length_1)

dec.reinit(6)  # full model rebuild
third_file = dec.decode(chunk_2, length_2)

See examples/extract_stardef.py for a complete example that downloads and extracts a Gentee-based installer using Ppmd8gDecoder.

Extra input byte

PPMd algorithm and implementation is designed to use Extra input byte. The encoder will omit a last null (b”0”) byte when last byte is b”0”. You may need to provide an extra null byte when you don’t get expected size of extracted data.

You can do like as:

dec = pyppmd.Ppmd7Decoder(max_order=6, mem_size=16 << 10)
result = dec.decode(compressed, length)
if len(result) < length:
    if dec.needs_input:
        # ppmd need an extra null byte
        result += dec.decode(b"\0", length - len(result))
    else:
        result += dec.decode(b"", length - len(result))

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

pyppmd_gentee-1.4.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

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

pyppmd_gentee-1.4.0-cp314-cp314t-win_arm64.whl (51.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyppmd_gentee-1.4.0-cp314-cp314t-win_amd64.whl (53.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyppmd_gentee-1.4.0-cp314-cp314t-win32.whl (46.6 kB view details)

Uploaded CPython 3.14tWindows x86

pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (170.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (177.9 kB view details)

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

pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (175.2 kB view details)

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

pyppmd_gentee-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl (54.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (53.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_universal2.whl (89.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pyppmd_gentee-1.4.0-cp314-cp314-win_arm64.whl (50.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pyppmd_gentee-1.4.0-cp314-cp314-win_amd64.whl (52.2 kB view details)

Uploaded CPython 3.14Windows x86-64

pyppmd_gentee-1.4.0-cp314-cp314-win32.whl (46.3 kB view details)

Uploaded CPython 3.14Windows x86

pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (161.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (169.0 kB view details)

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

pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (165.8 kB view details)

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

pyppmd_gentee-1.4.0-cp314-cp314-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_universal2.whl (88.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyppmd_gentee-1.4.0-cp313-cp313-win_arm64.whl (49.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pyppmd_gentee-1.4.0-cp313-cp313-win_amd64.whl (51.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pyppmd_gentee-1.4.0-cp313-cp313-win32.whl (45.6 kB view details)

Uploaded CPython 3.13Windows x86

pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (161.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.9 kB view details)

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

pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (165.7 kB view details)

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

pyppmd_gentee-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl (53.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_universal2.whl (87.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyppmd_gentee-1.4.0-cp312-cp312-win_arm64.whl (49.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pyppmd_gentee-1.4.0-cp312-cp312-win_amd64.whl (51.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyppmd_gentee-1.4.0-cp312-cp312-win32.whl (45.6 kB view details)

Uploaded CPython 3.12Windows x86

pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (165.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (161.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.7 kB view details)

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

pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (165.6 kB view details)

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

pyppmd_gentee-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (54.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl (53.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_universal2.whl (87.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyppmd_gentee-1.4.0-cp311-cp311-win_arm64.whl (49.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pyppmd_gentee-1.4.0-cp311-cp311-win_amd64.whl (51.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pyppmd_gentee-1.4.0-cp311-cp311-win32.whl (45.6 kB view details)

Uploaded CPython 3.11Windows x86

pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (160.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.1 kB view details)

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

pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.7 kB view details)

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

pyppmd_gentee-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (54.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl (53.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_universal2.whl (87.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyppmd_gentee-1.4.0-cp310-cp310-win_arm64.whl (49.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pyppmd_gentee-1.4.0-cp310-cp310-win_amd64.whl (51.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pyppmd_gentee-1.4.0-cp310-cp310-win32.whl (45.6 kB view details)

Uploaded CPython 3.10Windows x86

pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (161.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (157.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (165.3 kB view details)

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

pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (161.6 kB view details)

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

pyppmd_gentee-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (54.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl (53.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_universal2.whl (87.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyppmd_gentee-1.4.0.tar.gz.

File metadata

  • Download URL: pyppmd_gentee-1.4.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0.tar.gz
Algorithm Hash digest
SHA256 210f44d932b2183b5d2ce97da3cae53f64dd8ffb5f5dc7c0773e52bd105f3aab
MD5 f6186a964a3899e3acd192b535973fcd
BLAKE2b-256 5c0d6c65a468de5f4f30e2b927600f5ae1b3dbf493883a4fd57160e66d343737

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0.tar.gz:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d5f7a60bc3a79958921e71782ceafd2aa3140a1ad4a92fcee98b14d9503adf31
MD5 f3dfc0b8f3934424d4c4da0d764e4e18
BLAKE2b-256 b79dc27c775e235f9e79bbcfa0a872efccb0d17ac2c84f0eb4c244fc1c40769e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9fc3462a088273acd26f91108e34a3516bbdfb0e7dda173c4f545a4aee7b86e5
MD5 4d41f27b5e244a1a190b84504bc208cc
BLAKE2b-256 7e43944d9369b85371b33c3139fe79e80116d80fc515ca705463e88fe27ee9b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3a9c37388026d7f6a2546b123bfc9c9f1681a5a254a8231c6f5f7c0b745682f9
MD5 ebfb2cd492713b3be779ce5dd5e69cc2
BLAKE2b-256 64f2558fd3e4df789d4eec76dd95a807927636a0789cd65946d883eda24ce592

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae047e5c06476da48d99ea0de13edb65d1c1a7ed5296a5edad809a39bd9e4cc5
MD5 1e24b59937f2b362bce727534cc13cdd
BLAKE2b-256 4885c3fdac3697063a5f4a89f21cbb379d963bedfd0293bdb40a7bef7e8ca6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55762334721fae65c9d84184d934efc247cc535c0a3e1e26b028bb48ed0d28e4
MD5 d316f23dc6ee7aa7aea770ebf8d3b8e6
BLAKE2b-256 c9d46b98504ba0b9717156ef5c485629cb326a2bea1e392198cb832e11d562a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9b180971048146cca4c9e18ce88521565dd8dd0b0014d8814885f4fde8228c5
MD5 edad8e12d590e11311de4b85d2be599b
BLAKE2b-256 5f7a36b7a3ca1694d671166f2dd74fd1e4208dc68c66e295462636a6da7c6635

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdd09b80451942f6f32a4ef7dcb14537b02f6554da61af67b679183cf6c99b58
MD5 b3ffe8aa6a211eb3db3314b4c936bc5e
BLAKE2b-256 a74d8bdf465c0f154d8c0015250b71bb6f882fd56737aad6e5f719c6612b92eb

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a79db680af182edb2c5722ba926b0a4987e7216c079800166bfa0e19b0f2b7a
MD5 bde62c4f385947d604069709b198a0ed
BLAKE2b-256 e89599087fd4fcce51d649fd619f7cb5d6efdc2d879785ad490a227219316c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 038ae3e53310acd15eb493030f271498884df42b69ef89df1221894dc933322b
MD5 8bd949ce99821e286bc97853593baa50
BLAKE2b-256 3a137494ce6d81b724bbb14b066d14be2a9b1c3bd47de24b7fae27c37936d0cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 eb605356253966986f94f331827674381b594fbf1484fc8f2e12ceccd78cec12
MD5 79154a5c07cd9b8c6201524ca4c34745
BLAKE2b-256 ea36d39dd747507d400f5d7b5634973a6fb578b54dccdc5d093795639bb8baaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 898c7dc57a3ccb4b81c40e3136be1cb44cc83ed789f1c9c8ce9108f79ed782e4
MD5 b7cda5d8bc8e890704f4f7745fb82d26
BLAKE2b-256 c4a4a5dc56895fb74ad25c18a08cfd657ebec0070f4c14720360d81ea2cba8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a40eb1be96de6f98359dcf1d784a41c92dfe1c468fdfc8202025ec4ca3895fd
MD5 150ae416d3798d62babab56151c0c63c
BLAKE2b-256 6e0af2ff247d53792d2f1930a99407c2a4393fa5786e998e2dff56ccb0cb69ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 41953d452ff08ef456b54af375373f466a4ef798889d2ca99e7aa27ea32c530f
MD5 65ba30d2505904b490d242039476a21c
BLAKE2b-256 2575c34544a1dd076c219b0ad47c172e52ec0939ccb6fe118812e5bcef5cd559

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e869210161533ed4c96e12066a8384e45f927b89d1ffd1ad1a4f2e73928aabc
MD5 e3160769a39491d9a2e9d57bbd19dcea
BLAKE2b-256 524b736d3e45a19169602a8c5943c1e396c45fb23e2f53f336c82e71f24b3187

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c39f6b57c5999ab1374f45784a5733b040a8ff25dcbdd152c593925b94a2d07c
MD5 366cfb7f402399435bfe6c6af0d354c2
BLAKE2b-256 f2189dd45b7eddbf948e36875daef013994f2511fc82e79adc757dbda1344f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d27ff397f57e3ae01bd0eaef04d2f4d3cdc5febf30f2c71fc170f89cb8a46fb8
MD5 96cf06f973c4c8705309a45fd2b8e071
BLAKE2b-256 483dc321e57429ff4b89bfaadfdb1f9e8b3871845bb5b120a5101225c9b9a2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b34958faa65d49df648d4898a237f4d921e3fb737c7102ddfc5e75e70ee5b3d4
MD5 278d24b8110e9eaaa567112f38fd75f0
BLAKE2b-256 c62c8285f22cc4c3ecb0425b1d6c54383af4b3c423b70f36d65a8554fda1538d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50824f45ef8880ddbb68ab78fb50aa710072a5d49baef72c7d9a9016b8b4036c
MD5 1c693e8c6edc9fa35cb23140430e8253
BLAKE2b-256 3dbe1e8a22a2cc9d13b8b0da321b49cd607ad3a027c94c1fe2dce854be576981

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2fa224ad206d89c1465ff72104f4707b93216bac5389e3b13e8d58ef2c264891
MD5 736b1a3e1b7e46f054aa58a55fdbd968
BLAKE2b-256 99179c1a24c4703ab2de22f6e5a64eb1b42b7a5a7102083c5b900a6585154889

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d5b56df08a2cfec5b460cc58756c1f4ac8951efc9a25c5136d12b2e9752783c1
MD5 89b0b804722433e6b859b9c8ac4b3dff
BLAKE2b-256 78e1f8a9378c170491a8318f5d371518512b0702acabdf43abd2bd5b6a99de84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 260e61a0c6a45dbb61a5994b3938697a6e76487142b0b35926e85ca53928b06f
MD5 ea9a7997da16987d4860aafa8b4436dc
BLAKE2b-256 b726837db727f9bfaa3b47976c1ba625c0f1f28fb51db74a69ab1118e2be7aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c8403baec8846e34fa0ef0e774613fc3435dc0fb0716ce9b9ec2f5a89ab6fb4c
MD5 a6ad7493ce7166ee0452ce984bfafa41
BLAKE2b-256 e016b21643cffea7b656ed5e5be069a29dfa4743fcbf882ba7064c231841a8ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 30e1ae2d26cc34cc610da4554374c794b9450fc720d36a96b57e1303bf88ff60
MD5 2969927324329a8c36e9cbdc94a9a8c1
BLAKE2b-256 5b941e2e06fce38fe9c3d3e485a87bc4efaa8b5fdb355348d7dd98ba0693855e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1197d84fc22e40498359e42be6f98f92e94a273ee1692ade4b5211ffd378e0af
MD5 1eba16f894f96315b7fa2f0ec429843f
BLAKE2b-256 efda1ff60e3f657478595084cd65ceac6278d915b6668fe257c19c4209612262

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 577b71ac95f01f4784143362e46bd7321b3d2bc51025884cf30ea2ef398cfffa
MD5 22adf5603c1137f7e22b2b8af3ae9a76
BLAKE2b-256 6c7b8e78bbab21de5a03ccc716c2a0d3ae88e483a3cfa197a03f3972cd2bd77a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e741072e5e2e40ddf71ae262604b44f305c2cb56a2c56fe94a6d846a1ac6833f
MD5 ae0f2edfc6c763574761e6b3db9a0c2f
BLAKE2b-256 49330b4e296d0ec9929e2f5a6298c841dc329574f654be8dbff3655f282a5695

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02333a4d7a97a6e0176c7fb8e7435c08bc014521297a65c83cd239cd8b55db92
MD5 08c40ae18c2777e434cef7fe5d98347d
BLAKE2b-256 e74fe95ebc23a714cafb1affdcb061abff46105fb34f2bc4ddfea2bd2a7d5529

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac50d862362e0eb5605e8ca122299d36c9c9b08f87e4b532e40e09b7545d3545
MD5 4d10917cb6b5e5083641cb380bb10f04
BLAKE2b-256 789c1abddd9e1de3c81d5ba4ad6f78b3e308254225168499f8426d2fe3132aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9321a440225789b7691ad673df02777649ba7b7d7d2460b63d8823cab5e2d6f7
MD5 ca7eeb61de122eb67272d9ef6e038b5c
BLAKE2b-256 85b71748780ebf35b9b7f83ce58a4962c847044008064a57e4f83698153424bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 92445a933268abffcd7c09264fbad80232d7d471777ed0b4e5cf24310195953a
MD5 b9eedea8bfee828e471f020d1d70e18a
BLAKE2b-256 1dc57c1a83ae2dd89c24a4f808534fcdf98722f2861571cdd0a8fbcfb4de215c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a7a854b9627398258c082939d20708851cd0fe458c165efcccc35da367003f03
MD5 e26140e97dd2fc85c5d2c3a98b9bdd8b
BLAKE2b-256 601e01e1456a3dfcd491dcf493c4946ef181330ffec84f27c369038d56a98fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34182d040a8103c337ad9cb3f5b1d9ca69fc9545e7d4b150c3046b46eab0a436
MD5 97a37d756781c2a87aa028528eead316
BLAKE2b-256 6d80c8d42646abd82cc6d2d4e3dc9ef65a7b3100d885a507fc3ef4e6cf8175aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 861221696d2a57be47ef145ae9b1f5b7aa38a29f58d1614f11b4b70e2d3d49af
MD5 d23652d466e50081530b8523ccc84de9
BLAKE2b-256 12fbeb45cc0a232b3abfed5c41cee6797fcee87fa86111e8b4d0508975f11752

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8f94a969df9b35061c6a33874f4e9b2352a13e1246660ca016cf0964a1b8522
MD5 7c72c88ad90f0b1b03610f9afdde72d5
BLAKE2b-256 a836c67eeaa887da3b465bd6d2541a983b81623ee878283dc67c219b4800beba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45701b4cb916b1da5deae17842199ed5c68dbd3f874473bd70ce504091a0e876
MD5 083e2c167994e20e7f707fab98ba20d0
BLAKE2b-256 0a8dd10cc0977f68aa575402dcf6efe9fdd09672d7bfd2dd11dee6ac45ff42e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5b5f6226b974393acaa9101534528fa21ef59128e260f36021f6aa96a5b6f4e
MD5 1aba96f818b18223bac3a5c202b21474
BLAKE2b-256 dd754ae3a887e9372fe2c7d68676b953370ffe4cecdbf0b507b21b61c5c6ab84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b9c5ac128c45cdabf61ea9a38fea9ccaee74b948252c32b13f2426755e4f1ee
MD5 a47e6f7611420238fce2145662ff54a1
BLAKE2b-256 77eefcd7e0cd05eb62137c73a842a7166aba0921e0d8d7a87179841d7385596e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 508fd782a4d50829a729453c2f6fee05991cc97c3ce08cde737aa94d6c31925d
MD5 757708e937068ebc1760dcd5d0cf1ef2
BLAKE2b-256 df591dbeffbe0ef36c7bac2fdc3121ed01b2841f5e921bd7557ee3dbd4e6caa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9a3c09a3091286a2867c199565341771d10349cda3cc09199311bc6e2d4aef6
MD5 13a3db72b170de811f14c0bae9bc3d79
BLAKE2b-256 63b9894e74269b7411fcc81b8bc53973c66a8341d1a2b51090f6a4c47e2daebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 374f082cff6e8767adacc735d0055d4b9406115646ff41df1e7028a75d55fbd5
MD5 6b71b83affc0e1b0e6bd43efd5e3c6f8
BLAKE2b-256 94e42ae7f1d50f242de20276c0425a06272bb8b2564030ca16cf3a7cb4f5b5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4f3c886c65d5674726a16f185106dc292cd2fa0e6522ae7c9020cca087929c8b
MD5 74d42b5ad729f082e51e0d13611759d4
BLAKE2b-256 65b637caba16921f54787503079b06772fef7eef15fa2466fce0ed74e951be96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 595d762bc72d0f1b2cad3f6165fd4edb9adf1e82c70d5a8ab72e13cd0be675d5
MD5 17160beb2f1b97364ef5f418ba1dd76f
BLAKE2b-256 b2ccffabf590acc7cdea9fb7b0f9409cc99237d11a3a6b3050d517f4317fb772

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a9195e303ccd47cbedfb3d1d0cd0a5554662770e1ad2bd087119839de0f00c96
MD5 6e24e735596e8180a89cdf1a58edf3f5
BLAKE2b-256 a5f94dd1e57aa29e99075831646512a24042fa0219b6d7c07c8c1c120307dd36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adb421b005bafeac54ea1fff3459e8a3d6e5f7fa85cf6306d2e0c1b6d24d9deb
MD5 3c14761e7c687c545a2af9c26cf30864
BLAKE2b-256 59a152754730ab21ff00ea1e3aebfa6b706b695d487996641f0e52728a259a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ede9789fd86b56c9d08301493c128cb7927319c8d0092165caaf2dc5e7576e3b
MD5 b86e0072415ac18f0842a693147f96ae
BLAKE2b-256 64c70b1e43a5c2d9ee2a87cc90c97151644a43169e33c96270a2ec5526b769f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49e53cde2a574e15d6c39d6aa3ab8009a1a93a9059ebcf8e47771d3cfd29102a
MD5 e15c9e29151f74c30329fced3f3df917
BLAKE2b-256 8a381df37efee0705b164764be0e844de0c019d96fd595d83d7e19638a4688ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9011959646ec38f948b5f223d45bf8dd40ac5b1c85c96b66644725deae09c178
MD5 5238910378ed858ddeab417d69a35f00
BLAKE2b-256 b79bac7867c178db5f0458356a6e33f2b473328bd4854eef2a4ff92720b8199a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abd0262608757d81c8ae109d80cf76d162364135588e3d70045613278c5a8ad6
MD5 45ead914979877d6de359aabeceff8a4
BLAKE2b-256 1f0bed60d0c734de328b9c7e47af73223062a4f84738a203a10e51ce47e096ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fe925c0e2e31c3b79a966246631a5bc2db34125273604141d1ada9c8e48acef
MD5 9300ac1e0b609a5c60d3d3f9fd6d8557
BLAKE2b-256 66b64d57adcea08773679e225c299acfcfc3d8de27601aa92014024b0048ceb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 081aff3570afaf5f8aa39dc70143c2aefb0f1b5755d460e022ccb8f2bd89fb92
MD5 e0dfcf512175c1af37cff48ad677d6ea
BLAKE2b-256 3b746a09f5a7c6559e2640a63ccd8168d5c73b977211212ee0664c47cc5522ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 84ea28126d80757e76258c97b4adcb99a908e041442cfc41ed08032e9cd8605d
MD5 838816437fba43a02e9b2bbaa54595f2
BLAKE2b-256 e7674f14f16f519567f0d6c5a0c51b42ec4f50256fd898383e235c86c7c5b826

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-win_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a2f1df173a3504bf490a2728a649a23d9fd0906a2c4be8b5a6bcaea7817d02e
MD5 81dbc37f84fb12771e4811f64a2b4025
BLAKE2b-256 02fa17993fcac354d23ee61b6222fb4b7822ac6f7acdfd91b31dd9c38564de9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyppmd_gentee-1.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1053f3468a44c86bc8c0fb49b44b13f65510455ac5bd27985b3ad457a5a0c8d3
MD5 0da523db5e2e410bf75482fd7a76f12c
BLAKE2b-256 d2c301a2ea23b5809b28a455e090071214e7adca90a0fa528c37d6cd3ab828a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-win32.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c93c8407160123e251f45fa30025ebe74062ac9c50c409d4b61575eeb99916c
MD5 5b6d5feabbd892a15e1d4f75b639c048
BLAKE2b-256 48bc00185d4ac280a19bf77cee69aa78a5802f7dffbdf8ce483dc12c5d5f6c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83a539497ea2296b800b447b94f5b229d9ed05a36fe5d8c4402ffe0e104aaba2
MD5 988959c892b0624c1a5f4f4c112f52b9
BLAKE2b-256 36a3fffcaee68e38553cb575de8ca722156d16b7dc40f708ac4000c14e1d8fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8144dbcd252013d00bbfa9df0bc73af6f28f513005545a2b4d82d830af064fa
MD5 72b1b2abf011ea4d83f19619690e9df6
BLAKE2b-256 9af4bcf20670304e2dc37453db370598803ff0472215e6923975371955fd45b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f01ea51ca96717c80ca33a72ee1507289b39073cb9c8780c0ae357b343bc13c8
MD5 11e77ecc43f028f404122767e8121093
BLAKE2b-256 711d48ed17d910ec344b6e02db45b5d5f4d6443cf4a41ecd35585bf8cad89240

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25f44209c6a36d96342e74e003167f9d6dd5621892e1e578c5fa1755007ecf4c
MD5 30e3486e8d741eff70b482e383ede113
BLAKE2b-256 18f9549ee7d5faa488a51c42e737cc222edcbacec9ab6a29d7a3e69e9100e74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a89f58578e117f5f8031e609ec833685df8b3eb24a82d92ef7a851aca315cb14
MD5 3ffa75d87bf0948d9832d3ec64a3bd0e
BLAKE2b-256 66bc6bccea10fc388cafaab2c29f5eb47bb5405850310de508ec68a049fbf52e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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

File details

Details for the file pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68f5c557336291b6907f83b7730fd839cdb55a3b83adb76f0f7ce38304ed9b4c
MD5 6d1356a5b9a794f99e6b1977a19893e8
BLAKE2b-256 54135b67d8ef6a5959887c7f1a6e84d6f1caa591152a6250e2c129ba7ac82283

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd_gentee-1.4.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: publish-to-pypi.yml on puigru/pyppmd-gentee

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