Skip to main content

No project description provided

Project description

🌀 pepedpid

pepedpid is a Rust implementation of Rapid, Detail-Preserving Image Downscaling (DPID), designed to be used as a Python library via rust-py bindings. It combines high performance with ease of use in Python projects, such as machine learning pipelines or image processing tasks.

🚀 Quick Start

Installation:

pip install pepeline pepedpid

Usage example:

from pepeline import read, save, ImgFormat
from pepedpid import dpid_resize,cubic_resize

# Load an image in f32 format (normalized [0,1])
img = read("test.png", format=ImgFormat.F32)

# Apply DPID resizing
img_dpid = dpid_resize(img, 512, 512, 0.5)
img_matlab_bicubic = cubic_resize(img,512,512)
# Save the result
save(img_dpid, "img_dpid.png")
save(img_matlab_bicubic, "img_matlab_bicubic.png")

⚙️ Arguments for dpid_resize

dpid_resize(input: np.ndarray, h: int, w: int, l: float) -> np.ndarray

Parameters:

  • input (np.ndarray) — input image of type float32, normalized in the range [0.0, 1.0]. Expected shape: (H, W, C), where C = 1 (grayscale) or 3 (RGB).

  • h (int) — target height of the image.

  • w (int) — target width of the image.

  • l (float) — the λ coefficient, controlling the trade-off between smoothing and detail preservation:

    • λ ≈ 0.0 — maximum smoothing, the image will be soft.

    • λ ≈ 1.0 — maximum detail preservation, resulting in a sharp image.

    • Recommended value: 0.5 — balance between smoothness and sharpness.

Returns:

  • np.ndarray — the downscaled image (float32, range [0.0, 1.0], shape (h, w, C)).

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

pepedpid-0.1.1.tar.gz (19.9 MB view details)

Uploaded Source

Built Distributions

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

