Skip to main content

PPMd compression/decompression library

Project description

https://badge.fury.io/py/pyppmd.svg https://img.shields.io/conda/vn/conda-forge/pyppmd https://readthedocs.org/projects/pyppmd/badge/?version=latest https://dev.azure.com/miurahr/CodeBerg/_apis/build/status%2FCodeBerg-pyppmd-CI?branchName=main

Introduction

pyppmd module provides classes and functions for compressing and decompressing text data, using PPM(Prediction by partial matching) compression algorithm which has several variations of implementations. PPMd is the implementation by Dmitry Shkarin. PyPPMD use Igor Pavlov’s range coder introduced in 7-zip.

The API is similar to Python’s bz2/lzma/zlib module.

Some parts of th codes are derived from 7-zip, pyzstd and ppmd-cffi.

Development status

A project status is considered as Stable.

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-1.2.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (44.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (44.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (44.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp313-cp313-win_arm64.whl (44.7 kB view details)

Uploaded CPython 3.13 Windows ARM64

pyppmd-1.2.0-cp313-cp313-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

pyppmd-1.2.0-cp313-cp313-win32.whl (41.8 kB view details)

Uploaded CPython 3.13 Windows x86

pyppmd-1.2.0-cp313-cp313-musllinux_1_1_x86_64.whl (146.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

pyppmd-1.2.0-cp313-cp313-musllinux_1_1_aarch64.whl (142.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

pyppmd-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyppmd-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyppmd-1.2.0-cp313-cp313-macosx_10_13_universal2.whl (77.3 kB view details)

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

pyppmd-1.2.0-cp312-cp312-win_arm64.whl (44.7 kB view details)

Uploaded CPython 3.12 Windows ARM64

pyppmd-1.2.0-cp312-cp312-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyppmd-1.2.0-cp312-cp312-win32.whl (41.8 kB view details)

Uploaded CPython 3.12 Windows x86

pyppmd-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (146.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pyppmd-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (142.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pyppmd-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyppmd-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pyppmd-1.2.0-cp312-cp312-macosx_10_13_universal2.whl (77.3 kB view details)

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

pyppmd-1.2.0-cp311-cp311-win_arm64.whl (44.7 kB view details)

Uploaded CPython 3.11 Windows ARM64

pyppmd-1.2.0-cp311-cp311-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyppmd-1.2.0-cp311-cp311-win32.whl (41.8 kB view details)

Uploaded CPython 3.11 Windows x86

pyppmd-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyppmd-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (141.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyppmd-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (138.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyppmd-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyppmd-1.2.0-cp311-cp311-macosx_10_9_universal2.whl (76.8 kB view details)

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

pyppmd-1.2.0-cp310-cp310-win_arm64.whl (44.7 kB view details)

Uploaded CPython 3.10 Windows ARM64

pyppmd-1.2.0-cp310-cp310-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyppmd-1.2.0-cp310-cp310-win32.whl (41.8 kB view details)

Uploaded CPython 3.10 Windows x86

pyppmd-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (142.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyppmd-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (139.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyppmd-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (135.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyppmd-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyppmd-1.2.0-cp310-cp310-macosx_10_9_universal2.whl (76.8 kB view details)

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

pyppmd-1.2.0-cp39-cp39-win_arm64.whl (44.7 kB view details)

Uploaded CPython 3.9 Windows ARM64

pyppmd-1.2.0-cp39-cp39-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyppmd-1.2.0-cp39-cp39-win32.whl (41.8 kB view details)

Uploaded CPython 3.9 Windows x86

pyppmd-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (142.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyppmd-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (139.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyppmd-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyppmd-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (135.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyppmd-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (47.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyppmd-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyppmd-1.2.0-cp39-cp39-macosx_10_9_universal2.whl (76.7 kB view details)

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

File details

Details for the file pyppmd-1.2.0.tar.gz.

File metadata

  • Download URL: pyppmd-1.2.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-1.2.0.tar.gz
Algorithm Hash digest
SHA256 cc04af92f1d26831ec96963439dfb27c96467b5452b94436a6af696649a121fd
MD5 9776730c0c7ed76061494060d29a2a97
BLAKE2b-256 f6d7b3084ff1ac6451ef7dd93d4f7627eeb121a3bed4f8a573a81978a43ddb06

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0.tar.gz:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c012c17a53b6d9744e0514b17b0c4169c5f21fb54b4db7a0119bc2d7b3fcc609
MD5 239b85ab58d5c3355d594cf93f5073ac
BLAKE2b-256 96982ceccb56b96e93256c4dd56d3b89f580702d7696b126dc1492cfdb4887a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 064307c7fec7bdf3da63f5e28c0f1c5cb5c9bf888c1b268c6df3c131391ab345
MD5 f76434320b6d33e939888907ccd7d282
BLAKE2b-256 f0ab2291aa748951883b2bf727a01e586cd00085251c51844ecf178b909f7b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9095d8b098ce8cb5c1e404843a16e5167fb5bdebb4d6aed259d43dd2d73cfca3
MD5 695e8af9632021b0fcb9e47e4c397156
BLAKE2b-256 74c231a013c1e19404ca66c71ff0b33b6bd086718eb1a41ac6b7078e954eb3ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e252979fc5ae2492ebb46ed0eed0625a46a2cce519c4616b870eab58d77fb7
MD5 8b4838fa218d7807196ab0c79b2e4f92
BLAKE2b-256 dae4bfb0351c59e3f0f04ee1500b302353508e93d36396b2a2ce843e44eedf72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ac0960d2d0a1738af3ca3f27c6ed6eead38518d77875a47b2b4aae90ae933f4
MD5 065ea581308fea6a58da7a042f6ff3e9
BLAKE2b-256 802260e7dfd123c546fa83bd1ebb95af7cac694ba08968743a4ad9c03df1815a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0877758ffa73b2e9d2f93b698e17336a4d8acab8d9a3d17cd7960aec08347387
MD5 f38a9b5a457cd3ca3da37ede94bece9f
BLAKE2b-256 30ffa3209aa1ac30c3b51da8eab43a13a7d0bd7e0110d636ee8a8b5697738830

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bec8abbf1edb0300c0a2e4f1bbad6a96154de3e507a2b054a0b1187f1c2e4982
MD5 301ab9f308489e859879027ca5e235df
BLAKE2b-256 29ec5eef76498779a2d31230f3a383a0fa5d7e0cf0e4296362dd70fc7b236b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-win_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 625896f5da7038fe7145907b68b0b58f7c13b88ad6bbfdc1c20c05654c17fa6c
MD5 e093ba5386a302dc585eca4446fc17f9
BLAKE2b-256 58464554bc202b4ec0307de72aeb3b7ea6e8585f102d832b2d22ab0e8fc0c3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 41.8 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-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4b3249256f8a7ecdd36477f277b232a46ee2c8ca280b23faaeacb7f50cab949a
MD5 5bace7c994e3919776fa242cdfc209dc
BLAKE2b-256 07071613cbbef810e7f46a9ded1eb6c3e29ae33a15bcd545581b631a02d77b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-win32.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b43e299310e27af5a4bc505bcc87d10cfc38ae28e5ed1f6a779d811705e5ad6
MD5 bc4139f1c9746d137d430804c62be05a
BLAKE2b-256 a26516a0d31f970435bbc706d1c278d6d00dbf8cc3a1b6426b66fd6e63468b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c76b8881fc087e70338b1cccd452bd12566206587a0d0d8266ba2833be902194
MD5 2e9bce4f352eecef6932f6bccaf0e045
BLAKE2b-256 6e26fb3fe6b04c0e63454bf1c1d70f5fc628bc2dc7bb3384002e8572733580a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e3835a1951d18dd273000c870a4eb2804c20c400aa3c72231449f300cedf19
MD5 76b623d9597de6b8c4acfe2bfaa0f106
BLAKE2b-256 0bae4b0a4fe34f91cce15aa086a3d374ee21f8261445fe935bc835d6d8ba75bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5c763f2e3a011d5e96dfa0195f38accce9a14d489725a3d3641a74addbb5b72
MD5 5051d272e1d114df1ca332cde28b792c
BLAKE2b-256 c3d26cddd47f7bf94986d75695859aa38d3d7b246d01bab17a9420c0cc4b54f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d437881763ffd0d19079402f50e7f4aad5895e3cd5312d095edef0b32dac3aef
MD5 286d33771fe2b153ecb7ca87eecdd27c
BLAKE2b-256 daaa7f8198de419bff405aa77c444fbf9d300ce86cc4889e91101669439c616d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6dc00f0ce9f79e1c1c87d9998220a714ab8216873b6c996776b88ab23efe05ac
MD5 1944d94ed6c6e5d7f184d4fc7cbd3f2b
BLAKE2b-256 f6b8fb8de2664cabc12621b6eed4bb9783b41336e72e0f76ebce42e3e9f58728

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4aa8ffca1727872923d2673045975bca571eb810cf14a21d048648da5237369b
MD5 ba9a159ebfe1abb2386b862490d26274
BLAKE2b-256 61b3ffb458fde32135f7861f2de152d7bb9c778ce6466e43a4ac845e315d1897

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5768bff11936047613bcb91ee466f21779efc24360bd7953bd338b32da88577a
MD5 30a1ff0af3fdde6f113776e588062213
BLAKE2b-256 6e1e84109dfddfc2634ee882014ac572a9966373d704dcf3026c47437026fa92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-win_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42c7c9050b44b713676d255f0c212b8ff5c0463821053960c89292cf6b6221cc
MD5 ccdb1f582aae84f4d11967f4cab0ad23
BLAKE2b-256 e6a8bea53a474da009db35641023d2aaf6979a78164f5de7da1d87a64ea81700

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.8 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-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 011c813389476e84387599ad4aa834100e888c6608a6e7d6f07ea7cbac8a8e65
MD5 0b96fe4c4d0b542bba0c0b53f1806a3e
BLAKE2b-256 a51a76e29b5e3ab9d480c7ab8fa8ff300a4d0286a66d6224b58e057e51ef22e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-win32.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3caef2fb93a63d696b21e5ff72cb2955687b5dfcbed1938936334f9f7737fcd3
MD5 e8bf2ba43c84f3e39f6d815d0a18da79
BLAKE2b-256 774c34ec83e9337f7a04352739c8dfe57d0f956141c158b7cb06eca0bff19b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14ed0846c3bcee506555cd943db950d5787a6ffa1089e05deced010759ef1fe5
MD5 6f9b12463b226418fffe43892c6d8758
BLAKE2b-256 0fc60ec94bec55829d415ee3ca5f17f3e37557629cdd111d6673a5d2bc9cbda7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e955de43991346d4ccb28a74fb4c80cadecf72a6724705301fe1adb569689fe
MD5 1df6e4ff0596e2eb543fdf19936a18f7
BLAKE2b-256 a509c779028af0ed66c14aa07825d4a8a57acc5bba2227db3ad075311e203221

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abafffb3d5b292924eafd8214ad80487400cf358c4e9dc2ac6c21d2c651c5ee2
MD5 3e7719e6e297becf05a8041e52a37f12
BLAKE2b-256 c6cb08bb9ba89027135e7feed993b5a11beddedb51a00d17ddd51d14cf317414

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 874f52eae03647b653aa34476f4e23c4c30458245c0eb7aa7fb290940abbd5b9
MD5 68044680aa8b07a6e955fe831d64c8a7
BLAKE2b-256 4473f6833332f9c9c94c584c4669d700da6b7ac6291f22c1d043c9ffc22b37e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f07d5376e1f699d09fbb9139562e5b72a347100aecaa73b688fa08461b3c118
MD5 9a122ea5395fe77b6854d5646cd3d311
BLAKE2b-256 cb2a9fa89827e121e0f4f9daf948c1b5c6bbeb8c8d9f60e17a2d4eac02336e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d28cc9febcf37f2ff08b9e25d472de529e8973119c0a3279603b1915c809dd45
MD5 3850ae9ba4d505171fa8a3c5829c27e2
BLAKE2b-256 beae0d539436af52af00f2ca529018c83fc4b1c436250390c3d6d988f7292e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bf26c2def22322135fbaaa3de3c0963062c1835bd43d595478e3a2a674466a1a
MD5 d526d340b15618875dbbc3300de99104
BLAKE2b-256 2d24e9f0a85b143fe8f360d14a1b165d2afdd13e000f45c745a06d5124b561ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-win_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 46.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f29dfb7aaf4b49ebc09d726fcdeabbce1cb21e9cf3a055244bb1384b8b51dd3b
MD5 785b122b22c202d7e349b47be54a90ac
BLAKE2b-256 33bbbeb10ba2ef8311be10716ed8e07da0cfa7fd95fb05b6ec58bf57d586ae7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 41.8 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-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c577f3dadd514979255e9df6eb89a63409d0e91855bb8c0969ffcd67d5d4f124
MD5 90c58043c0ce39bd0284ca73d2784a1a
BLAKE2b-256 cd0dd7e9e2bd19ef2e35462af4bf072afb5e0b336f1925cba3bb2146fddf0a64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-win32.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5c03dd85da64a237c601dd690d8eb95951b7c2eef91b89e110eb208010c6035
MD5 eab3593490aea856d7bac472ca0627fa
BLAKE2b-256 03736c270d95c5fa20b37e4b952f1ae2742a87dca764e4c78e3d7d459a30eb8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aa40c982d1df515cd4cb366d3e1ae95ce22f3c20e6b8b2d31aa492679f7ad78c
MD5 8c1323f828303da284f8a48e1dd13f87
BLAKE2b-256 41a960e9a384efe6721a491d04406751b405a1debfffa7c6e44e54460c8117fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69fe10feb24a92e673b68aca5d945564232d09e25a4e185899e0c657096ae695
MD5 400722ef86c350b81ed4db00e6150370
BLAKE2b-256 3d9fa1034fc7450bdd0f8c44be16c7eb02b0465759055edd7cbff5b3b2e27273

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a3087d7ee6fc35db0bfecabd1df4615f2a9d58a56af61f5fc18b9ce2b379cbf
MD5 6d46a5d7015c3862ace534981f42c829
BLAKE2b-256 9766ddaf72369f3f86648095bdebfd1d58cab1ac7ea70ffd991cf794d7b1725b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c98697fea3f3baf5ffc759fd41c766d708ff3fba7379776031077527873ce4ac
MD5 f36d1a8c4e3da5902b630cdbba6644ed
BLAKE2b-256 029be603f52f3bac329d3088d85921571792eace2377800591fca5c4d6f38444

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f1ee49b88fd2e58a144b1ae0da9c2fe0dabc1962531da9475badbed6fba61fc
MD5 a6c6b23fccdb1e6544a807ba0f84ba1e
BLAKE2b-256 8bd2aac8d12427b5cf4f7f28312a47ccdab7ecead9d880b21280dff98aeff160

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1a5f0b78d68620ffb51c46c34c9e0ec02c40bb68e903e6c3ce02870c528164af
MD5 b5862f36af70a5a2008755ed80a683fa
BLAKE2b-256 20098f38b6e7224fdb3faf0c1a524bdf72f2135187098bb5f95a4203087562d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 30068ed6da301f6ba25219f96d828f3c3a80ca227647571d21c7704301e095e6
MD5 55413852031d4183e04b0be7fbc8417b
BLAKE2b-256 72a1eff9e908495dfc57d721327acc3d14793ab8efcb5dfbd38397be63348b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-win_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f19285ae4dd20bb917c4fd177f0911847feb3abada91cec5fd5d9d5f1b9f3e0
MD5 e1bf503e6c5971206c2ed128eb55bba9
BLAKE2b-256 f9b9c6db6a63e94f4735e63a460d13c6b1b9356bac3588f0d92eb75692b491ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 41.8 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-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d529c78382a2315db22c93e1c831231ee3fd2ad5a352f61496d72474558c6b00
MD5 a1d25e399333f0325d65a02921c2fec3
BLAKE2b-256 4999381dac48a0dfb71bbcd02731481d1b6c94106309029dac72d9b5944163ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-win32.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c67196af6cfcc68e72a8fffbc332d743327bb9323cb7f3709e27185e743c7272
MD5 e2c41f82891424bf4f95462bfa10da0e
BLAKE2b-256 63e9d6f9ce0f7d97e09f618d7407ddc775805934bcffae5255297129581995e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dcdd5bf53f562af2a9be76739be69c9de080dfa59a4c4a8bcc4a163f9c5cb53e
MD5 79df5565f7269b7ae46732cd95443cb9
BLAKE2b-256 746322f37747ec2c6af72b2f5cb89128818cb05ab06c7059a62db40bef862e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 416c15576924ff9d2852fbe53d162c946e0466ce79d8a03a058e6f09a54934f0
MD5 4f9758c36ca7db31881ccc082c3d52ec
BLAKE2b-256 cd7bba5e6fa06ccb544468235a3f7eb9c9f7ad8bd103be5c2c4686e8adba5ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0354919ab0f4065d76c64ad0dc21f14116651a2124cf4915b96c4e76d9caf470
MD5 f395dc4efb4627407d2e5b51f4654bd7
BLAKE2b-256 9088a31fc66dfa8e5b35ffeb49fc9ba9d07229f7a99dddd2092e281042a74551

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cd2694f43720fa1304c1fa31b8a1e7d80162f045e91569fb93473277c2747b8
MD5 161da4e1a6e1de5cb7558ff9bd688ea5
BLAKE2b-256 7c276582c889adc5b71110e7b7fbb850080f0cc62e7867ca84d7b06536da30e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc9dd8a6261152591a352d91e5e52c16b81fa760f64c361a7afb24a1f3b5e048
MD5 d7259197c6dae485f0d69bfc11cf1cd4
BLAKE2b-256 2776ee45339169e06d8288aa2016a2c5165a51eb938a6a530b8961d16f7b3640

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4a25d8b2a71e0cc6f34475c36450e905586b13d0c88fb28471655c215f370908
MD5 d645b5ded3e78fae0208b3610d9a5707
BLAKE2b-256 aaaac552da09a126934d8934ca057804c7e33e67118c31fdd1852bed0be191b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c9d0f5a903045ee6b399f5fb308e192e39f8f1f551b61441a595676d95dc76ad
MD5 2329a41d37eac8a86da8cab890cd9a9e
BLAKE2b-256 c6221726275b15d03d8118a73ef1609f0343b7230163b7f29dfb57a3cc9765a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-win_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 46.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cff27496fd164b587f150abba9524cae81629adbd2e9472f09e7b2b24b2d4939
MD5 57551d04f5467f10eeb64db22d4f9eee
BLAKE2b-256 f05b59ea3e54ddc327140d67b7528a76cd431d19ba0c2c52c123b98fa76b5f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-win_amd64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyppmd-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3674b5eba0e312b9af987ec7e6af59248f54db9a7f5ca63add5365d6c6639e9e
MD5 70c54264993f77e022102898c5ccaf92
BLAKE2b-256 2a26e8333321538e466a7abb35d9e653837931bebfcdb51b5b2ac8e00d7b639e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-win32.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af9be87228cba6b543531260f44675a23b4a1527158a44162dce186157cb13d9
MD5 de3c36337339b2bf58bb2b8ec5b48098
BLAKE2b-256 e9a0de2b6e44c0ab74d1aedf464d5c907ea36ad82f6250300cc796af463d1188

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ff515c2c3544096fe524f341c244787d6449b36692d27131bf74d5075e5c83b
MD5 454fc76e28ee1daadaf0933a7f1d785f
BLAKE2b-256 820a2b4b364c5c524c41a3061bf1c0020076b531ed262dda18dfd0faf8cea861

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc4fcd928bf6219bcddb8230a5830e33a35b684b16ca3e8d1357b17029a9ef7
MD5 79a2253122179cd6021d359366ee405d
BLAKE2b-256 bb9a6a2a906d365be1980fb24866106f8010618c89df7916923c79194d30f3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91534eb8c9c0bff9d6c6ec5eb5119a583d31bb9f8cf208d5a925b4e2293c9a7b
MD5 2b549f86ea5694dc3f8f10dde57efbc7
BLAKE2b-256 cdf81b20329419a2b042ea68c34fe99d148d73f503a0cabebdade0a351be6d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75b173bbc9164cdc6fb257d3480269cc26b1eb102ad72281a98cf90e0f7dc860
MD5 cbbbf99a7162d621f7cc4490d1598c13
BLAKE2b-256 1ebb6314dd16826258d5c941338f19d723b0d054a81351f9488291c9e2e5c227

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40bfa26fdb3332a6a8d90fe1f6e0d9f489505a014911b470d66f2f79caea6d61
MD5 580f6db5f212aa2691804a82534bed13
BLAKE2b-256 d3d8c1b8a8a8e584a8395ce607338b6ab2ca00d8558517c67015b47d2846fc72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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-1.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9b5c3284be4dccebb87d81c14b148c81e035356cd01a29889736c75672f6187d
MD5 56fab2525b906ef6f3f5c499d78555b0
BLAKE2b-256 5cd26bc7fcd8b3dc6c3fca227b247a5b30bccd5e11105b1439f7a448b35479f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyppmd-1.2.0-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: publish-to-pypi.yml on miurahr/pyppmd

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page