Skip to main content

Python pplite wrapper

Project description

This Python package provides a wrapper to the C++ package pplite.

How it works

The names of objects and methods are a spelled out version of the objects and methods in the library:

>>> import pplite
>>> x = pplite.Variable(0)
>>> y = pplite.Variable(1)
>>> z = pplite.Variable(2)
>>> cons = [x >= 0, y >= 0, z > 0, x + y + z == 1]
>>> poly = pplite.NNC_Polyhedron(spec_elem = "universe", dim_type = 3, topology = "nnc")
>>> poly.add_constraints(cons)
>>> poly
x0+x1+x2-1==0, x0>=0, x1>=0, -x0-x1+1>0
>>> poly.generators()
[p(x2), c(x0), c(x1)]

The available objects and functions from pplite Python module are:

  • Variable, Linear_Expression, Affine_Expression (defined in pplite.linear_algebra)

  • Constraint (defined in pplite.constraint)

  • Interval (defined in pplie.intervals)

  • Bounding_Box_t, Bounding_Box_f (defined in pplite.bounding_box)

  • PPliteGenerator, Point, Closure_point, Line, Ray (defined in pplite.generators)

  • NNC_Polyhedron (defined in pplite.polyhedron)

Installation

The project is available at Python Package Index and can be installed with pip. It is reccomened to create a virtual enviorment (suggested name venv-pplite) when installing the package.:

$ python3 -m venv venv-pplite
$ . ./venv-pplite/bin/activate
(venv-pplite) $ pip install pplitepy

The package should be accessed from the virtual enviroment:

(venv-pplite) $ python3
>>> import pplite

Using from Cython

All Python classes from pplpy are extension types and can be used with Cython. Most extension type carries an attribute thisptr that holds a pointer to the corresponding C++ object from ppl.

Source

You can find the latest version of the source code on github: https://github.com/ComboProblem/pplitepy

Documentation

There is minimal documentation as in pplite.

License

pplitepy is distributed under the terms of the GNU General Public License (GPL) published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. See http://www.gnu.org/licenses/.

Requirements

On Debian/Ubuntu systems the dependencies can be installed with:

$ sudo apt-get install libgmp-dev libmpfr-dev libmpc-dev libppl-dev cython3 python3-gmpy2 python3-cysignals-pari flint

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

pplitepy-0.0.55.tar.gz (34.0 kB view details)

Uploaded Source

Built Distributions

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

pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_x86_64.whl (40.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_i686.whl (37.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_aarch64.whl (40.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.4 MB view details)

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

pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (37.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.5 MB view details)

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

pplitepy-0.0.55-cp314-cp314t-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pplitepy-0.0.55-cp314-cp314t-macosx_10_15_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pplitepy-0.0.55-cp314-cp314-musllinux_1_2_x86_64.whl (40.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp314-cp314-musllinux_1_2_i686.whl (37.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp314-cp314-musllinux_1_2_aarch64.whl (40.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.2 MB view details)

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

pplitepy-0.0.55-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp314-cp314-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pplitepy-0.0.55-cp314-cp314-macosx_10_15_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pplitepy-0.0.55-cp313-cp313-musllinux_1_2_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp313-cp313-musllinux_1_2_i686.whl (36.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp313-cp313-musllinux_1_2_aarch64.whl (39.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.2 MB view details)

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

pplitepy-0.0.55-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pplitepy-0.0.55-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (36.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pplitepy-0.0.55-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (39.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pplitepy-0.0.55-cp313-cp313-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pplitepy-0.0.55-cp313-cp313-macosx_10_13_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pplitepy-0.0.55-cp312-cp312-musllinux_1_2_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp312-cp312-musllinux_1_2_i686.whl (36.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp312-cp312-musllinux_1_2_aarch64.whl (39.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.4 MB view details)

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

pplitepy-0.0.55-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pplitepy-0.0.55-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (36.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pplitepy-0.0.55-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (39.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pplitepy-0.0.55-cp312-cp312-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pplitepy-0.0.55-cp312-cp312-macosx_10_13_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pplitepy-0.0.55-cp311-cp311-musllinux_1_2_x86_64.whl (39.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp311-cp311-musllinux_1_2_i686.whl (36.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp311-cp311-musllinux_1_2_aarch64.whl (39.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.4 MB view details)

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

pplitepy-0.0.55-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pplitepy-0.0.55-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (36.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pplitepy-0.0.55-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (39.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pplitepy-0.0.55-cp311-cp311-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pplitepy-0.0.55-cp311-cp311-macosx_10_9_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pplitepy-0.0.55-cp310-cp310-musllinux_1_2_x86_64.whl (38.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp310-cp310-musllinux_1_2_i686.whl (36.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp310-cp310-musllinux_1_2_aarch64.whl (38.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.2 MB view details)

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

pplitepy-0.0.55-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pplitepy-0.0.55-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (35.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pplitepy-0.0.55-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (39.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pplitepy-0.0.55-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pplitepy-0.0.55-cp310-cp310-macosx_10_9_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pplitepy-0.0.55-cp39-cp39-musllinux_1_2_x86_64.whl (38.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pplitepy-0.0.55-cp39-cp39-musllinux_1_2_i686.whl (36.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pplitepy-0.0.55-cp39-cp39-musllinux_1_2_aarch64.whl (38.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pplitepy-0.0.55-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (40.2 MB view details)

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

pplitepy-0.0.55-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl (36.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

pplitepy-0.0.55-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (40.3 MB view details)

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

pplitepy-0.0.55-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (39.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pplitepy-0.0.55-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (35.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pplitepy-0.0.55-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (39.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pplitepy-0.0.55-cp39-cp39-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pplitepy-0.0.55-cp39-cp39-macosx_10_9_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pplitepy-0.0.55.tar.gz.

File metadata

  • Download URL: pplitepy-0.0.55.tar.gz
  • Upload date:
  • Size: 34.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pplitepy-0.0.55.tar.gz
Algorithm Hash digest
SHA256 df945a8102fefdcfa25fdc7616761db7519cf033aea769f18014819e4556e8fe
MD5 b38a64601c1f8e99462c844816d33dda
BLAKE2b-256 b0aed1e532dd6cacfbd36c88e4b470e19a762b45f284d6219fdd8f77fca68b01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55.tar.gz:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1249dce08b9d3655f170849aa640eb8438599976e0c1a3f5e36e5d66c9d49dad
MD5 62f7fc012f7f4d5865402da58f7c7da2
BLAKE2b-256 efb18fc0c51e6b09cc65a2b2063b0038922746791a343a0e89a07a831fb868c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe6b9b0b726e894d825eb69062eb10b1a276de8cb0bc4f90680e9ce888e1120d
MD5 ba4101b9741097ce8430e43f3b2b1d3c
BLAKE2b-256 a91ced51450be9e05bef75cc8a80b3d42ba87a91bddcb7901aadb223d2b12892

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0565601ebf4cd53e63e67afa487748cbec6034b02e919f529a0abd4d5db5a2b
MD5 5c4905e54d7a7850dac288b3967a00f2
BLAKE2b-256 71183a2b5c159241fe0e4a86f81f43045177756af55800bd1760b27dcc2cd0a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad88b441c7b71b6797e3be93cfa1f003c6b630b20270d3fdf5af06c64e7fe20a
MD5 7f3c4dddfb722818c15d78706d90b7ce
BLAKE2b-256 211c714935fe590ab8bc567fe1c082df28f3142bc1b7ee67c846fe6888d6ef88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2469fda00ff9a4c0f3d0a7b1a8447cb39f58482c45ce1d6b4adbb107cea2b0cd
MD5 e1282f4cadb5104a42de3da7f8f706f1
BLAKE2b-256 a4ce68f3ba59c18e0c579590cde1fd32e8194fc06ba9081b8abf6631916aa6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87e3d4497456dcb679da29d851b16f47ba7cfd323ba06abc03d1df0219d9774d
MD5 2263d0653e0b6657249948c7f246eaa4
BLAKE2b-256 c66396b459ea128aa5de67cfccb62b3d18565dc4e5aaf01c643f667ef6424a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acbcd5f24cbd82703a6e2aa1ba88533a078005ecb1cf46928e672e6704314ac8
MD5 3d1871cfb023af5168f201ad4bc4abaf
BLAKE2b-256 2db2940110405143ec05289b3e4f31c69116388d31c7d3c7bbb5c1c46e5ba90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5fdfcea40b08e8154df6372967e14b3319534d39242fc2bf3907e6bda2c4988b
MD5 04d24033607ab828d1c49d13b07cad90
BLAKE2b-256 68df6a2597d90dd288e4379decdadba62be6ec5577be3f5cf9f2fe3b29ebc61a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dfdc177a4e15b413b166ec099bdf21917ff9181db472bdefea296c683fe5f00
MD5 3909ce9d0c0deedf50e5d3ccaed6b03c
BLAKE2b-256 436d579b6737e70c0e5a37f9080f9d961302ef37fdf53ab89a87bef82b5c7089

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e1f7598ab5535aaa6ccad890495ae5547c5ac5ed0aabe4721bc91c512fbffa1
MD5 df60172f0c8c5438c0ac5fa8a2a879c0
BLAKE2b-256 98a8382e7f785febd5bfed15f4c31fbb8b976b77979da9d1cbe9594a17bdc4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08a520a0c946b73e5c9b0ca4dc17a277ba6e8bd29c3a5a74d089314ba4639d5f
MD5 fa1cd363403c52b77ceec925dc18d631
BLAKE2b-256 e38561c3372df1b98b69d7f690f7430ead4556d12d62940f43a7a1387291e2c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99dd6770f8fd9cdcc8239b6010398e17416e810860e89442cd1b88792ec15273
MD5 c69d614c06b308d047d0299144248927
BLAKE2b-256 826560a6f2a308325c5a24d0290269b1d3bb9cd9d37635a9b08991bfa21f5aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 239c7cf01f3faa4b6b4c9ace25f2f21dee70a6b981f2310fd93962e9593e5528
MD5 9495e59ac4ea385850187b7e902e2854
BLAKE2b-256 a60f5079550c494bc8f7f43eca5abe648dc4024c4b49af07c094add891598f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7a838f1100564b98db558957be90f63e7533bcca60c029721c345bbc45faf8f
MD5 e83c9b15bc7773bcd6b9f73f074c8d62
BLAKE2b-256 ee9d7d3daa40dffabc39f24194d43c40d433a43cbf01e50f0d8cbb0216c2237e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 613df2f60bd988bfe2ef40cfca2e6084ad2f2020149da686501c95e00122bb75
MD5 8163ae47fb2d01eb58733ad788fa9aab
BLAKE2b-256 94cb74a7bfcfe5e5c6281d793d6b1eb6e6037a2a6f3e7f6c66e31a2366ecab5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1fa7537414ae164efc0d3812ee39820f929a42aebe2d896a19d1aa71ec2df26e
MD5 a53946a67aa441936efc70cdb0b94722
BLAKE2b-256 35c336a7616d5c89033ffc4d143e467e9a5a0f52b79a73870d7866148b151335

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f3939b7b2298634c5bae0e1ec7442e4c0860e1434317b9a8c68a93a320fbcfc
MD5 28d68fe3bb8c8a15dc81b760a65f4cd4
BLAKE2b-256 8b193236319dc12bb0fd3f2307e7aba1fc84e1094a4882553f98b193fda601db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e013f5c024355b240dc231642524fe1904df698b4690531026230d65b38ace8c
MD5 5a1789c2dc57075640b25cca15ee58d0
BLAKE2b-256 a43cfe73248d2e8a0ff001a5e36899aa4d6406e6a33253a30fbc3f507c560cb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 600ad286006dd9e9f14e81b4ad145dcedda9e47bcbbacf2cafc7cba06af1314a
MD5 59897611ed97686128841acd5c664813
BLAKE2b-256 aaa343ff89a5229ca5cf565449f9bc033d9e8d9905bb038285dc5b49d05d43c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47281059a15155e6ce3c9f746fe298de8310f162ffd7facb1785aad48eb8dfda
MD5 b2f8efb13d21cbd1c3610bb1f05306a0
BLAKE2b-256 b9c646a2273a5e1801eb2627a276bd80deec5615abe21486cfcad75f5dd2a4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7017cba0a07dcdb7324926e2d786d97bbff0a5c52de6bd585eaafc2b14a484df
MD5 16a969cc550e89ae7fee9ac4e229d7ae
BLAKE2b-256 55120af7fad73e61bcadd584469f7af53109cca1c10b977d1d7fe655b46761f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbb6da1d726f8716c52469c609633d0a11ad9a7bc1f630b9e7cf34b2f539c0f3
MD5 817be4d632c13d716533034c8eece6b0
BLAKE2b-256 ab9e9022dad7c4a9d10b6982b796f247bb98c86f9413b1bd4c5f3fcd599774f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d29470685bf2ef890ccdff4215e6ae04fdbf0f59c17fe3d8a8075613edd37daa
MD5 88eaa81073b20ffbd1b25b26d49054f9
BLAKE2b-256 1851846de0327b225029b5d45f041a8fd47ea3da536c33f7ec70401fb0d50015

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fd35496bd5134bde098b76d6089adc0461539b83824c32d1850d07bdd02646d
MD5 f655b51b56323a813480017a5db850d9
BLAKE2b-256 ac06b6f7bc6b3a8aad383e0f65271b347a1315beecb9b476d1bac294a383271e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4e25a62a51645b4c8abb4d7a3fb086ead658edd0be79f339e38a46a8fd40389
MD5 03af177aae505d632a2aec4acb46d217
BLAKE2b-256 8b7c9577ebd0a71ce7c9f6c63f8fe4b662a938fbb2529eadaf9ca0ed21224bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b5e20f3d7bed6abd9422105a9c539c033a175cbb06047865fbde04dbd3a8d04
MD5 dd53c50e9ab13c367348b5a1da2114c3
BLAKE2b-256 c8d9dbf2fe2177457f9129067b3c5c6414407a6f3caad6bed66d7bf1ec1a8955

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a0ada998d5d43834b5b639a170727f1029463d32420c95c43e1046de9c10733c
MD5 30a3dc81d7994782136c264418a6da37
BLAKE2b-256 b024ab211fa8232575158fca38ca6968db04c497e7f1281647e29bf977b1fe79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d13bf00df297e7fae3ce37464d9df3cc38d8fb9a01e6dc81e83a836ddb342054
MD5 fd4045e17fc9bc3b961a3a9d7a10f2c6
BLAKE2b-256 d3f8c14b67c71dfcf64b81ab26d0dc6694dcc92cebab68bac78bbf2252e14c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4068a003746112e82a355b94dc10fb5997fabc39a0e553219baa40679b9f754
MD5 6537cf4ec4cda24632555723a6c7fc48
BLAKE2b-256 fcf64b596d48940354587579d9cd98651c4f4fddfd7116b229c3f6ba245ca659

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cc2b559778be5e6c90a5ada412e2459a85c0a83732081eba2c6c8c4d4512836
MD5 4cd7bc09be31c5c86dd88f41d47f80b8
BLAKE2b-256 c69a480c7e1147b91506026efaf1a23384c0e93b9aa7d586ad5ffe5e753172a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8347f6ff9b4fb54ab197cc1ac4f3c07df956d0f466eee926dcd150ebb40bd2f7
MD5 b749850babd39804008e162de0db5838
BLAKE2b-256 3ee37d681002d95f443debb2b8615529ae14b3a58c690aea8ed0970076c2db5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ee7452266b1c517a9f40317437b31ab69b5278d3fccddb98f28bab269607b183
MD5 eb0d98c7c26e058fbf6e8f870ca231dd
BLAKE2b-256 6437d89129cfac5ac61ac9b60adebdf9e51d5fd44949c0ad536847b5017b7f4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f051e3aae691def751f5eefe3233a9c4977f67de19d0dfbb15fed2ec649f7afa
MD5 106deaba500982b391a266d73c520adf
BLAKE2b-256 99cab9bda0826ef229cb715e4d227a422619802e882efcbc05339d587d21284e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2a8dd0a6614177f9f40745bdec198edb3f387aebaf8c7607e28250a48abd3eb
MD5 47efee4d114df2741ff0e410845ae35e
BLAKE2b-256 f01c9dfe566a46731bf033a25e511b83a5cbcce199c40e0715609fcfdf18cf55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2eeea647392a05905e588b99c58a7ac0d3d623f94a69b1f8609dd6a580dca357
MD5 58c6de69ed0e87272eacfef871fa5180
BLAKE2b-256 8108d0fe27371f20b9bc4ed4d3aac0f695fcdc6105118179e80449ce795275f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 998ea4fa7c19ed2e72b3492e86305b86fbbe7660a74196bd629b47714f29f88b
MD5 b27bdf9d6c847ca471c28a5b62611669
BLAKE2b-256 93b5826f91d43eb1fb84d7d6ef3f797b14bd17049b3c6a6f2cf3b418f7cde29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8af3d4d4f97e92acdc086f8e1746c5172982488d711a2a6ff04b20f63a7212d9
MD5 f569eff91f82f790fbe66e7f89995d3a
BLAKE2b-256 3904c5137027c4845e565bf3fad89b7fdb335a57f6bdc272918386256d99359c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2199a88a2669e71e7829e3f2ceaa9ea6a6ed10c4fb361a944e9fb8e1cc9b0104
MD5 ede3b96ba9eefb4ecc4cfedcf5f9cc45
BLAKE2b-256 c300cf7ad67fc8c745098fcd350450166993b035b38cd3d83baec9451913e4f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bffb16b8a87cc3128b48fed9e5e5e9e2644b51d92f541e13956373bc0f27f35
MD5 eb2506f85989f7e8f5fc5c1397e620d4
BLAKE2b-256 b053b49432056ba3270948d3e951cd1154d3c0a3d1cea6698beb7db7b3b845a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bbfe11f43cd3c2c424b3e57c07401e0e926920876e9b7a94f2cd039f10739e2
MD5 df651fc7996704089fdd6a7783578d12
BLAKE2b-256 ce575ff987b68d62ed904dff056be66ca8ba0ed25d97c74820c505f935334989

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b959b98746e085a6ac50ef1f3525a933ff1731a22d9bd693dd9ec37df91dbcec
MD5 8872c1256c61bac7220d629286307ac6
BLAKE2b-256 4b98a8d741dc967cd1233a53f8239e206b6f63975e8c2ebc431ea50cc27af755

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b30d081879ff2321b1132a7472304c37dfd19741acf4c23807b4d840db25279
MD5 7a765bfe063ed1514aa7512f394fe441
BLAKE2b-256 3d56b6ebc928f8cdd5cfeabcb5cb157bdd64624fc954eec0ae880cbf84d58ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 590dcbbdad6612fe4b98163408acd8a029ffe6cb4292a496ea16e75ac030632c
MD5 517a1b13e37d592c86e925079d2fe3a7
BLAKE2b-256 71fbcfc3365985138b5e5ecac2b347fb14c47ea94d2cbc38657eda5a7ee38019

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fa4e42b0fbaaf9e64cdae7ba400d20cfa5839e8ae2cd12aa24e1ee30e6e8ef9
MD5 5acbf3acf295c6c7b70df51abecd7316
BLAKE2b-256 238116a84709fd8668c979fde867c2eb5b57005ab0958cb461eb7752ff2198a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9ddc2fb67c05b03c1b7c099b772fb7efa65e03736330d16fe2912b9d9986d1f
MD5 cbf92d71fd82a52e1f2379fb0ec00564
BLAKE2b-256 20f61e06683ed9f8e5b062721af3f9ecfcebd2b3ede77669d1ab6ed9523db846

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00095d1967279f70eb0cd93ef84715e1a794d26bbfea5179c68477427c424ea0
MD5 19c5f1bd6fd9170bae77946fd737a306
BLAKE2b-256 7e59dd0084c71892dc46d1fcf53902a14b9699df808e651602ac58e75f8873c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1493d2be8b11bf5fea0815790b3303c22a1c773de7016bbe6e6b9ab171b6bc47
MD5 b0f3ccf88db738ee9faaaca009873c70
BLAKE2b-256 36c497fb9e683b59495854d84209ae8836a5673bbce4c9ab3ae605244065d46b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec1260fc34a8f4837a51ec7c79b0905ec39ad592f1ba5f2f4076f155f4f69502
MD5 afb35d3ff16cbc63097f98b51d1f40d8
BLAKE2b-256 034fa0f864f8b929c6e6c308faa537e2f9be370b8f0a4a3b36d13754fc674806

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb0c320aa092bebd9b52a60b3a49ec1dfc8cefafc999575da8fbcf2728a6872c
MD5 6972ccd60b5040d4a78dd639a51e5af2
BLAKE2b-256 819757952248c99e4132f5c511a3fcb644b3d7533c622b4708006d2c8b3498c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 837b9708b3ee44bdfa84c75c6da72e94de093a8e0c6e133582a558c2daec9b7f
MD5 86f9f7f95cc61dee9a0bda49f00132da
BLAKE2b-256 cc5d64fac09a7bffa77d567a31b6dfb11ea6fc9fa4fcd736046e757529c389d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9ce5b38297d730562e18dee8ea140b7dad7b2270d7a727b0a71d2e8b2d17bd5
MD5 d109b86df4e53b0d3926438b5ad4cbde
BLAKE2b-256 049ec710d4dcdc25647e84d152aed7f608a825067ada31550d6c69e5901008c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36bf310c7711457a1146c84224b8d5dc64ec2d738ab7ba845bb2ce98273d6562
MD5 3344bc54faf9ac5db4ff59eb8c0e83cc
BLAKE2b-256 36c05865c42878548da8c74714294a224b450326155d07179cb37e84cec0c931

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee98830f1849ac4d671ffdaf4c01c5c831ec3dd6205648ca11f988cfa92b42b0
MD5 25b65de35c99610a872737de0fe53ebf
BLAKE2b-256 90fe700a52f278412a94e6c3cff754c5b5797b076b648f3a87f311d8c01d2d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a59229f5fc5f4c6728bbb7bc418dde97ee5d3b83667ee93c4fbbc23a3aa59e10
MD5 3c14d2d91eec66be5848dd4cc42c9fbe
BLAKE2b-256 1e8617bf7c2d384d72e3f85f6802402b8ba5d34f88ba3c0129e3c4770ba40196

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1f1f9f47650b3721dbc7d756eec4571c3eab7b8256a3eb0a1e0aa62f0ca4ae3
MD5 36abc47b3d0a3df9667e2f3ec1293c06
BLAKE2b-256 0c91609ad4fd84a178158deb9d3d2cb77886b2bb0af3d7f3c0204f66178fa389

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3daeb5373dee613468f42b5446c572c9195f7ee921a113974e94c5b1b69195c8
MD5 b92bc59d2379946f970cdfb2f01f9b76
BLAKE2b-256 649f1a74c5b5c9f5fcbb6c4140ed5007082430a54e3fe18075f00e6d6bc3ecac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73de05cbe86edfa5d0f350e7a11e8dd896125e4ab26e8d5c2fb64779e6da0547
MD5 314e770cc8a10a3fb6c3e14953f4de3e
BLAKE2b-256 2011a305fba6ef8b4bd1e44c0afdd2c61cb759148ab9c127e79e9e22e73aa246

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2afd05b628130e65b2eccc9d61e43652b2ac15c383fcc66979b5021fffc3bfb8
MD5 87bf0fb6a68c76a599a68951ce89bb59
BLAKE2b-256 21d02bf4310eafe60303d1db80ba728434ccaff72b0e4edab635a5948334abc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 834c904c567b4e580a7fdc89e410c40b220bfeb6ff1aba42cce58858f4dd7886
MD5 9563e71a96738067113c1f860c415ce0
BLAKE2b-256 4321814d5a14dcb33652f83f0820c2a007976bf36ad133e57676a6d778cc0249

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e82c476f6717b17368f0f6ccd83e4c8dd1c27fc3c3c2da845311d33af6760344
MD5 a5e66245f234f43ee1ea8d3391410cc9
BLAKE2b-256 4554aba0f240f57912c646f83b31a16b70e5b5e645292fb4c5315bcf36abe9b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab4b63511d9864e9f8be9df36f28db041df59135ebc03dfc011adf6a90ab0f5d
MD5 ad35fa10eaa47f164670502905ec0f42
BLAKE2b-256 36d6e38eba7208311f46a88371cf88bb0a542da2dc1d69c686a54edb3de67248

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e402e07b83f26c5a910f6fae160d83dbfee14ce878fc3d680a9ed12ff95ab191
MD5 fc88a7984bf58958fc6ca730066df75c
BLAKE2b-256 141c4d13fc9fca785426c41e3d03701889befdb321b40f4e421089aa543a890a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba76344c593c92ab294228eefae53459eb5b25327b52562b424d1f35646a2b48
MD5 e402d0fb87aa974b75e8582a595a89fc
BLAKE2b-256 c53a25c20b7f6ce061e5adf913958cb38314fb2a84b3e7256a495f9b651c3086

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbcf4278af943af3f72d81ec1570d44434389cfc8334662f04bdf7882b5a4d0d
MD5 73e98925cddcb4d2725e9b58aa063224
BLAKE2b-256 1731b8aed8df7ce3c77c02ad9024fbc5b472806a224320887055689e9c764c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fdca6cadbe7ce2caed804ed0a26190a3eba4232335a2fd275a551d4a074259a9
MD5 590e6ee04ed672ba0961aa5468ca33f7
BLAKE2b-256 bb89f38769aefb2bbf285b8b511eb048b8301b4724f286172e7a7ded917088a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e2b8bc9f6c360d360f955d1ed8cd89f51c647ca7eb4b20a17acb8bc750ebc3a
MD5 935c1d697a69a657dc56b73ee76b0b46
BLAKE2b-256 28c10f96cecfe1b53123319e51e8f42d34dca52858d380e87edc00186920edb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98e3a7303becd98bd456c3f7553195916760ee631fc2b2010084950de64ee376
MD5 aad84665c162ed66e0486c2dbf9cc051
BLAKE2b-256 c3ec957d32d001308a5c99758e8a2e891c82da99738d7a55266a9c0e8e958045

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0cd40a7a4918acf7e558a71d470aee83917a52ccad9dee1ec3a850cec0c09e8
MD5 80df1301fd383db7e46361f630a1f25c
BLAKE2b-256 d2aa3998673b2bdb1d3a7a417f442e6e116e568567cee9a441d0772f89dd4564

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb695065e566902f4557088912111d51dffefdd23db4d2b315043ab93593aab1
MD5 11d173a083f9082a4b1eba891ade2847
BLAKE2b-256 ee8c2afd718786df214c5bf2afc8d679cb506dccbd1ae61d2c6ef1667f5a52b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 875be99c5b7abfe84aebaa3485dae652a00f25e7c4167ff8e2445441872b4342
MD5 8d5e4380cd894dd487f90af1f84de40d
BLAKE2b-256 7c194b959010fc822a4cd3828fc53f6d63fa8e0a28b253869f46891e61edc7c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

File details

Details for the file pplitepy-0.0.55-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pplitepy-0.0.55-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c88ea3dda422f5ab7b707c18d75d5339c1d3ed8e939ce5932d26e79ddeb2600a
MD5 14752c78ef78b92177da685b7081c72c
BLAKE2b-256 9a0b09eaebbc3c2bced0fb104adcf5dbe39eecbb52f484839d4422e8d65a46b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pplitepy-0.0.55-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: dist.yml on ComboProblem/pplitepy

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

Supported by

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