pepedpid-0.1.1-cp312-cp312-win_amd64.whl (161.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pepedpid-0.1.1-cp312-cp312-win32.whl (151.3 kB view details)

Uploaded CPython 3.12Windows x86

pepedpid-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (297.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pepedpid-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pepedpid-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pepedpid-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pepedpid-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pepedpid-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (315.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pepedpid-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (261.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pepedpid-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (270.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pepedpid-0.1.1-cp311-cp311-win_amd64.whl (161.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pepedpid-0.1.1-cp311-cp311-win32.whl (151.6 kB view details)

Uploaded CPython 3.11Windows x86

pepedpid-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pepedpid-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pepedpid-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pepedpid-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pepedpid-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pepedpid-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (316.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pepedpid-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (264.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pepedpid-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (273.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pepedpid-0.1.1-cp310-cp310-win_amd64.whl (161.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pepedpid-0.1.1-cp310-cp310-win32.whl (151.7 kB view details)

Uploaded CPython 3.10Windows x86

pepedpid-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pepedpid-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pepedpid-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pepedpid-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pepedpid-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pepedpid-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (316.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pepedpid-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (264.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pepedpid-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pepedpid-0.1.1-cp39-cp39-win_amd64.whl (162.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pepedpid-0.1.1-cp39-cp39-win32.whl (152.2 kB view details)

Uploaded CPython 3.9Windows x86

pepedpid-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pepedpid-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pepedpid-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pepedpid-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pepedpid-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (298.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pepedpid-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (317.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pepedpid-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (264.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pepedpid-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl (273.3 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pepedpid-0.1.1-cp38-cp38-win_amd64.whl (162.0 kB view details)

Uploaded CPython 3.8Windows x86-64

pepedpid-0.1.1-cp38-cp38-win32.whl (151.9 kB view details)

Uploaded CPython 3.8Windows x86

pepedpid-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pepedpid-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pepedpid-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pepedpid-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pepedpid-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pepedpid-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (316.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pepedpid-0.1.1-cp38-cp38-macosx_11_0_arm64.whl (264.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pepedpid-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl (272.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file pepedpid-0.1.1.tar.gz.

File metadata

  • Download URL: pepedpid-0.1.1.tar.gz
  • Upload date:
  • Size: 19.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1.tar.gz
Algorithm Hash digest
SHA256 2a3f182877a013b827a70a8563376ba2e54206b9c49e448a7fe6c15abd8ea10d
MD5 005be5a1ced02a63a38d6a411c43311d
BLAKE2b-256 291c7870bc6cbab21872411198bc17fabafe5643cb44faf4bf03dfdc93c3975e

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4fb66b8300482e866cdbf5c791ae1e335ee1716d1f76b1007ca96c0f896f3d5
MD5 ed2793353a1654851e79897ff45d8a6b
BLAKE2b-256 9f764e8b3bd1437fd79b8463e593a728479d19e898c5870bfc522fb8eda37c64

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b97b62a2a4fdc1511ac2fa8bf6842959ecfea1f8e66e4ec809506b1225d4d37a
MD5 6a21e0ee98142f36761496991b1edfb1
BLAKE2b-256 63598b8807524c7ed60b4aa5d672030c0aababec95412a146b293db481041975

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c45970d20652acfd62f0343dc3ade8f324690da8e3cf69162feeca863388b691
MD5 d7e423711e2834417bf3a0450d98ab25
BLAKE2b-256 1d1ffc728e7aa86a62c525190a0ff7ca79d4580c49765a5c30cf63ce1cb316ac

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 336dadb047e4e1c0e01529b4fbf2ce253b864659f8599fa303098c7947068686
MD5 ba053f4c25456313bd27e63010db6c6a
BLAKE2b-256 2ad3c26f0be7d240f2a037aa440b89c1527baeec669c78fd6acfbe43328ef4cc

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56833f340f52b4e36f18f15fe2a6ad3ad0a35f6204ab20f63f8643354758dcf6
MD5 8a7eca5279c4f216760094f9f1c57ba6
BLAKE2b-256 6f28f4cb6268619521d7a9ac442a7ebd6489aa7173a9d9baa7919e45d4d95609

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05263949a8d34b54b23930b1a6a980c768f7d36faed187e709c3ac5b66d01a70
MD5 d1ac9d7de4308c5dcdd8bd1dcda8b558
BLAKE2b-256 8ae606bb3866253c238e663439e35db6f9b353dfe67574b5c17e2e23ac623392

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a30af3dcea164e23662a75abf9ff8319e732a9966d4be908c790f116d804c8a
MD5 b6bdef594f56a16310f55e9041d4029a
BLAKE2b-256 bb7629f1ccfe40a7e843afb0ca5c5e11ea01d05af8f37dce219d2533ee6d8a3f

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72e679dd1260df4ea75a6e3d3ee8abdf58f68e0445e4b1a7a82d3730b295dde7
MD5 382a82b9d687201ee7dda0ebab121539
BLAKE2b-256 d51af20c22cf6ab97f9b1ad210d45a9c43268c414c873c1fc50c2dc47e032619

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bff25c41b8bae9ded1201bbe03efd4e303c858d686f400aecc0ecb045c5209
MD5 81ac57647bb6309a6e88108391a1ec27
BLAKE2b-256 16d2e2f70a1190c03bdcde631b3284003e080220bbdf193bc6f8f557e1d5f703

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f980b321097f9f4820426d14b8004d135f9b8c7fec9acb6d59fd9ded4abb80e
MD5 4770a7e58eb13ab1e0bda2ebd7509e8a
BLAKE2b-256 0cc27ca6307e4687453d3539fc4aad52059ee181f1796ef4a08abf6080bac732

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7939ca23c7c6f9cb51ef68fb2aa6ccc3f04e808fe3db56588fc4886f63b9f3d
MD5 db93f7473ac7ad4ccc190bdec564f450
BLAKE2b-256 5ee35bbedcaa3a9262ea0490b541e954f41f298252036def6826584c0951b445

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 151.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 36268b595b400b0182f0be20597a326c2e369377a4bfbabd67977f21b167e634
MD5 19f9ebf6f988c728bd7d6f02931b82d3
BLAKE2b-256 9e0ecb20f26ec5d3163d95430bb3f0e648c34000524579efb6a9507ea106d723

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b75c8e09927626b51b75a8fd3ee58f57a19c1aa7c5a0f742f34494d64144888b
MD5 0dcff619eb0521184beff96f85481cee
BLAKE2b-256 3b7c152df3b03b768c18c24e50fa4a432aee48f42e77c8e514c628e4750bd23a

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0a5cff0506f9af16ea33bcd591b8cc767d44e3973c4b064ab46caeac2580790
MD5 56dd8cb73fa7a72141aa7a9d81b86404
BLAKE2b-256 9577fa69ea98cb7cc745b95a8c8826547f01864b005e69d20c8b6c9262bffe61

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb5c75b7a349440d118d58f1eb605e5867541bdaf0363d35fb584dd0b8fe1295
MD5 fe7367499b882b32bd48411b0eba6c6d
BLAKE2b-256 8182a9c729cb5b4008598e8f4e72c72fd196fca1b90ae2bc39b7a4a0638fbf2f

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c8577df61c27b03ef00961ed06bffaefc88055d1f0aa5b4e3783f035025d727
MD5 7eba1c04632bcfb4357207f6bcf8d383
BLAKE2b-256 a632d4590732e071380f5999954d285a91795e24757ae4ca78946360b82036c5

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8cecf512220fe05a22e01e7c52114f01f965c967d6bb5de2fcbd8c67f310682
MD5 16d5dc42121bb3c08f2063dbd61af98a
BLAKE2b-256 047fb532173e4f08c0f73676721bd0568d6feb3dabe7a4bc562b843ed1a707f1

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73652dc3d3e242684d61963d67fba3017575673da0eeba86fbea806c881d3184
MD5 3a7219ae2cdde050615ed6c05a2409da
BLAKE2b-256 fcbe2051ed068e2d825980a79b22fa5c9cd6ba92e84b4d6603ecc49f2524cb5f

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 789caee3754a2303def7732b8cbbf0060f55aaf3e1e2582572ffd1c98ec04690
MD5 5d145abe33f06207eb8f6b6a82d78afe
BLAKE2b-256 dfe9875508d1ee177e901d1cd9ded3bdc4c3f934ce9f024766c5519e70dd3a43

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95dc6f558cfc7942e857f765b5ef3209e3bd242dbd21cdec9bf4af0e58cde108
MD5 ca1c988a10a011c4a7b0b4985670ad07
BLAKE2b-256 5ed0067fa417e079116928c09435b0e1f68508b3f7eaea0afe73988475423bc0

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0492672301faa25c39148996d006284db8dc601486df2e275029112eaa7144f1
MD5 1dde4acf645aba1e152e42e82f6e94e1
BLAKE2b-256 8840dd410aeb1a15e91ba5148c00c2b311bd7e45997632ca491265aefa2f85eb

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bfbe09935ff74e9fbdf185408763621af98e7edbf7e8cd068bb19601af694376
MD5 e1016a695cec7427747f53ef31fa4ead
BLAKE2b-256 05a5c2680641be0b964df27206a790d7adec9c9b6b486df8653df32792c630fa

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d678dd81b8dc6594847dfb5723e0c413028203cb49dd7cf46edbeeb91c4dd14
MD5 cdd3292883c39bb0b5f9e442bbbce2fa
BLAKE2b-256 f7cdbe3d1e3c1916531984d792f56b149ed6baece2d320bc5db566f0f5fbe8ed

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b2c576a38a7e72b613656c307e6b3ebf83853983dd8852401f7a2f228d78bed
MD5 e8bbb7879fc36e280d0edc77b1a6ccf7
BLAKE2b-256 bd1d479007120454faeec0af0cfba694a1f837beb7d06bfea8ebf9a4e5c6a941

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94fac78b89d3af1d242ba957ef22d352f42dc27aa2a53d78aba4adcd267cf3b0
MD5 306ad7eb26a4397b08173b67f5665917
BLAKE2b-256 0790f96a474d2c927554be2148a40d17dd8ca0342b3c310e3b8d4ceead22f66b

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 330842a49cccfae756113441f755041d26715e6768e526dc207aa439c863d7d9
MD5 867a06d8c9775548f1ad1ca8be8283a0
BLAKE2b-256 d1f18ff568bfff1d953e8a06994dc8dd72516e2b37b6e94b8d61698700629d6f

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2c250c81d0f8c37b7b694d139f9757d27b385aeb00241476cb92bf3dc13e366
MD5 fe3508465f299ca1a64c370f9772b9f3
BLAKE2b-256 fc45cc7e0a4ac6079114a6217ec43835a319182568e284e2a38edd43ffefa65a

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa50be4542819c726e1f59c14664cd346bd48aa84354a091afd3709dbbcec156
MD5 1911a252ffedc9a17355edcbf8277b16
BLAKE2b-256 bda5b30f2c447861e7d5618182e0c9a45c5703ace2c404895977fe64fca81bd8

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed924d87453b6397b64af505f47c9067f4ff9cc52fb7f1c6d3686730e3d54972
MD5 a885100ab6b3775a41b9763e882e827b
BLAKE2b-256 4f228a97e526a2c4a2b5795c43ff5e410a787e3eba256a361c78f3c2b315f4f6

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c74ba724d50ef699987af0e7373005060013c4015dd2fabb6ee42e00e575f23
MD5 48f49f79fb20df7d2c759a57019fe37f
BLAKE2b-256 710f3fd0031c5c33a0056c4df4a0509478c952c41cd6e35c0827870253945fd6

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 162.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e02adba91b7e1d61314b9017c6fe40ccd3aae83cfdab3f0e896354c648c2611f
MD5 a59db77a863b7a65a7d0a358b20583d7
BLAKE2b-256 1954d3e35907b1c9ab706c78a1d4c60e2664e6106724002a9c062eff909e6bd6

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 152.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb50b9a2fe13f16b1bb7d8829a675e949160491fbc1d8375f76d376c02b3fba2
MD5 c004bb78c2f718d5c797bada3c02fa51
BLAKE2b-256 222d198a64a7c82c5610ea94fef5d92b18563fe40c1f6602e17ac30b7f620ba5

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd2de7b7d34d1f10baf0af0da0df80ea4cca876069167c1bb0965b188cd950f0
MD5 07f9caa15c66e33b07728acc4f03ee64
BLAKE2b-256 b2df7fb7be32383e27779eefe59c9cbcabad9b32cb599b64afec23fb13914b92

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 368b6f6e0efb41d91189a624795ef37e9547863cf698a985e6b6f9479f531d04
MD5 fe6390e162d889d2ec0d3cdfab41104e
BLAKE2b-256 d0067df3d71913f76e35eab2891347383e18a25432070e9ff80fbdc8d89d5e1e

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b84b4303607466338bb9befbedb952991771e0017b65208caa5c200c63c65611
MD5 eb1b48b4793126fba396e1bace56c5c8
BLAKE2b-256 a21a44902d861c71453a0f70f0c01902c0c7e7b6276d3c58383b3cb3007ceb90

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c178493d0e151ad46b6c2600a706d846a486696241ad580a75da4028d025ec2
MD5 177f0f2bb8432518190fe73e8da1b027
BLAKE2b-256 cea18bef677a4f5431d508db0e5945f8e8a02f84cc2a3227746a8c0884a52aed

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e1fa9f2057c346213b5c4b113e18821bee02642725d7db6edfcd78cbbc1f0cd
MD5 5d7c7493d44aa0d497a4f0da1ac812e0
BLAKE2b-256 0b1abef44ad9e1bf6d60f9b582c6608eb124959a3bad6cca01aa5bd80e067f92

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c577eae21c400570294a3bb8ad6dd666a30ba81a7f0fec4015f95aa90e458e5e
MD5 660bc6ee204c030461e425a940a1d6eb
BLAKE2b-256 8502cb23372fa16ebd656e085ad9b06307ad59b1668e93390ad6183364260760

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bb7f9c4fb76a5bfbbe0187f66ec5c30565465f9c9e969cf722a25cfe3b8f61a
MD5 6de0299d5896a65d0f5a118ed595f077
BLAKE2b-256 960d9a9f0191d0b8d56a6905ef1d73c7f14b9b962183e8d0536427fafba6066c

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 238095d3aca584bbe5508c5d0c02f5573a3c150b011fca3d64d9a1acf805cf63
MD5 d9a196a2e114b224499153c5b3857648
BLAKE2b-256 52b9766bf198af71c491ca0494dca77c107f5068df38a5759850f149872d9f6f

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 162.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5053a69b696bf1b24fcd40f3878acb19bd6f8eba808d2fab73873dc10b9072c6
MD5 a741617c64b9eb2fea2f02c0b0290af7
BLAKE2b-256 1d2bf366f545fc2295f1560ea1a0f49f739fd27fffdad4cdfb9d18ead9f63edc

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pepedpid-0.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 151.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d800b104dec75159ff298fe97f146efed581f3d528adc1df98c4580bd14e5555
MD5 30b0455fd96c21b2025a14a382c8b23f
BLAKE2b-256 4520b1ba5abc35eff227cbf7dde4e89eb6ec38b13e13d98aad7cab5a308692f8

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4e5be4d68a32e6ceedd7f24e8744c094732c349e28d631ba11b95de6612b821
MD5 cf78359d17a77f0737fb6f8306c1ad9b
BLAKE2b-256 feff46466f5220b31bfd9093b40f91d69c12b9b9631d227db92161bff23f48bb

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82b0136f9b7932a99d13e547af7a69f4879805fd60c59b0fbb8f5e60c030b21a
MD5 57c499235d59c3eb582fa0b243c0f345
BLAKE2b-256 812946ccbac6fd97dc5c37d3dd669ff7ea7f767b8702da3ee33ce92e639adff3

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ee0ed0e815fa1f84b521a8883ef9cc5450926c72cc0db539d91b821e4e725b5
MD5 18311864e838393f30f3332303abb896
BLAKE2b-256 a2e02b0f96dfc6e4b69ee27a4b93859053e994e022cbcece5c1c2f76e43a29d8

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb54dff0e56312f943430b9fd30a1a201553ae2e712d50e843acfb834a010582
MD5 44f7bc7d689438a8b6baf1c66f191409
BLAKE2b-256 a0490717721a9fd339cd4d4511921e6781415a88275ddb3e2b259059d709b4b5

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef0106073fa84295a471383586973f4f522eb3f91bcbe615d2a514707c068f1b
MD5 390f11a4cb0b09e9e22ed1c7442e3228
BLAKE2b-256 17ad117396854f5285f5b47a4ed4eeb7f09bca6975b6d5f2c032eb46a27ba854

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b164b222657f854aa06f019e036adb28b852a18cca5717e0be6fb8073431be2f
MD5 4f28c2267c1f53dec8ccad6df14160e4
BLAKE2b-256 f34883ac00009672159f1777c39309b53f6c305e63d14883b9b8c36152f362a4

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81c43085977c8f24aa9b258b45a268c7288d6bf7aa42bc41db03eda51ba15217
MD5 bb83f8c811e5edc2778c0dfcc0db8d89
BLAKE2b-256 de8b0827c14cd3654859e5a7177b2c22085079bd9bb647c656caec8f0b0dde6a

See more details on using hashes here.

File details

Details for the file pepedpid-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pepedpid-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29962d64aa98bbc34897cd0d1e79f89ed938c06a803f53765b9a891c4f384f1f
MD5 bfb5ffa2ccfe1444f06a840233bb0479
BLAKE2b-256 098f24195c1952bff56700224a32f77ffa3dd4a82da8deba7168eece8d772820

See more details on using hashes here.

Supported by

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