Skip to main content

A Proximal Interior Point Quadratic Programming solver

Project description

PIQP

DOI Preprint Funding

Docs License PyPI - downloads Conda - downloads

PIQP is a Proximal Interior Point Quadratic Programming solver, which can solve dense and sparse quadratic programs of the form

$$ \begin{aligned} \min_{x} \quad & \frac{1}{2} x^\top P x + c^\top x \ \text {s.t.}\quad & Ax=b, \ & h_l \leq Gx \leq h_u, \ & x_l \leq x \leq x_u, \end{aligned} $$

Combining an infeasible interior point method with the proximal method of multipliers, the algorithm can handle ill-conditioned convex QP problems without the need for linear independence of the constraints.

Features

  • PIQP is written in header only C++ 14 leveraging the Eigen library for vectorized linear algebra.
  • Dense and sparse problem formulations are supported. For small dense problems, vectorized instructions and cache locality can be exploited more efficiently.
  • Special backend for multistage optimization problems.
  • Allocation free problem updates and re-solves.
  • Open source under the BSD 2-Clause License.

Interfaces

PIQP support a wide range of interfaces including

  • C/C++ (with Eigen support)
  • Python
  • Matlab/Octave
  • R

Credits

PIQP is developed by the following people:

  • Roland Schwan (main developer)
  • Yuning Jiang (methods and maths)
  • Daniel Kuhn (methods and maths)
  • Colin N. Jones (methods and maths)

All contributors are affiliated with the Laboratoire d'Automatique and/or the Risk Analytics and Optimization Chair at EPFL, Switzerland.

This work was supported by the Swiss National Science Foundation under the NCCR Automation (grant agreement 51NF40_180545).

PIQP is an adapted implementation of work by Spyridon Pougkakiotis and Jacek Gondzio, and is built on the following open-source libraries:

  • Eigen: It's the work horse under the hood, responsible for producing optimized numerical linear algebra code.
  • Blasfeo: Used in the sparse_multistage KKT solver backend.
  • ProxSuite: The code structure (folder/namespace structure, etc.), some utility functions/helper macros, and the instruction set optimized python bindings are based on ProxSuite.
  • SuiteSparse - LDL (modified version): Used for solving linear systems in the sparse solver.
  • pybind11: Used for generating the python bindings.
  • cpu_features: Used for run-time instruction set detection in the interface bindings.
  • OSQP: The C and Matlab interface is inspired by OSQP.
  • Clarabel: Parts of the iterative refinement scheme are inspired by Clarabel's implementation.

Citing our Work

If you found PIQP useful in your scientific work, we encourage you to cite our main paper:

@INPROCEEDINGS{schwan2023piqp,
  author={Schwan, Roland and Jiang, Yuning and Kuhn, Daniel and Jones, Colin N.},
  booktitle={2023 62nd IEEE Conference on Decision and Control (CDC)}, 
  title={{PIQP}: A Proximal Interior-Point Quadratic Programming Solver}, 
  year={2023},
  volume={},
  number={},
  pages={1088-1093},
  doi={10.1109/CDC49753.2023.10383915}
}

In case you are specifically using the sparse_multistage KKT solver backend, we encourage you to cite the specific paper:

@misc{schwan2025piqp_multistage,
  author={Schwan, Roland and Kuhn, Daniel and Jones, Colin N.},
  title={Exploiting Multistage Optimization Structure in Proximal Solvers}, 
  year={2025},
  eprint = {arXiv:2503.12664}
}

The benchmarks are available in the following repos: piqp_benchmarks, piqp_multistage_benchmarks

License

PIQP is licensed under the BSD 2-Clause License.

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

piqp-0.6.1.tar.gz (29.1 MB view details)

Uploaded Source

Built Distributions

piqp-0.6.1-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

piqp-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

