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))

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

Uploaded Source

Built Distributions

pyppmd-1.1.0-pp310-pypy310_pp73-win_amd64.whl (42.4 kB view details)

Uploaded PyPy Windows x86-64

pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (43.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (41.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyppmd-1.1.0-pp39-pypy39_pp73-win_amd64.whl (42.4 kB view details)

Uploaded PyPy Windows x86-64

pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (43.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (41.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyppmd-1.1.0-pp38-pypy38_pp73-win_amd64.whl (42.4 kB view details)

Uploaded PyPy Windows x86-64

pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (43.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (41.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyppmd-1.1.0-cp312-cp312-win_amd64.whl (46.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyppmd-1.1.0-cp312-cp312-win32.whl (41.3 kB view details)

Uploaded CPython 3.12 Windows x86

pyppmd-1.1.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.1.0-cp312-cp312-musllinux_1_1_i686.whl (135.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pyppmd-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (142.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pyppmd-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (136.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyppmd-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (46.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyppmd-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pyppmd-1.1.0-cp312-cp312-macosx_10_9_universal2.whl (76.1 kB view details)

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

pyppmd-1.1.0-cp311-cp311-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyppmd-1.1.0-cp311-cp311-win32.whl (41.3 kB view details)

Uploaded CPython 3.11 Windows x86

pyppmd-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pyppmd-1.1.0-cp311-cp311-musllinux_1_1_i686.whl (133.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pyppmd-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (141.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pyppmd-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (135.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyppmd-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (138.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyppmd-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (47.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyppmd-1.1.0-cp311-cp311-macosx_10_9_universal2.whl (75.8 kB view details)

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

pyppmd-1.1.0-cp310-cp310-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyppmd-1.1.0-cp310-cp310-win32.whl (41.3 kB view details)

Uploaded CPython 3.10 Windows x86

pyppmd-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (142.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pyppmd-1.1.0-cp310-cp310-musllinux_1_1_i686.whl (131.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pyppmd-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (139.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pyppmd-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (132.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyppmd-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (135.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyppmd-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyppmd-1.1.0-cp310-cp310-macosx_10_9_universal2.whl (75.8 kB view details)

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

pyppmd-1.1.0-cp39-cp39-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyppmd-1.1.0-cp39-cp39-win32.whl (41.3 kB view details)

Uploaded CPython 3.9 Windows x86

pyppmd-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (142.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyppmd-1.1.0-cp39-cp39-musllinux_1_1_i686.whl (131.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyppmd-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (139.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pyppmd-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (132.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyppmd-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (135.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyppmd-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyppmd-1.1.0-cp39-cp39-macosx_10_9_universal2.whl (75.8 kB view details)

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

pyppmd-1.1.0-cp38-cp38-win_amd64.whl (46.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyppmd-1.1.0-cp38-cp38-win32.whl (41.3 kB view details)

Uploaded CPython 3.8 Windows x86

pyppmd-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyppmd-1.1.0-cp38-cp38-musllinux_1_1_i686.whl (132.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyppmd-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (140.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pyppmd-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyppmd-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (134.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyppmd-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (136.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyppmd-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (46.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyppmd-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (47.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyppmd-1.1.0-cp38-cp38-macosx_10_9_universal2.whl (75.9 kB view details)

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

File details

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

File metadata

  • Download URL: pyppmd-1.1.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0.tar.gz
Algorithm Hash digest
SHA256 1d38ce2e4b7eb84b53bc8a52380b94f66ba6c39328b8800b30c2b5bf31693973
MD5 45b562f05fed42707fb6197f25f815f9
BLAKE2b-256 39c89039c7503577de08a3f4c81e7619583efdc16030da6d1a25268d3dca49c8

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 59521a3c6028da0cb5780ba16880047b00163432a6b975da2f6123adfc1b0be8
MD5 6a4e09e860fde7b39f5e2bdf07330ae7
BLAKE2b-256 e6ab02ab90e2dddf2dd55e30e64fa0509627c6e0c86b26503a6df95ae55b1e45

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9301fa39d1fb0ed09a10b4c5d7f0074113e96a1ead16ba7310bedf95f7ef660c
MD5 6917b5b8badfbf02dfb506c869b20a21
BLAKE2b-256 9f96cd3f64f6bdce091ffb6d2c1c23dc91e8b94e312a5d08cd648625555fb69e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5e4008a45910e3c8c227f6f240de67eb14454c015dc3d8060fc41e230f395d3
MD5 64347b45bc8b73fead563eb54a9b49ae
BLAKE2b-256 1a87cc2aa429688f238ae30f26b8334194a21e25643d3257c9e5b14cccdc578e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc6543e7d12ef0a1466d291d655e3d6bca59c7336dbb53b62ccdd407822fb52b
MD5 5abcd87be1f0e41dab1a1b823cc281c2
BLAKE2b-256 24669215c5dda61b3aa3259902a586dacd198b4b0793ab99228734091b5e7fa7

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad5da9f7592158e6b6b51d7cd15e536d8b23afbb4d22cba4e5744c7e0a3548b1
MD5 64404bb70e33b121176752c517f7a996
BLAKE2b-256 6ae21d5fbd6dde1234b635000072c8d1d87c7ed3acf01a3c4aa8082504d58bc5

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 650a663a591e06fb8096c213f4070b158981c8c3bf9c166ce7e4c360873f2750
MD5 835ee53d0a3b11598bd4b532f6cacd05
BLAKE2b-256 6034922d8ca6879f08d17f9771e6ef65e9491c2ebbd48934997a3ff01285e55e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f66b0d0e32b8fb8707f1d2552f13edfc2917e8ed0bdf4d62e2ce190d2c70834
MD5 52927d572a3646527ff22db275ab966a
BLAKE2b-256 fcbe33478c13fad90049c35034d9f7de658353f82fc2cd91c57efd904b71ebb7

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 435317949a6f35e54cdf08e0af6916ace427351e7664ac1593980114668f0aaa
MD5 7b5c2172f51cde3daefb93fcac04b73a
BLAKE2b-256 a9e4bf4aa2305eda1bdf530d8127e07dd324ae923e664db3aa7bf153f1d749ec

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62e57927dbcb91fb6290a41cd83743b91b9d85858efb16a0dd34fac208ee1c6b
MD5 cfe596d11f4d95990571b24e6911278c
BLAKE2b-256 ba8948b01bcab274c59548897de336b807777b8e4abbd0465ed37c04152d13e2

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cce8cd2d4ceebe2dbf41db6dfebe4c2e621314b3af8a2df2cba5eb5fa277f122
MD5 23e8f4b0c7e07e9377a45ad35e1db7fd
BLAKE2b-256 fa0e05db05c0da6a9bbb1f32de107b9f92e95ca9cb407c2082c7a0bee0a8868b

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3af4338cc48cd59ee213af61d936419774a0f8600b9aa2013cd1917b108424f0
MD5 b6be9cea61f914d754f6fbff6d437e43
BLAKE2b-256 c599c9b6e0cab4007dcc48626c3706d616dea190a7931307d5299ca81efa5281

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 897fa9ab5ff588a1000b8682835c5acf219329aa2bbfec478100e57d1204eeab
MD5 800a44d5ea0899ed279a16633d9adb38
BLAKE2b-256 20645c27d109e3773a07c87e90ffe522de78a2acf785e9ed0160ea17fb3e86dd

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 088e326b180a0469ac936849f5e1e5320118c22c9d9e673e9c8551153b839c84
MD5 21fa99558bd22ff688e64840871eb2b0
BLAKE2b-256 6b947cb65a36f2662f7fff344d77a761c6b46e6ad205d6525013ceae0e4e3cf9

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f062ca743f9b99fe88d417b4d351af9b4ff1a7cbd3d765c058bb97de976d57f1
MD5 988fa9b2ad4870826aa14db54a5e769f
BLAKE2b-256 6a22457814d5be5b8540d38825bf6295994e6c4dfd1f6a47a1381d9bf5be647d

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7ec02f1778dd68547e497625d66d7858ce10ea199146eb1d80ee23ba42954be
MD5 c0df85cfef9458829e25b32dfecf979f
BLAKE2b-256 451e1dee7c828b70b2e7d1ff7d73eaa2029bae238e34104bb27e2ac824f6dde8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 46.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c269d21e15f4175df27cf00296476097af76941f948734c642d7fb6e85b9b3b9
MD5 9423b31a0f6eb460519cb6b7fa2b25ba
BLAKE2b-256 c0a4af77129d671d6adcc6c82e1b0f03f0ad0b70c44ac70ed4c72b5c8952553b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b4fa4c27dc1314d019d921f2aa19e17f99250557e7569eeb70e180558f46af74
MD5 dd2e0ba45e60ac0bd151b172a1d0ae3b
BLAKE2b-256 04cda6571420345315f5340ac10897726303ae07260cb025dc4a60371d1e8b97

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0308e2e76ecb4c878a18c2d7a7c61dbca89b4ef138f65d5f5ead139154dcdea
MD5 d0dbef808a0ec9f63d60f42750e74e47
BLAKE2b-256 1eee4a12a4b1990f1fabb77f9ef94d2cd6c795690eec79ad135b8236dc59dbd2

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 46e8240315476f57aac23d71e6de003e122b65feba7c68f4cc46a089a82a7cd4
MD5 64767e270c0d8c7bc4f6dc93d197597a
BLAKE2b-256 5e6ea1bf750bc7ed025a06600c65917d02e3c6dea7dfa728746c7251d4910d37

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 60981ffde1fe6ade750b690b35318c41a1160a8505597fda2c39a74409671217
MD5 2ad17eda307fdaa1123c159f41664b60
BLAKE2b-256 26b2793e92c7a66de0b0b8d777c3c4df3ee5a5bec7fbaf0b69ab7374cefefa43

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6fe69b82634488ada75ba07efb90cd5866fa3d64a2c12932b6e8ae207a14e5f
MD5 2f5bbea06a7ce764d771a164ac41cb75
BLAKE2b-256 bbe0afc0fb971c893e9e72cc8d70df93c50b3f3ebb12b4bdb21f869b775faf7e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99ed42891986dac8c2ecf52bddfb777900233d867aa18849dbba6f3335600466
MD5 fa63bf113c99420e225a858bbf30ede5
BLAKE2b-256 304cf08cdf618744a3cce0da106ecf6e427b24d27b0bb1484afc40b88ca23a39

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e84b25d088d7727d50218f57f92127cdb839acd6ec3de670b6680a4cf0b2d2a
MD5 efc98b7aa84b4cfd25077abc4f68bc95
BLAKE2b-256 d970a49389a6666f670db5ecc7caa37030c9a9abfeea455c387172584551a271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37f3557ea65ee417abcdf5f49d35df00bb9f6f252639cae57aeefcd0dd596133
MD5 1023cf39448c1cbfc035ccb3aca84522
BLAKE2b-256 56a44aa1d36d98f3786c8b12ac96ac8234d7dc3c2a9e8f5174a5698f424099ec

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95f28e2ecf3a9656bd7e766aaa1162b6872b575627f18715f8b046e8617c124a
MD5 6f3d84aff35d68ea89663d09ebec7438
BLAKE2b-256 e10b45fdf5a28c810ed4d3c0cb05ae5346e2972cdbfe89f374b263e07c5b820d

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d6ef8fd818884e914bc209f7961c9400a4da50d178bba25efcef89f09ec9169
MD5 54024cdb46b21582f9ecc8f234c23a46
BLAKE2b-256 bf0b4c8e3a92c4366a9aa2d801ab4bd7ba72bd1d214da890dd91ab4d73e52878

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 969555c72e72fe2b4dd944127521a8f2211caddb5df452bbc2506b5adfac539e
MD5 36f302a87ffb8cb4991ab831b93fd443
BLAKE2b-256 8e7fd3cc8443bd2b56bc54ea205dcf73d70ef8d4342096ff33fc8719956f45e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2a9e894750f2a52b03e3bc0d7cf004d96c3475a59b1af7e797d808d7d29c9ffe
MD5 c104e412d4850f36a29de0b7225bc383
BLAKE2b-256 6de71214571442624e2314ed1ed5ba0081358335fc760fb455c3d8df83b118c6

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ce5822d8bea920856232ccfb3c26b56b28b6846ea1b0eb3d5cb9592a026649e
MD5 b88e7af46450f3f7838e641894dc9d29
BLAKE2b-256 f1d92f2e222d43ab274909e8dcd16d25cd4cc0245a8d59f93f8d6397cd4dc49f

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5938d256e8d2a2853dc3af8bb58ae6b4a775c46fc891dbe1826a0b3ceb624031
MD5 34507b56aa3e3c687aa8c5203e57c3c6
BLAKE2b-256 b4cc44e175222b31f86d0192d1d0d2c46c4bf0e933c9a06a65ff39596ad05666

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b9e0c8053e69cad6a92a0889b3324f567afc75475b4f54727de553ac4fc85780
MD5 fc8451930ba36fd0b0283fcac43e86bd
BLAKE2b-256 73b44863499e012c555f4619dbebc5b83d79818e0161d9b6fb8b1e709fb1d6c7

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec8a2447e69444703e2b273247bfcd4b540ec601780eff07da16344c62d2993d
MD5 19cdddd9cc70e0d9ecabdf2db3dd9e6c
BLAKE2b-256 317c956ebf1f07506bb59e6f13ef068d91f1bec828758d399b455b175b668f6c

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c2a3e807028159a705951f5cb5d005f94caed11d0984e59cc50506de543e22d
MD5 80d6969c99a44bdf478f51631364e2c6
BLAKE2b-256 60734f53a3c7730e1cba3f210b35ed6779e0fe302739196f43452664e079c0b5

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c520656bc12100aa6388df27dd7ac738577f38bf43f4a4bea78e1861e579ea5
MD5 0abac7ebf627dfee5e0244764210506c
BLAKE2b-256 0672b7e37aa69b7a105bcc119bc171437fbcb104aef2568b68ec8ed21a3fcdd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8d3003eebe6aabe22ba744a38a146ed58a25633420d5da882b049342b7c8036
MD5 804792f02336e86dfebd1b737f43ea19
BLAKE2b-256 509857b2c281e546f682279bd4a2577045d1f6d527c8fa2151a990b2a9bc48c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac25b3a13d1ac9b8f0bde46952e10848adc79d932f2b548a6491ef8825ae0045
MD5 e13ce1d11eb09fabee070bada74ac51e
BLAKE2b-256 f01b4894b5c71feee76d3dfccf4383b59841f9bfd27aecf912b6542a2ab1e073

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f8c51044ee4df1b004b10bf6b3c92f95ea86cfe1111210d303dca44a56e4282
MD5 28386bdc0aa792ef42e51b8cf973b06a
BLAKE2b-256 270e9db5d7c6ca3159aa0f07c0f1d5c59079176e7c57740a61aca62a39661178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 216b0d969a3f06e35fbfef979706d987d105fcb1e37b0b1324f01ee143719c4a
MD5 b2d234c6c3cc979a0702fc4acf30ffa7
BLAKE2b-256 378dc4846ab632e13ead87189f31bcc51fc825c75078d162a4a9dc8aed0a5b97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b691264f9962532aca3bba5be848b6370e596d0a2ca722c86df388be08d0568a
MD5 900800501d34f512f924de43c625be1f
BLAKE2b-256 a5f916e0adfef500b171a96ed3c95f4a4d999f99cc79de3e415146808b19c2fb

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14421030f1d46f69829698bdd960698a3b3df0925e3c470e82cfcdd4446b7bc1
MD5 a5bd060e95fc8cd315a5936be4713544
BLAKE2b-256 b18f530e47290e07d2fdedfd345fc72af08226ccdd4cc913c2b895a8396c17b6

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 775172c740133c0162a01c1a5443d0e312246881cdd6834421b644d89a634b91
MD5 58aa8b1081095f1ceffb20d0c4203207
BLAKE2b-256 f7db4e734e97541554a389e7adb2a2a5c86ad8ae35c4dafe817b12fdc317de1a

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2ea3ae0e92c0b5345cd3a4e145e01bbd79c2d95355481ea5d833b5c0cb202a2d
MD5 c5d35eee279f7678af7cca39429be2eb
BLAKE2b-256 8b9c546729489ae07c0d7c2bfe37c69ae1cd3ce35a18ab000480ea4e8f12754f

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f73cf2aaf60477eef17f5497d14b6099d8be9748390ad2b83d1c88214d050c05
MD5 b57026e1489a10baedb78597de24c693
BLAKE2b-256 097661db4268a439cfba8736b14130d928d199633fab2360a2c5043332a427d2

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 459f85e928fb968d0e34fb6191fd8c4e710012d7d884fa2b317b2e11faac7c59
MD5 1ff4d8d09a14b4c6dab1908346d0526d
BLAKE2b-256 73ac7d07d3ac6874f235554de392de08e6a369001db43cd6a619af4fbe02fb55

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4f9b51e45c11e805e74ea6f6355e98a6423b5bbd92f45aceee24761bdc3d3b8
MD5 b71f959c25ef690f45cfe29ad41c1fb4
BLAKE2b-256 b58e1f416819f0aab17de47b15b72d0e9b05e2bf795c6e28d9f403ac01398b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd20142869094bceef5ab0b160f4fff790ad1f612313a1e3393a51fc3ba5d57e
MD5 0d6d7ab43e13605c01441bed2e89e610
BLAKE2b-256 0d32f7357e0412e977ede4d63ba8bf55d014e5ea5b311818b2b0a1fee6d91baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e96cc43f44b7658be2ea764e7fa99c94cb89164dbb7cdf209178effc2168319
MD5 828206b182292aed89b896afe0a2052c
BLAKE2b-256 854aa7c172cd431c4e1ddf9be349dc4bcfea81c2a236d2fe51bbfdcd697af55a

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c5cd428715413fe55abf79dc9fc54924ba7e518053e1fc0cbdf80d0d99cf1442
MD5 053228f1be1085a91b1b31468a49013e
BLAKE2b-256 6e10b19621035862e2ae12a1ba14c5b5c0a0befb27906bc00691642d7bdbdce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f5289f32ab4ec5f96a95da51309abd1769f928b0bff62047b3bc25c878c16ccb
MD5 a87e15da55d1f7edee81050ab295c051
BLAKE2b-256 6329081b03f989deb7ce2f70461dac12ecc422e9abef6b7b7a1933945c96b06f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyppmd-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c45ce2968b7762d2cacf622b0a8f260295c6444e0883fd21a21017e3eaef16ed
MD5 6bb002677b57e95f2d597df1cf629b55
BLAKE2b-256 65461908b1ef3ba6f1450bc1a3e45a6b39cfe4b33456a312d1add0041ba1bbe4

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b6108044d943b826f97a9e79201242f61392d6c1fadba463b2069c4e6bc961e1
MD5 fd57ea0e6ce089e5674a2a39cd1df520
BLAKE2b-256 9ecd624b6582766b8e60c4356ebcfe73504c81d1395f36d0d409ff081be56e3d

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b991b4501492ec3380b605fe30bee0b61480d305e98519d81c2a658b2de01593
MD5 9df600ad5d6fc5ba0cbd47139bdbdb0d
BLAKE2b-256 fd02730882ea61653af4ef22b3621e9a03e85e61c90884fb47df4495706439f5

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 31b882584f86440b0ff7906385c9f9d9853e5799197abaafdae2245f87d03f01
MD5 a4855100a054970d7d05914161065f0f
BLAKE2b-256 43320f32a70ef3fbe287dc53fd86408e9c2f60515ab356bd728bde9fcebcb598

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 363030bbcb7902fb9eeb59ffc262581ca5dd7790ba950328242fd2491c54d99b
MD5 f15952b56d5fad4ec81deefbcb7e565e
BLAKE2b-256 df92f0a7a6e372c4bd659b5528ff179676522aa72bd8c7a071e757a490ff988e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 324a178935c140210fca2043c688b77e79281da8172d2379a06e094f41735851
MD5 583686c9fd513064be7fbdbd4c0b45e3
BLAKE2b-256 0355ebfeb5d1085f8a2bd03f498aa7e6ef9635380bf1f88badd1f3b944198ada

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f788ae8f5a9e79cd777b7969d3401b2a2b87f47abe306c2a03baca30595e9bd
MD5 ad7c961e1bf11d7e100aa0b57243288a
BLAKE2b-256 aa18f6126af21186eee49f9aa090c36acc9d2bccef4c7d077d23b2f24dfb804c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db64a4fe956a2e700a737a1d019f526e6ccece217c163b28b354a43464cc495b
MD5 4fe17509dc743ffc0e36e14589a41378
BLAKE2b-256 ec8091a13a5d0da916e7243f66839941976b2729bac1d3ca1737c20f1d59b216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7759bdb137694d4ab0cfa5ff2c75c212d90714c7da93544694f68001a0c38e12
MD5 f56f1e9a7950287a91288d62db42971e
BLAKE2b-256 dc2b242b6ba7938e77f14dadc0e5d638288b5588f0aff5e5d2c0428726606e5e

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2aeea1bf585c6b8771fa43a6abd704da92f8a46a6d0020953af15d7f3c82e48c
MD5 a985c285c2e145976b71c580dd99624e
BLAKE2b-256 b410144f811290a36d6cf5b5c8ae9b68533abe4bea160285be73435d55c361e1

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyppmd-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 46.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 80cde69013f357483abe0c3ff30c55dc5e6b4f72b068f91792ce282c51dc0bff
MD5 1e3e28dd5016df50600d65145af88fb8
BLAKE2b-256 9bd0fd3151aee441566c5894c6058a79ff2a5cd3bc2a552c803447b238ccc910

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyppmd-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6b980902797eab821299a1c9f42fa78eff2826a6b0b0f6bde8a621f9765ffd55
MD5 5ef2630dff7663d597f83a9aaf3fb32b
BLAKE2b-256 f0f87e7d55b86609dc34d5e9f32b7cf1ae930d5e46c06e06b91f7462566bb175

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5fef43bfe98ada0a608adf03b2d205e071259027ab50523954c42eef7adcef67
MD5 1f4b2fd7f2536ac60035d0b650e7ac6d
BLAKE2b-256 51972e5349006e81ca6db69284381279a3ead7585956aa5c9ef513e7219095df

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 28a1ab1ef0a31adce9b4c837b7b9acb01ce8f1f702ff3ff884f03d21c2f6b9bb
MD5 1062cc0d88d23fe2ade881bc5a9631f7
BLAKE2b-256 19cb1d979d1f394e5109cf587990b443bacca91914560ad0b29d01f887cf3f09

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5fc178a3c21af78858acbac9782fca6a927267694c452e0882c55fec6e78319
MD5 ec497fa0b9f59ec765b70937990e9b5a
BLAKE2b-256 c4d2e980a61402da0ae5ca73a5190c02b5eefcaa75d13d253ffbbcfc9296c269

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d63be8c068879194c1e7548d0c57f54a4d305ba204cd0c7499b678f0aee893ef
MD5 64b62c308139e4716f8070b1841a52ab
BLAKE2b-256 2ce6be3c21e9aa1306870eaa1c0d1fa5f0d25230e3b560d683be87ca9d595327

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 baf798e76edd9da975cc536f943756a1b1755eb8ed87371f86f76d7c16e8d034
MD5 5a11f28a87a7243e8b757f2736bf2a86
BLAKE2b-256 c3adf2de0f55a262ee9f68d5b4cccfe0fb63dd4d40e5aa940458fdb8db05c68f

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 169e5023c86ed1f7587961900f58aa78ad8a3d59de1e488a2228b5ba3de52402
MD5 daff41b6e32cc38491aec8390a616b14
BLAKE2b-256 2766c2075d3d4605c261cfbaf98ba02292a2aa29fab66c7ee765cd3473c9685a

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ad046a9525d1f52e93bc642a4cec0bf344a3ba1a15923e424e7a50f8ca003d8
MD5 6c0eac435de5c439a8d1aca173d900f7
BLAKE2b-256 d1fa2be5def5c99b64c2ac96a61ae8dacf2130406679cb608d691837b89f99c3

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e3ebcf5f95142268afa5cc46457d9dab2d29a3ccfd020a1129dd9d6bd021be1
MD5 0d187aba1eec2e4588f7b0d9e1e69731
BLAKE2b-256 4c7960fadd299d2fad59a309761917c4c79f4b3833309ff37517ca882f0f1f49

See more details on using hashes here.

File details

Details for the file pyppmd-1.1.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyppmd-1.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a04ef5fd59818b035855723af85ce008c8191d31216706ffcbeedc505efca269
MD5 43d910aad7871410c0fc6914b8624e52
BLAKE2b-256 85af5617eaa466858db608b23a8859ed7c6bae168c5cde81e7c8efaf6f621ef0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page