Skip to main content

PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.

Project description

https://travis-ci.org/coin-or/pulp.svg?branch=master PyPI PyPI - Downloads

PuLP is an linear and mixed integer programming modeler written in Python. With PuLP, it is simple to create MILP optimisation problems and solve them with the latest open-source (or proprietary) solvers. PuLP can generate MPS or LP files and call solvers such as GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, HiGHS, SCIP/FSCIP.

The documentation for PuLP can be found here.

PuLP is part of the COIN-OR project.

Installation

PuLP requires Python 3.9 or newer.

Recommended: install with CBC support:

python -m pip install pulp[cbc]

Plain python -m pip install pulp installs only the modeler; you must then supply your own CBC on PATH or another solver.

Otherwise follow the download instructions on the PyPi page.

Installing solvers

PuLP can use a variety of solvers. When CBC is available (via pulp[cbc] or cbc on PATH), COIN_CMD is the usual open-source MIP/LP choice and is selected as the default ahead of GLPK. PuLP can also install other solvers via optional PyPI extras (some require a commercial license for running or for large models):

python -m pip install pulp[gurobi]
python -m pip install pulp[cplex]
python -m pip install pulp[xpress]
python -m pip install pulp[scip]
python -m pip install pulp[highs]
python -m pip install pulp[copt]
python -m pip install pulp[mosek]
python -m pip install pulp[cylp]
python -m pip install pulp[cbc]
If you want to install all open source solvers (scip, highs, cbc), you can use the shortcut::

python -m pip install pulp[open_py]

For more information on how to install solvers, see the guide on configuring solvers.

Quickstart

Use LpProblem to create a problem, then add variables with add_variable. Create a problem called “myProblem” and a variable x with 0 ≤ x ≤ 3:

from pulp import *
prob = LpProblem("myProblem", LpMinimize)
x = prob.add_variable("x", 0, 3)

To create a binary variable y (values 0 or 1):

y = prob.add_variable("y", cat="Binary")

Combine variables to create expressions and constraints and add them to the problem:

prob += x + y <= 2

An expression is a constraint without a right-hand side (RHS) sense (one of =, <= or >=). If you add an expression to a problem, it will become the objective:

prob += -4*x + y

To solve the problem with the default solver (CBC when installed via pulp[cbc] or cbc on PATH, otherwise another available backend):

status = prob.solve()

If you want to try another solver to solve the problem:

status = prob.solve(GLPK(msg = 0))

Display the status of the solution:

LpStatus[status]
> 'Optimal'

You can get the value of the variables using value. ex:

value(x)
> 2.0

Essential Classes

  • LpProblem – Container class for a Linear or Integer programming problem

  • LpVariable – Variables that are added into constraints in the LP problem

  • LpConstraint – Constraints of the general form

    a1x1 + a2x2 + … + anxn (<=, =, >=) b

Useful Functions

  • value() – Finds the value of a variable or expression

  • lpSum() – Given a list of the form [a1*x1, a2*x2, …, an*xn] will construct a linear expression to be used as a constraint or variable

  • lpDot() – Given two lists of the form [a1, a2, …, an] and [x1, x2, …, xn] will construct a linear expression to be used as a constraint or variable

More Examples

Several tutorial are given in documentation and pure code examples are available in examples/ directory .

The examples assume CBC is available (for example after pip install pulp[cbc]). To use other solvers they must be available (installed and accessible). For more information, see the guide on configuring solvers.

For Developers

If you want to install the latest version from GitHub you can run:

python -m pip install -U "pulp[cbc] @ git+https://github.com/coin-or/pulp.git"

Building from source

This version of PuLP includes a Rust extension (pulp._rustcore) that provides the core model, variables, constraints, and expressions. The build uses maturin and requires a Rust toolchain in addition to Python.

Requirements

  • Python 3.9 or newer

  • Rust (latest stable). Install from https://rustup.rs/

  • uv (recommended for install and dev). Install with: curl -LsSf https://astral.sh/uv/install.sh | sh (Linux/macOS) or powershell -c "irm https://astral.sh/uv/install.ps1 | iex" (Windows)

  • OS: Windows, macOS (x86_64, arm64), or Linux (x86_64, arm64). The Rust extension is built for the host platform.

Build steps

From the PuLP root directory, create a virtual environment and install the package in editable mode with dev dependencies:

uv venv
uv pip install --group dev -e .[cbc]

Or with plain pip (maturin will be used automatically by the build backend):

python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
python -m pip install --upgrade pip
python -m pip install -e ".[cbc]"

Running tests

uv run python -m unittest discover -s pulp/tests -v

Building the documentation

The PuLP documentation is built with Sphinx. Use a virtual environment and the dev install above, then:

cd doc
make html

A folder named html will be created inside doc/build/. Open doc/build/html/index.html in a browser.

Contributing to PuLP

Instructions for making your first contribution to PuLP are given here.

Comments, bug reports, patches and suggestions are very welcome!

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

pulp-4.0.0a5.tar.gz (14.0 MB view details)

Uploaded Source

Built Distributions

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

pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (833.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (874.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (905.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (797.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (653.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (749.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (630.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (621.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (668.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_x86_64.whl (829.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_i686.whl (868.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_armv7l.whl (898.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_aarch64.whl (792.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (651.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (743.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (624.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (616.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp314-cp314-win_arm64.whl (453.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a5-cp314-cp314-win_amd64.whl (465.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a5-cp314-cp314-musllinux_1_2_x86_64.whl (829.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp314-cp314-musllinux_1_2_i686.whl (869.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp314-cp314-musllinux_1_2_armv7l.whl (900.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp314-cp314-musllinux_1_2_aarch64.whl (792.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (621.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (648.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (741.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (625.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (616.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (663.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp314-cp314-macosx_11_0_arm64.whl (574.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a5-cp314-cp314-macosx_10_12_x86_64.whl (585.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_x86_64.whl (830.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_i686.whl (869.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_armv7l.whl (902.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_aarch64.whl (791.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (650.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (743.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp313-cp313-win_arm64.whl (454.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a5-cp313-cp313-win_amd64.whl (463.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a5-cp313-cp313-win32.whl (446.1 kB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a5-cp313-cp313-musllinux_1_2_x86_64.whl (827.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp313-cp313-musllinux_1_2_i686.whl (868.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp313-cp313-musllinux_1_2_armv7l.whl (900.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp313-cp313-musllinux_1_2_aarch64.whl (792.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (741.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (625.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (662.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp313-cp313-macosx_11_0_arm64.whl (573.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a5-cp313-cp313-macosx_10_12_x86_64.whl (583.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a5-cp312-cp312-win_arm64.whl (454.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a5-cp312-cp312-win_amd64.whl (464.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a5-cp312-cp312-musllinux_1_2_x86_64.whl (827.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp312-cp312-musllinux_1_2_i686.whl (869.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp312-cp312-musllinux_1_2_armv7l.whl (901.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp312-cp312-musllinux_1_2_aarch64.whl (792.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (648.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (742.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (616.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (662.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp312-cp312-macosx_11_0_arm64.whl (574.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a5-cp312-cp312-macosx_10_12_x86_64.whl (584.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a5-cp311-cp311-win_amd64.whl (467.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a5-cp311-cp311-musllinux_1_2_x86_64.whl (833.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp311-cp311-musllinux_1_2_i686.whl (873.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp311-cp311-musllinux_1_2_armv7l.whl (902.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp311-cp311-musllinux_1_2_aarch64.whl (795.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (747.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (619.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (668.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp311-cp311-macosx_11_0_arm64.whl (576.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a5-cp311-cp311-macosx_10_12_x86_64.whl (589.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a5-cp310-cp310-win_amd64.whl (467.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a5-cp310-cp310-musllinux_1_2_x86_64.whl (833.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp310-cp310-musllinux_1_2_i686.whl (873.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp310-cp310-musllinux_1_2_armv7l.whl (902.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp310-cp310-musllinux_1_2_aarch64.whl (795.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (747.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (619.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (667.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pulp-4.0.0a5-cp39-cp39-musllinux_1_2_x86_64.whl (836.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pulp-4.0.0a5-cp39-cp39-musllinux_1_2_i686.whl (876.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pulp-4.0.0a5-cp39-cp39-musllinux_1_2_armv7l.whl (905.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a5-cp39-cp39-musllinux_1_2_aarch64.whl (798.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pulp-4.0.0a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pulp-4.0.0a5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (655.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pulp-4.0.0a5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (751.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (629.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (622.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pulp-4.0.0a5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (670.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file pulp-4.0.0a5.tar.gz.

File metadata

  • Download URL: pulp-4.0.0a5.tar.gz
  • Upload date:
  • Size: 14.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5.tar.gz
Algorithm Hash digest
SHA256 56ab307a991c882a05dc37822594ec79f630b4d907ffa24750e26a1d3076b251
MD5 30d473ac31e9b5c73e018ab9797da865
BLAKE2b-256 1141b6d17db812a2add2462418cbc3d40437810b0f509e4e5c70d1f4d94504ce

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b73cca7853b66940f8698c0191af8927dbcac14c152d6c1b2d165171086904a8
MD5 404b9b12f91f7ed5cb5f50e64835733c
BLAKE2b-256 9631f65d692d63e4bbaecb22a45294c3750c9f6267f40d72e8322588b0d1291d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c83f2043449887dcf819e276078f79605bc762ac389431be076d874e61c8e296
MD5 509429c602a63332790e90f56f2339c0
BLAKE2b-256 97b7f2fbeca70742fddb1f5c1025314a78775c41767b1a09a373db24e7172f89

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e4ac7f549e9c06147c157324c2d876c85cf6733b117cb43f227aa8a7948f670
MD5 8ca0041df48d67ee6c3c3de37d5c32d9
BLAKE2b-256 70df54c91bcee99d6d9f64bccff2a46bcbb76692b0aa72be10f78e0e3a4fce10

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54023c441db6720f816d94fefc1520018e6ed26b912482c8bec536b3ebab4afb
MD5 756a91bcbe2ab4879594b8031c4d3591
BLAKE2b-256 abe7fb77a5b76e0d3ef5a6e98d017ddedabcea9163de7af8168a6e383f727ede

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3871c0b78d64e9c00834e59a67938ff4414cb3f560f58bc66801638a23d0d0e0
MD5 2a60513caef0c5e58f95f52f85995c08
BLAKE2b-256 2626953178d46f954351c845bfe6f33e6bd9321b0fad60b85ada306bb1312aeb

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edd649bf2692f02fc3510eaa50db62bcec7dbbb9afb0a88f03aabbb87231493e
MD5 2f9d918b743ba98f6d6cf3e1ca4bbc3f
BLAKE2b-256 1de235074958467d3c8440e30be5adcc560db9fc4e6273c9f8340e2b793ed7dc

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d987ab8b806130cacc3d410c4ea4929acaedb19943882372d9b8263b29b8c86e
MD5 920ce67e6b5b8d067b25a76eb3e9fb03
BLAKE2b-256 0a6ebe36e97fd23764fa53028acb904c1469491fcbcc45f2aea8db2e6b52f2b5

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 234ad2dae6b4f0bcf3ea25a8d5cf604e948f78616f98cbe71abc154d562bd8d9
MD5 bdef7a0f6f20935368ed1b70b1d9775a
BLAKE2b-256 2d1fab00237660a93d9caf8f97bc23f07dad952e010820706c4771a1455f0aca

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00e9494fd339c6c2e87622a5a6a9eacce86ba99a907eeb5d4880cb2984a29d6a
MD5 541762920798ef6224694c6643ef97b6
BLAKE2b-256 eec926ddc51620016dcc3903642dcdf07fc0b4351acfdab755813364e34fa089

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83b8f323053aa4f41203ad3a4fe9304792059cadf9b88fd803d9f162b20eb45a
MD5 1e848f194e9aca6fc99640c26e0dfdae
BLAKE2b-256 5192ae642164fdee4cd4a7f0d8a9464fb393d003b5d312b0888222f4ed90a4d4

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d27872fb7608cbf370e1d7336a00f1bf8defa5377b5f7831f2cac0b1fb60a165
MD5 67b81294b6f56f7083433d7e12f29cc6
BLAKE2b-256 aeacb064e185dd96e7a7a4309645b092a0cf3083a43e2a7b760eb9ed90663e5c

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de9501cb0c7fd9aa60afa979a315f3df65ffe84a0d889ac0ab8049a6cd51ece2
MD5 e229456361944809aba9220aa63cc925
BLAKE2b-256 a0376823702472fa3d9e3af6e8d07ca3406da704f38b599c71031f045c00ab9a

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3e1b545d6210252182ab3486ce5d148f5358ed4a5bad5156e20380d949e19eb
MD5 05a43bbdf2b4c684eee628cf9de17884
BLAKE2b-256 0a11e9f9abecc45be3ab6e078b27b524caf798da2292be9f57b388802a0dbebc

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eda35197e512c3a8547b5ee86584ea369f8628a606e61889c3ef37d42583d616
MD5 117099e0dff1f81236a7dbc0c5c4a95d
BLAKE2b-256 a0f18e18338fb44ffb4b08919732dbeea0f983772a51c9f2ee082702cf0af612

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 552dd3dd54a51e1b82268e3d174a2eeba8291cbf913dcfc74bccbb55a0db38de
MD5 4ede512d94a0c04288e88c3c239b7dcc
BLAKE2b-256 9826c989cf471956ec27f7250a294a97a81ff644f9d89b0ea273820a38c44dbc

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 491a9444e11aea9828281f4f852a3ea0cdf9acd03e857d11b78f422ee7733cb2
MD5 b24c1bb2aabbdded426772bcc6ccb2d7
BLAKE2b-256 8b169d7df77c46cc28fb6a68fef42427919fae781cf89a9a42fe94300814c89d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc777beaa3b65a70a790f0e830e1ac0103b141b34b0b92ecf0a08e2ff933209c
MD5 da2e78e66494062621c964a90ae23416
BLAKE2b-256 0af374ced01b0d5abf8286ab858ac586fe5a33cc5b7ce24eb8749674dd3a4beb

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d69bc312cf9a2e7320e5736fdf7bdfee12378810d742550b9066f5ca6b98e9d
MD5 0d0fe0dd4b487915eb5be2b816006db0
BLAKE2b-256 953edade7d899d29554c3835f26f1d7482507fddb8cd52aa95d17f871f333d81

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dd1d2cbe6ef507f5f8d11d6e873d20f948e2305c537e11a4de780cc02be6040b
MD5 f35473b3f32ed3c753bca5eeb85597ef
BLAKE2b-256 074e8bb57eb781a2747f3a068a8dd2bdf65004e46763412fa8abcabf017a834b

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 465.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2cc6fc6ef296a3a4e40bad883fdbdb496b753ffccef1b56f683da619c0351ae7
MD5 bbbd8bb773ad344d088070ac4d2e7992
BLAKE2b-256 e9ef309817c77b44db5840ae7ca9c1bc34ad68af65ec93897100b6df7b020170

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d7375823ea74802c6a097dee777269d4e150ff8b7b3f1edbbefacbea6d80125
MD5 cbebd6743a0316435d26b110af400c13
BLAKE2b-256 6853e89bfa4a58bd47bcbc6fb499b69d1dfb2ef881eb5eb7702d82259d64cdd3

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bcfcd713d2c126f05fada62e36b5ccda9185c43626d0385d094ec40ba52a277
MD5 a1ab7d066f0d266e9a0760ea168b3af8
BLAKE2b-256 72bc34de68cc5bf2ee31c49101ceb26a4031c5b051d47f9d9c3c6e69a6b12324

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d158d1a2f13982acab859b60af07f4e4ee41175d27478d21ba57ab04c4b8201
MD5 12d93652dd7030361ed34894c54cbd42
BLAKE2b-256 24406edbb136fdb2d87e17bb95553960d1dc4704b5d98adbdb93bc35504594b8

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3990fe64a86bd68b5185c622b81f5b634dbba4c90816e1bff251d11f6204723e
MD5 2af0d084ced0dce93d72821e1ba18ed6
BLAKE2b-256 be602df6f0ea5f951386f36556284402d682c8eaa06a54368aa3a2e500163e91

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f39e4968ae66e07cec85d845257ad7b255e3ec6eb61f1aaa5dc56dfe3999efdb
MD5 8c09deebb2f85b017aef95ae3bd27965
BLAKE2b-256 f34d4aed2df794d9b8281bc10ef6e564b9734b976c50a5221da040515d57d636

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f6b9224cafc7a89dd55c34e8e70c2da013fa8376571f8f7b62fdaa65cfb7e00
MD5 7024ac46df2fbd61d6b9a62208e7a9e0
BLAKE2b-256 4ce30c5fabbb503c735cc5d35a445c4428c5e241f121c640427650662c83e3af

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67339fab62922126222c625444e7e24afd329f6db305365a30f1196613a94aa0
MD5 9384a82d302a911f3d867f17f1989cfe
BLAKE2b-256 8305f200ca316196b4da371144a52a5773a06f10edfea2fc9bdeec49a81b90d0

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1d62a9fdaec1710a63b44d0ea213b173ca2c86987f6c2b33f923336a573a557
MD5 2e72450c24b483be8a08977d9ce49901
BLAKE2b-256 53c4377a2ce6a14882cf50779ba579314cc0967ddbea1833810de1016707a2c0

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a9fe722e996f7ccea2f2cc593e677d6f1a7087498e1a1abed0a312c7a4a77f7
MD5 fe8f99a4daef099b748216d4ac50a3b1
BLAKE2b-256 dace1b939ae6fff7d4d59b8c0386010332d0979b5bf38941cb8fb7ecfb3f6ce6

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a971ad6f303c3d51d3b9089ebc0ceba58c06925ad72a867d051c991428878b9
MD5 3b05bb1ac2b83c861235285a6029d29e
BLAKE2b-256 93c8470350891d394d002c71aeeeafb14dcd954f9886b2778044119a9454c9c6

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db2a342cee6d0b66f55187c48735bf4e932b43a160d68e6392db0ca6a1b5d74
MD5 454bc7a16d8cecd825c3c91c50b6ab59
BLAKE2b-256 c7fde623c8df04db4d909edecd4f69dd3d4a509a0b7c42a97da7c3f0d997b27d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec70995ed5dc646f8d8a2c1dddfc003d444b307d4e725ba4a7a29a21a2d10503
MD5 73d2930610d6f025964da90d6a147f8e
BLAKE2b-256 f9f22fa3cb71d0e31b27922f85f73c1a4a816824254b2405e6908234f5ca379b

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d37b5db98153ebb7805766c5ab94de67347ef8df4db713741b957c7e4ac9b81
MD5 28d650c9cb845d99916617fc5061f120
BLAKE2b-256 d52f6dfb89e566e1109b559233a2713aaaff2abbd4e459ee551ad835665a3fe1

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63f4e09e7ea102c9523207ca3ef8ba38fc0990ccf289e8e7bd55f8488ca877da
MD5 bf6dc9906d34d6b6587b529b1f3b3346
BLAKE2b-256 50b4e4a3853be015bc09fbc308451c5662a40ca7864b56d4171ba07dc2e07d65

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b61b1ac91abbc4dfb66f94654ee335bd617697ea96c13f04daae1b5116607891
MD5 32a90fce571dff6ba93fb00e7573542f
BLAKE2b-256 c3819606013a7ac0655d0de4e1847108ef48c9940fafa4420d46cac6f62efe61

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 207232ed3e265d5d0d5dba7cdea10b3e35f12ecf55d4314f56a85510668f64c6
MD5 3e5aa7fb096cc25e70da2a0bd1b26abc
BLAKE2b-256 6bf566a8f03731fdf1fd56dc32291568785a8bf0616f44960840211b76af207c

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9980f6f289c0bbd4855a1b455ab40d034b54a819013831c2b4ad0d2ec9afd30
MD5 a432d3a6203e13be9400826deaf7ec56
BLAKE2b-256 3a4ddc415ccb3c13e65fa0df79a53618aa6c46fabe836c4522de53ab0138604e

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efab7ccacb98b2af06171a696776745deebc01670a1ab066349a6131179115d4
MD5 de933f97e1f596ca6657b44eee7c3cca
BLAKE2b-256 69ad52bf88ae5355765f8b16afa4dc1a43e035e04186f955dfd1ed92c95a7af9

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbba82f919662f9d79e5fabf23801f14f4b597831564352c7c812167cb1f7fd8
MD5 ad086645f44cf3d0c482305188329f70
BLAKE2b-256 014b424d01062d860f9fb621c86bd64c051f2549ac8bc2346622674095a89e5b

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b056e10f19a817a00d1168e0770f6fa90a80b14cd69e06b0d60f023943f70fd1
MD5 aec6bdefa378ade8046f10ccf2c58780
BLAKE2b-256 1a6844b0cf5525d0324fd0105b30025f25c95a417d5a08a4b9e65c08dbab1792

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 454.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 99d06b3af7927283ad6c9e3aade92300dcdb6f106b31b2bc0fd5ba09b4f454f6
MD5 3594b108a180ce8055e6de92358d2bce
BLAKE2b-256 f8a291b2c7b6feab784029e85761f77f4572485f678640ced491ea4ba54fda83

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 463.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fce3711e6fb725205d130bc67c2ac75f6eb1de4bdc93ff6fd6e4a00e02ee7a06
MD5 f2a2c18b1c7990b8c729903e2140d7ed
BLAKE2b-256 95f0b5bc0ecbb2a05d10c9ed5fe14eabb293b3b10da50e98c3cc9b5677c91852

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-win32.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 446.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7026a542f0cb90bd42f1e09adaefaf720a702942195d8fd73950bf9b25e9bd23
MD5 2b2d6c9f4d5400a4760b0011982f7f59
BLAKE2b-256 bfdb69434f3d1f88475d8745b08447d8b311f27a3857dc74473047806da7ada5

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 418b463469d6cb9d31de817e96842b8ed6e4391f042f58efda22734ffe6fe36d
MD5 f750e5148215ecebcc1b283ae3054a22
BLAKE2b-256 75cc04d296227b1a14cc627530449054696fd91955d146cf604eae4c95f523ef

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b28a077fa733196a54106b1864df5e4e297f84173863c649eec0ae073564242
MD5 f4917c0281a81f54b71ea5fc40c6c8e1
BLAKE2b-256 44537d973d696956d957ffd09752634fae1418a1da36001883f6d09bf9e51833

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 626b13db38cd11f126156fefdb08d7cf77384b4c356eb81b989e27e7b9bf579b
MD5 003cd054ca75dbdb3948a6cbca6ce85b
BLAKE2b-256 01e49e735e3cc5468cbd15b4b9d3668641ce39967b6c206bc4dc07c07e51a941

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83697134060e3fd329382e36ec65d60546aba0b57935952cd7219018ccd1490b
MD5 ca0fea0efaf58c37336456f3f476f40f
BLAKE2b-256 5cd02ab97920d2270d46dcb4b65c2be779eaa6118f4d20ced4b6f9157771616c

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f936d0e2aaab15fc82bc14a2dcb8cc0af063a7ffea3ec4c918f4553aac0d1a12
MD5 b90749e290e23251d9e13cedf89c38c2
BLAKE2b-256 430d284640d8b05c71ed652faec542522c3877f7c34274c84c31e44cd49d0231

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8526b32a7bef8dda0ebd0493f478af7f19df20034a2bcc13d54a20c709b31b60
MD5 3547de2a9a7b7adae31b2da010886d02
BLAKE2b-256 fc417eb54136d85945802e4d8e825237aa07460e78d280db1408b7f37d928028

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e966ae0ac7dda3f25026c3b29a8040e64bff55260b09fe0c46aa57f515e5ec0
MD5 91a2283e9482983062ae18c4980d72be
BLAKE2b-256 77aa3fae3915c77c60e4f047a51e0b1ee0e27daf3272ce15c8f3db15d0a8a46d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24822d424819a7d4de76f335e77a1e02a505287fcf3613695fdf737070f516ae
MD5 8dc162b141ff4fc8770020607e461af9
BLAKE2b-256 2da23302f865f212de5ec2a2d09cf2451fd20bfa3d052c0aec74550173f23227

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3545d1f1a2199e0bb9c50255b54c173fec31feb154bff381ec90806886923a
MD5 8b4474215835a2937fdb230bcfb0fd6e
BLAKE2b-256 a44f0dddd0b8e9bfccdaf87c681a5b7821e83ede1a00655c7759efd1a3ec86be

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02455eeb4ab64f3bdb77fa1591f90787d2be586e96de9a8aad39d15658bc0b3e
MD5 161f4f4650addfe1081660825b60c154
BLAKE2b-256 be793e0447f53626c83c742d188e91d32e363bf7430f072d42bf899bff674d26

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02885194d3feb2b0dc5d4edde328c79447023334cb4b47d7ed54facfe16c4fb9
MD5 52bcad2bfe1d368cb8d9fdeae66a70e1
BLAKE2b-256 9e23a9bb78d6370bd807faac679ad537faa957b0f0eeadec0a88e9b5822dce4c

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d5581c0c009e2b88feaca3ea5ce1b37b18945b52715926b11ac3e523d40788b
MD5 8502df42eed03370f178e93122dcf38e
BLAKE2b-256 3cb0855d4e3c7f4d6bdcce1ed7a52dbcd58b62ec99655e163958fa482610cb64

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 454.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a1c89f62465724e92a045e438da52cc33079fc3397231419774ff314ea594546
MD5 4d8c3365b00e24b5031ebf9a3513bae0
BLAKE2b-256 ef3f7a27c3c51b1c2a1c3ebc4d42c04c32aa577402003240f3abd105855f2909

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 464.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26066e10177c6bbb733b50074f6c1349810cc9c69eb4aec38f04dd15c68750db
MD5 4825524e1aea0c6ece187c652a331477
BLAKE2b-256 d6e297c3e5154b485c3e7ef932dac1ff943b1a09ec38297ba5e22e9673bcfc1d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d34a55af1799158e9d934d07ccffcd72f67041d3c7af82a96ff34da652ec504
MD5 5cc5f7724d0f21a6761ba3742f507e57
BLAKE2b-256 76204f2d81cf346e2e88389a6922e95b1e4cb0001b78519bfc2ac92cc88a1e1b

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ab95f02bf66b81a17c0d03cdee617ff353aeeae96bf128f18476c64f9ae6b89
MD5 32367895ff2ca176a7c8694cc07742d2
BLAKE2b-256 37d3edd9107195cf03d28a05a2d05ce811f9e2b462d2543c19703aa42046db60

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b46ba742bc305e93ea9696882eb56b56d82db78334f391b8e903b8eb0695f6d9
MD5 a3e0d13fadc4ce5462d024337dbd5aa8
BLAKE2b-256 643418c48d818768ee614b9ea542dae09693738243224ed4a8ac6192a44d9a9e

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7f2b7b5a5d9c5e14c25ba6fcb7c0c3934b6d817ea531cf912242e84f808f311
MD5 0fd1f26dd5023f56dc7cabda076fda42
BLAKE2b-256 9e2212e8de16954eea1b6844b99a454dfb777bc9b70daf0e7cdff06acc3179fb

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f9c0f3670140a57bc808efab8573e5ecdffbf379265cd4b799ad8f438e9d7fd
MD5 ee9ef4a0657a7625842440168e2f94e5
BLAKE2b-256 1a1ecdc7bc0538f359c98962ff132901f413c0560ec336b57f70bfc7ef92d9e6

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54b429e470dc3abdaea7e0d8d35ef50a81e17bfa221fcef7ff84e0823c35daae
MD5 c5e7721f52158e4bd5602e9a743b83a9
BLAKE2b-256 7030f94b372bd9710b85131d53eee9423ee67b3c4235b8b458717380ee748a2f

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a4c2df582305dfeca3aed0cfca04d2857c2ef457d83b5a774a37da6c9436ef4
MD5 ab0814c205f0076937914af480a03519
BLAKE2b-256 5b6c7924916587d4746232e5116e9288f4e40dadcace9b955363cba6123b7fe6

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7117d1f869e5d11f7122868ec4cc974a3a12dfec76ca0b081f0a4d639339729b
MD5 306c9e4e71b6872227b5bc216badcccc
BLAKE2b-256 ada79d00d509b97b4d341ce1ef996488dbf908c490bdf1d3c0abcc1f4ef9ebe7

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf78e6f0624e5eacbe68da4f719349788714333f66bc5b438e6b53d28fd2cf5
MD5 105f5601e25414da8f779271ec3fdae4
BLAKE2b-256 927c64200157d3b357824b78ca739d431409f250204f554dd222fec4ac841ba5

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d4dac25bdbea5f23b641fba7c7f1d9dcad6a5c762666b4c8804f122d52c2bf1
MD5 aabefac72572066e9e599b78e3d65cb5
BLAKE2b-256 eca4b8be86592d7d8de75125db0f9e235f6b38fe4e40e6845215cd8cf6b850aa

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e456579abf88ac352478e679a0f71d7d0a731d8dd6fc05b965cb2f736a070b89
MD5 0f13b122a471cd07fa32febf8d53c3a5
BLAKE2b-256 09a389401d9eb44d35b55dd290dbf137cc7b0d0f8366d7101f0a26889d8cc8d3

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bdc1460d54de49e1ade6fb90c46f5450ceb52069a761a0ee5e8f4eb9bfe108c
MD5 05a480c291867d0fd1309a797e76d89f
BLAKE2b-256 bb5e6d43f72b3d3094af2639afe6b27a7d1da2c93abb421701639f8d6123997d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 467.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58f0f79f0efbd63d89ce26a9e25880d23a709ae864319fbe3c7df2c32df9650f
MD5 65d828edb68c7df3e694b519ecef4066
BLAKE2b-256 4960c12c223f6290fd05ea069101a47b67cb3871c724f9f9f1e5fefc66f4fe19

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97cfef603cfda506740dc7087bfc1874544ceae01cec19002cc906e6744cb691
MD5 f80f52dbdf5e32ac6c642218607c106d
BLAKE2b-256 e873c80ead6b174f3c4fd81581461cca7f36bb6becc62288289a912a07b31a18

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4baed393728b2fa6e29a27d4ec0ee87ea14a9818ddbb120b270501aadeeea50
MD5 3d76f620fa3236acc7204c7142e720c6
BLAKE2b-256 0f66bc94a634aeb16a77471be73bcbec1459ecc44bf6ed69065b59762ae50c11

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03249b6a7b3528086862d107e9e4da9a1b5df8b8759814a8e0d0c3104ca20431
MD5 10204c32c561f54b6aafdd198e1bbd02
BLAKE2b-256 590d559a9804d4e3a96b534cd6ed370fcea4f9bdca8bf4d4077b298b6b70ce4f

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4756388e3576e7e5ee371d1b0c230eb11629a873eef253554d3f0f600aebb42c
MD5 5e0eb3125419fec0c4e16b7dffb0f8d8
BLAKE2b-256 0e9891c2d717285de10ee8f3aa27a4cd236cfdaab286779ad0d35ef16fd8c875

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f5b860e89e54682d48e4502aa363b1db5d79d773d27178ea1544ec7121e64c8
MD5 5ece1f1df54856ee2ea06f27448b1761
BLAKE2b-256 327dbf4b0a1766ed266385e0098af70765da736d9214abb2c5ba83a200f2c0b6

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50b350317380dac52cdd0697fb69f6a6162b2a011420395061361d5c22971235
MD5 01a6588b65485877c2af54996d3f94d8
BLAKE2b-256 ac41f87e9cb24729d0cc4d0a0945f91938a89bd0253915bf49cd690827a4a95a

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dad27be5bd296dc650c002913d353ea8e8891f092f2c99ac80753cd84ba11dac
MD5 bb886e6a48b67174ad4dd0ed7d3bef53
BLAKE2b-256 9eb4fe4fff618d6cb383ddd304af2d9286061f407c9cec0f2d82b5fc4033c148

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2b6c03f1ae667037290acdc8f967dd38d4d050d109c26d90939ffa78f7182af
MD5 531a8e62919463f6de66731a8f4e10fe
BLAKE2b-256 6923017378b4b24ad8b4d39f7fe316522a361740ab2ee9776be81a810d48849d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b4ef8b0339f20cf29dc6fae531ef33b91efc0cb1d9ce632e1f80a8e8cb6dc44
MD5 a767aa9bb7a5307cdb6bf150558dad13
BLAKE2b-256 bdf72b9318e5e244388df6899d712213e8a8abecbfc0e6bd46980a1d92c5405d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cedea2aa84f6685234c7ad1ebb711706836d7bf8883d80213c3f9cb4bdd5cdef
MD5 d5dacdae318982a3d1646d1cb29b00bf
BLAKE2b-256 c1a3802e59c50cfaf566f4e5a329818074be64a8cb75711c770b3627a04eac28

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbe25b37b13596cf6774c2f78438b04b0324ed9730384b0a53c37e92f168587e
MD5 21d038dae970196b5359e19afb34cb10
BLAKE2b-256 8d1ad90063cd3357b3af6fbfe9717cfed458370b15f05114f97339dbeae30910

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6975cc5e8f0e0d0246c692e1bb1e916f665576c8912fdc707a3eaa2f711427b
MD5 4c4b9f2bd902feb7e909310cae40fc93
BLAKE2b-256 7f0dd5e9f5a013870ea23a87fcd5948c4095f73cafe8311e363f6b41baff0853

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 467.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5094d02413e6bb49ee3d724cf2262a011061530700a122cedce1a7bf40dfe781
MD5 f298de9b89f1c48b84a5befa59aeb35f
BLAKE2b-256 dc9ce86cabb23b88536f68e13122a98bdcb40a3c58b864ba1e447dee338ea279

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 667c7ee7ccd0b9e6ead3a193c3f9595592811cee7a8be0daf3f452c6fb36031a
MD5 120025c89dacebb810b5ef7e03f2d804
BLAKE2b-256 a067d662bb0c74c20279186ae126c8bbeb6ffe14aa4325fc2b1d08adac26cc69

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd3261575bf25b9b0c06e3d608740e35b79c9f72447ce1eae67f4516aae97287
MD5 55724ffd30e9a19342790350f7dfc566
BLAKE2b-256 81ccf665d98f54ccad2dab2ccf4f76e0a640cd671a452d5ab2ef2a917f24a92f

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45517bce1a350fc9c8cf1a5fe87237ea72f2b6b674c339f286a3e32869d2507b
MD5 38c173e97a86b750568bbd2cff47b740
BLAKE2b-256 4c4411315e97c3e227e98d3f1566c3bf5e4d987d4d30bf6d6cc951006e1c9b9d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9c03e23a020a8a281aa546dfa8c0e7a083dc10f83901298853eef69042052fd
MD5 1ea14db4a2cf8f6d615bcc2aea5076af
BLAKE2b-256 868b8e01c598e5392da08c53c2d916c754dc66499a612e30d31023e2fa9e0599

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efc64586d76fcd32ccd221f28b32314a0346bb0a35638c638c8310d299fa4b96
MD5 034552e3030db1be8a3e5a750dd8f1ce
BLAKE2b-256 a9059d50251de686b7d5a0b32194179a21c1833c0929114390736f0db13228ea

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc274fd03d37961b1d10faef8b3e1c1854deb1bade77472377e68ea56f3be6e4
MD5 9e0e40a2f470efb340102115e2218e44
BLAKE2b-256 62b003fa8dc610538567641b6466f0f045fea3748b4212dd2f94a6aaf805992d

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49557e42b88eb10eddde0d61ae3a8dc755b465622401a7bd5f467acdef551256
MD5 55a81666840c9c3ca6881e99920f4840
BLAKE2b-256 5b32fcb2a6ece6d9c940e64815c069bc0aae44f0703e8318c1e855c289e1e14e

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c7fa5a13794612cfc86822603b1ee2a20fc428757bbb7b2e7fe3c1c91b52889
MD5 cbf9998a9cd2fcccdf59ec1eee869431
BLAKE2b-256 0d621aa80d36ea1bfbb749afc3a10d2cb85f5471a1c145129163fc0ca36af3e2

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30a4898c7b4c4be7b44f51337cdd70c877583a6c3208a9091f0f76fcec0d9193
MD5 3d0282851007bec3cd715de9845af20d
BLAKE2b-256 6d8c8c2191e8712af292b7fbc3db994d74b58aa93b20f3684c2b533881dc252b

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 762ca097731597c3b1fbabf299a3710e80affc9706062df89ad85f7c59dcf65b
MD5 e4559aee299f5a573381e1376f700bdb
BLAKE2b-256 5d9298685d3c9a5b5a79cdced7bac1697dae4c2cf99d5ac968dc3153c67948db

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af15cea568284780133d1abb1063f5973528c09577a96c5c1a725b43dffb16a8
MD5 b3fea6729e471b8b444fd1d1d79b136e
BLAKE2b-256 e01d90e55a55187beb10249e72f57ab7d9e5b2695f1b5efa78f3c7301f9310e7

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-4.0.0a5-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 876.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7baf908f510d0c2caf93297d458c47b809062cdb89863d92778ddde489b0199f
MD5 c2007b0f762c4e8aa9f0ff0d689ea24f
BLAKE2b-256 43d9c2c7140e076a364671001ee456213723314793dcbdfee37c68b84ced7dc5

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 257b2b2381e93b4e8887f8d347be0ab37e26b9086c1a8a5025bc9cb0b4861369
MD5 7a5154c15a3475e80fbf7de9385b1dc7
BLAKE2b-256 814ab1815ce5d1463a0eb98da8aa60800d3032ad1aa6bad98b50a432959cb0eb

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf04114bdc432f74d4379ca33d48c3badbb66e4ba54a13bcabdb7a85b63a72c7
MD5 be361bc7a20b90f0c624c3b196996df0
BLAKE2b-256 d3cc4eec368ba55fe15e2be5c011e5ee0f4f2a5cd3fc01ce49277bf3a50a87b4

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35ec4f6e128690040c11f138bb38c0307064d79a7875e693e1bdf933eef3c42c
MD5 a7cec7b5063fbb5f0c1e419e57468477
BLAKE2b-256 9ba41352eaa981a50b15b620c67cfee6d66306c2ea5939427aa40082ca7f95bb

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c8de03337953085d2c15faa04ce642cfd2708734b1ccca2d51deb40bff209de
MD5 359a30bc6e86e4efde04b02fc6a27dcf
BLAKE2b-256 5c2df4f051503956a586879ef244ad8c06104df0d0182335139984ff9d9ecb48

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 108d82b27bae46e4ee2642fe5984216796563aea612fb50f23ee9f2ab8ffa041
MD5 124557104a9bd61555c69d28499a5d59
BLAKE2b-256 d4e26a1b89003cd66fc6e7a4fa455e02c3297887adbfe793db109d5f5547eac0

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d73b20726f35ec2d9f2c8e6321d90a7cd559b3dbf70be6834b2e28b0a85bd61
MD5 688ce82b22e41d6022111ccc291de9e7
BLAKE2b-256 27fbadca3babc645a546517be499f1ef5fb9ef6028be9593a6f767dfb43cf537

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99d8e5952ae906e542fb4a7515446ff5f118a38cd3f7b625255da742221154ac
MD5 9489124b11d594bac639b90d535929b6
BLAKE2b-256 2c42a4bcd2295ad9e62144c5092b557479b964f94e34694e01504a9bb0456738

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd223399ce075d676cb0d93305796813040ac0818785669c67eff5a2260e7a08
MD5 d164518623e47b511f7134fbe19a1133
BLAKE2b-256 4ca555d60eaf6518dfefab45bc4da00374e49c239948b084e3ac3c9a3282ca50

See more details on using hashes here.

Supported by

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