piqp-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (392.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

piqp-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp313-cp313-macosx_11_0_arm64.whl (541.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

piqp-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

piqp-0.6.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

piqp-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

piqp-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (391.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

piqp-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (541.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

piqp-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

piqp-0.6.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

piqp-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

piqp-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (392.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

piqp-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (621.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (539.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

piqp-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

piqp-0.6.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

piqp-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

piqp-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (389.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

piqp-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (537.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

piqp-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

piqp-0.6.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

piqp-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

piqp-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (389.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

piqp-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp39-cp39-macosx_11_0_arm64.whl (537.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

piqp-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

piqp-0.6.1-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

piqp-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

piqp-0.6.1-cp38-cp38-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

piqp-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

piqp-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

piqp-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (389.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

piqp-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

piqp-0.6.1-cp38-cp38-macosx_11_0_arm64.whl (536.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

piqp-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file piqp-0.6.1.tar.gz.

File metadata

  • Download URL: piqp-0.6.1.tar.gz
  • Upload date:
  • Size: 29.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1.tar.gz
Algorithm Hash digest
SHA256 49432bea120cf4ec465822a360574f2daccb0cef5726ce78300a84d8b745d9c7
MD5 016b809f6dcb80d63b0735eab235a8c2
BLAKE2b-256 02ff793150d30f9f1d5e39c5b8b14f1581b997295bea33978f8e77d08bad91a0

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3df011e46c83da78952f9106ef4bb9ae1121ee029de1696b8e88b12fda7f436
MD5 6c6f7dd27c37867dc7b2b0f7b62b90b4
BLAKE2b-256 9e8f5bbf5e14c238101805aaef95fb634c0180c6094465c6903c0c477f0f5af8

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 816ce75850dc5619019352fad907f5efefb90741fc7293742bc4a4b6ba6f5ea4
MD5 19f535336cc064eb91837306104253b6
BLAKE2b-256 88353762ed7c0752133040246c043fddc8694d8a6dc855889c444fb28d36287e

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7d370dda80dc235fe256c09e76ceac7a8a9b4f503afa6f25afdd79bc9610516
MD5 abb309f9cc023d402868b9ab8448b981
BLAKE2b-256 2be405fe9bed6610b2870f09f719fbc97e6af1b7a51ec6f31c53ce8bc1931af7

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbcbe19a384ade7f74f242649e9e97a46575573324c5f4de43f712d44a7317ab
MD5 b4b17890e366e3f171a8f8486517cc74
BLAKE2b-256 64b825611492f8caec63670e7671bdb066f814ad2c00d955ebf08f42aded7863

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db6d34ddcb774852c1d669da8257de750fa932587ac880d273a374b87fc87967
MD5 11820dbf4d0d8bafba7621354ec0aacf
BLAKE2b-256 15720acbb99388b60f9f4dc3c8043c50e0895f016bcaded07c17847f954b6726

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c5f8a00771faf9b3fa15481fd4a0161c47819a349da3b13f631cc5b2f349b70
MD5 425a918e55d2ee10ac8383f1b6b006df
BLAKE2b-256 1f1646633a6e2fa4ab228c2f8164ef7d9037ade226a954e486cc0a2eb1cf50c3

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 008a39efafd7077001782ae5702af2fbed52eeae31bb1a57077d949ada1d4abc
MD5 1ef94d41295c94247c9d1a2113066998
BLAKE2b-256 dfe11dd0c65bb4eccd79a86b10ad9c4dd9422af6f13b7023b343719c472c280e

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58bf9e6115ddedfa2f9e0edef7565db056229d01229eddb0e3523ff5becb4257
MD5 7b419020605abe3b83af03f2f42f967f
BLAKE2b-256 4047ee3951594758cb44ec7155941fd27467c8d57a9ee4ec2ea164a95161008f

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 425dc6c2711260d9cfcc050f1c5fac4629a5b7ddc6edc8204231c52044707a1b
MD5 018973944f457542649e4701733b6e88
BLAKE2b-256 9d4d437907b95feecdb0a45b62216b0e55b0a8a397175bb1fd55331eba6510fa

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8b584a42a8b4f88b33bd1e257cdf538bc47476b776eeeb399fedc55a596dc41
MD5 f26ec7e7aa83a4347434488448b90540
BLAKE2b-256 a512e2d4b2c8ff2e8c5cf8db5b1fed9b2f5d0c6836de6d287835da948289637d

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b4bded13f35f5ec1e706b3b8caebce023a7f57b62e610f0b8887742eca2d593
MD5 7f80991347e5c32e1672a52f3486179a
BLAKE2b-256 5829ed0f81e2e314349fc787e796e5c2c230385c5d86c472506b723b02baaa0a

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb0efed8363e03decd14042673c0052d501cefebb9c0dc5b328db7a05505887d
MD5 3e212e5e52b97b7d2e8850cc85d1451e
BLAKE2b-256 5369ef55014d6488a6af62b174f48bbf58d0d20c43f7ee9796a8611885a9fc5e

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb5ea34725144837ff4ec656e549cfecd2eab6c40a89cdf597f114ba1b934634
MD5 dc7637519963b91fdeaaa8870fb19796
BLAKE2b-256 acb80d4212099f7c3bba0ee73c45a651f58d4647a84d043546c4584b9768e98d

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b56c939ddd7674047f2e12344c75e35f379e546db12ded6d5d11ec989e4f9f3f
MD5 22e43a5e4a95e196ce4104fabe6eb189
BLAKE2b-256 faad8faa7eeee45f10a25445f1357ded6bd6123dd94519faf0fcd599501411f1

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 609731a24fc18d3b763e41810cfcf8c44f24f880a629ac7278cd6cb87312e6a5
MD5 8a1f9a859122b3a29cb554560ba39331
BLAKE2b-256 1f03b3fd81fdf939d79e6edf9b5badaef09049ed9bdd0a6033d46f1e1ee53987

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3807e61c9569af0420b0d4fea3f231cec5c42232c083b4deca3afa567a78d47
MD5 e3779ba487cfefcc63e243f199da4c39
BLAKE2b-256 aeab09e177ee608b107fb45956b9cdd8f611a55a1f438b06b4df88dd63b1c969

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4b40b7ec059721f1046f07059a24080a4e390da00fe1c30c1093815bd32ec4
MD5 f20af28a1db532eac64c2cb8b09d9d5b
BLAKE2b-256 ceb4f6148523add8cafba83bd0258b2dfaaa413d212b468f2618a49aee753be8

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 648a84e109031c9b8546649c811ab3ec3f4ba5702092719de0a48f528e8356e5
MD5 93fa0d96371b9c3779de940dc6fecc00
BLAKE2b-256 499abf68b0098592200cf5fb4249a48267c39ee9d83c7b29038168c0c200d016

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a40b15c0fba8a966466d9fb8e42e4087a5aaf8f824b0a8b46d3bdb9af2717e1
MD5 54597db99f508d5cfcc684a49050716e
BLAKE2b-256 772d674b4071f9bd0b550454ad2d9426012d15ff12e592bf947a9c68597677bd

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e37abd256c81e1dcea49ed332b89cfa94a97d242f880020ad51792db5bea9f4
MD5 5bed78881cc27af96bb6b6368053bf5a
BLAKE2b-256 039d29c3497f483e70e0dad3184045c272e8f2658453e271dbdecb57bb2ce7d0

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 134830d9f56f168456f36c930421dd02246e1c7e360457295b05f4323f5ba230
MD5 6db34cb5655ff16bb13f1ca13a02170c
BLAKE2b-256 eafae0c658871230e351365f6a2c5b0e176339dcbf6404f2af0d2e0ad4b382e9

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85cbe5776f8973b0a83714f2f6cc3c31350a10698407414d38dd4f5a7f88eb95
MD5 6a09a49f5c83590e77f96c3b9fa6caea
BLAKE2b-256 da0ffadce056a8d5f26fca779ce9a1066e4d635094c2cdf3563d319f26a2fde4

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec7572263aff518e0f892077d71ed48eb4a595fef62b0c4b87655591da0baa77
MD5 4bcaa6b02edabbe69b3475944ee585b0
BLAKE2b-256 29d550e70de41664da0e7221aab836227a7336a399b9ef5180212ea7edb123f5

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 866d33064b7c7e824034efab4ed1fb26227e985e16a8a6d166661d68d35fb4ad
MD5 09e318c2a1675d0babc2a38dce6ac288
BLAKE2b-256 f0f27a5cf89e8a610f973ddc0eceb84c87ed8db2ae33f0b86faab2d7223515c6

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4505ff89140a622f86ca971dfad6ca58786e2e6382c88895c7fb042b3d989439
MD5 ad07943df649b97a0679af62ba768739
BLAKE2b-256 65b831297fd045158c3344a6e16670eb16d3d2d6c019391df72cb1ac66ea179f

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c474ce806004dcd6e527378aa01a3a1486cb11d0ed29330d83423c8e311a036e
MD5 8e90e7fd2aede38a475a1e014c384a55
BLAKE2b-256 b0e4c995d8bc5dbbe65d4602110105857bbec26abc9b4e6410c1d2fb4f89dfec

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56bf07d295c42a3593321d049c6167795b44213f70a3572a0395de0bcb0bef2b
MD5 04834cd13bdff08564e74f1493957f8f
BLAKE2b-256 9bc711a88c11b1baf02beccd2c09d35820fe056c9d8283346a925862cd4b228e

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8d634173c482b3bf209f502232bfb1c7b221699ca9e3c2a0cece2e2a9b143ec5
MD5 420b72ad8be33f714df162a2a0b97de6
BLAKE2b-256 06c1d59c286e8de82e5dc66be290a606eaf53882571bb8390a7fdff74fbb7adc

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d015ff969b28ab9fb216cb974616dd34bb6b0cabc9ba1c151bc78ae9eecd72a2
MD5 608494739712a1552ac2873bf200b82d
BLAKE2b-256 c0ce5f7d78919b4e3ab205414ffa57f8b018bfa8c10d54410384f4e3f10dcd9f

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b0c03aab1b64458cbb4312c7d46f5915475aa50ffb6c2b900968b5a512aa144
MD5 89b525d242482ed552d7ad8e66ad6701
BLAKE2b-256 ee6734d4eff3b401f301e66e6d595fcdfd1200213a7b51c99185440c884f6fed

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 169a572a7aca50b23bfe978d4d02d81bbefaa7a794c6802d50edc70857bad974
MD5 506cf1514b74d5a28460f55e67013090
BLAKE2b-256 13295b43f45f755c1ce010595c0021a11ade753ac2f6e89f41ff2a397b4dbd99

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b43fde597cedc0b4d73a5becbb106a851f015866337df51e068b764a6633ba4
MD5 e7bc5e86ea120c2c8fa1957de281b461
BLAKE2b-256 feb01cdc3730989f5a963f24cd79898b025b79696ebcc51551ff1da92e3f3d6a

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d03e7d506ef824c5dfdfb941a671ecd90ddf9bad657258aed571ffe05971184
MD5 0e50fbda4ca160885874272c5a045e69
BLAKE2b-256 3a6ab3d28590f660026d2ab9b85afa23efa2d7de2fc4370d4bfb3d85f630492b

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce454687b230a125cbfd7defa09937d736c669c217b478c521c8efde20df9ffc
MD5 5c26e89f536d0977b62973219e17cfc3
BLAKE2b-256 d1e2341ee7b3c0d23f92e438421a2ed14b5041f863d54d38a7fc4b77a22289fb

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e131fedd56a83c66a9606f775ce8d72ddb73c80500ec69cb039bfd0da2212d4e
MD5 c6e6e36cc9b8e22e010ad95e7c86df09
BLAKE2b-256 64337e61e70509502f6970e211057f462ad34c24f107f58b6bde879e155d3075

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6a118f54e75fd01e609a189b04bd9c990a1fd35228a9864833ef517f737d2f0
MD5 7ecad66e1b39b81cf95caa3c91784a6f
BLAKE2b-256 1aedce3ac946247bc89664a2001038148ef66fe2b99bb6c36df1a3e6c12df45c

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa6e91e9af48d654e3ba670ef0ea14b4858bf6725ab678cddc7d531110f19a54
MD5 9fb71b536718d33cb7ac7509c212774f
BLAKE2b-256 a6da6761e9a36c3ac60a44ebd8e141a8c7a4cb0c97eb93635164fda306b77dcb

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90568dfc009de72b5d977a3cf0773633ca677a8b3104f860e00bbf8cb003cf8
MD5 29b057f5541f0e3853c669b7a1cfe69c
BLAKE2b-256 75ceacf38a67eaa99e882fbe425b48a07cd519a9799d86ba1bc45285d71e07ae

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c2a6cda19f57d2811420fd0347334f73170efdeda67a85f302cfceb5886e0bc
MD5 8a43d201588ad31a56beef811a142e44
BLAKE2b-256 5b9f9367f4881f651993e2ad21e0eef82548faa3d8dd92e0abb263cf350a3550

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 673961fc648f713d24a73c7fba1c17b2561dc35202599bb89c7e0f31476232f8
MD5 707ba6eb9c2bcec2f57f78da7c2ccff0
BLAKE2b-256 99e1eaf2163ebba80321a2f7e3ffe0445f67c347218c0e6698753d2b865aad30

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a32f4325f125ffff744505a1188d715bfc313c5d5e2bebdf8920ddd12c13fb8
MD5 9fe7584e574af8baa8caf15ce1bb64fc
BLAKE2b-256 e120b920612e5fdbc8e7d54c951821e6d192e6f1ef64ad387d4656711a27be85

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09ab6a9adbccc10ecfbe4aae945534c29a7650c456f4cb52cca6c019715b28fe
MD5 e02fdbdd9e634fecdb53bcdfafa38c32
BLAKE2b-256 17e703b7d4df0a4b03e9c5afd042696f8f489580142309dca06484efbd46e1fd

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2660bcaeaedf90b721fd7a1207e1c7cedc4b13e59fcd7fe81022a3ac63436037
MD5 61297649b5ceb0fb1aac52ebf6653438
BLAKE2b-256 1f939970187ea90d2c507996f54a17800860c84684dc2b72fcc94811aaa5cbf2

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 537.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6ef457dab6c2fa8e793649820707097ac8120169ab8c49ed17eb37f7537a3ea
MD5 c93f7dc06f3ef8dba73a5d1cb6c3281f
BLAKE2b-256 7876040ff1845367c3dd9c2a14cc6126e7c31acb88ede501405377a0b8c5b137

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e1453e924bb55c4a55a95dcf125b21d10a47279cf1cc987ad8a19c6875bb89e
MD5 79f3f4812030587af2cb559ddfe10ff5
BLAKE2b-256 79f0aedb60991984046951c43fbc5156a15872b9b618558a3f03c78aac62699b

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f797087126909a16755b4c3a5c6e17ff2abe760420f4ebbf71e82f9d6ff7c3d7
MD5 7e45d8ca763d4a75e2175c11b60ac7f1
BLAKE2b-256 ea22790e882c35c347f1fe45b0e1c32c71297347c70600066281172e6761e7a8

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0cdd260049719c4b377392a0354c91cb4978dd06b74cf0ae235331047b12b74
MD5 97eb48450d3e3c1ba8a4a2eaf8cb0505
BLAKE2b-256 cadcc10cfc429816856a9dae8de95ec83f1959a50a43581d3e75b095674c2df2

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: piqp-0.6.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f2b0f2d82f80a337ebd6d084f87382cccd1457f177471fbb5d0ef1fbe7888a5
MD5 6fd74f7c34ef1bfed14d70fc5fba20a3
BLAKE2b-256 c08ec13f65c0208925dcb26c0391ade4357284531d83ac9158cd0e60589178e9

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6d5f17195a6fa2ae1af7f2dc110cf8624a9046799a43faba48b031ee665688d
MD5 0227c6585030b693b2ebcba1322ef1fb
BLAKE2b-256 30c26c351661e6bfcf8a4b2dd2fcdd8bbaad668f20976b275f0892b1744d2701

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98bb8a5b9a5a8cdb6d3aca4f025a6f091724f64ceb456b71c5e7d6e3f2161838
MD5 91518206cd63a1c986e4f3f33e254f24
BLAKE2b-256 6f4dd68f10109435b0961452bbcb376ea32f90637e6d6fa5f43b00bd79fcc622

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09643c3bb2c1d474fe4354bf41069887a9eda57ad68169f11842c40b8defcf21
MD5 3eccde81fe0bae5defb7b1b19b11df83
BLAKE2b-256 5afb61ac827f213d69bce3e543daba33f0ef928bea6e703abf0ac2d39133448f

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for piqp-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 119c3d9b7cc0e015641750b2c7178765571990c06c9cd5bdb7e4afe362f66146
MD5 eaf58e386130ef686f8f160ac9de6beb
BLAKE2b-256 5db6cd12e4ccce7455698205b51ff5197607d098f801a766aa94827240d76130

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 536.9 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c368d61e35b3dcedf9981915b391c01769129b624a3ac669a6c889d3a497b74
MD5 e42982a1b99e14cc9a45b76f8e4b514b
BLAKE2b-256 c4611591c19ed9e3c667335aa093664b10d6268b8710fc2f25005589d773ad8b

See more details on using hashes here.

File details

Details for the file piqp-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: piqp-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piqp-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8ce1348fa91bc8798ed9a83873040845a4d6e073b78572489a804e8b3f2b929
MD5 b4f2c9793c81c698260049612f2b803a
BLAKE2b-256 55d9e6aa431ff05ca5ec0d5600c54573edc8762aae0ad36cdc2c93674a5d0abc

See more details on using hashes here.

Supported by

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