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.0a4.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.0a4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (809.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (848.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (881.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (773.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (629.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (606.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (596.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (640.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_x86_64.whl (803.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_i686.whl (841.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_armv7l.whl (874.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_aarch64.whl (767.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (599.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (591.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp314-cp314-win_arm64.whl (432.8 kB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a4-cp314-cp314-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a4-cp314-cp314-musllinux_1_2_x86_64.whl (802.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp314-cp314-musllinux_1_2_i686.whl (841.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp314-cp314-musllinux_1_2_armv7l.whl (875.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp314-cp314-musllinux_1_2_aarch64.whl (768.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (594.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (599.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (592.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (632.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp314-cp314-macosx_11_0_arm64.whl (548.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a4-cp314-cp314-macosx_10_12_x86_64.whl (559.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_x86_64.whl (803.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_i686.whl (840.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_armv7l.whl (875.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_aarch64.whl (767.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (715.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (599.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (590.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp313-cp313-win_arm64.whl (430.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a4-cp313-cp313-win_amd64.whl (440.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a4-cp313-cp313-win32.whl (423.2 kB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a4-cp313-cp313-musllinux_1_2_x86_64.whl (802.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp313-cp313-musllinux_1_2_i686.whl (840.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp313-cp313-musllinux_1_2_armv7l.whl (875.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp313-cp313-musllinux_1_2_aarch64.whl (768.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (595.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (626.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (600.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (592.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (631.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp313-cp313-macosx_11_0_arm64.whl (548.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a4-cp313-cp313-macosx_10_12_x86_64.whl (559.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a4-cp312-cp312-win_arm64.whl (431.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a4-cp312-cp312-win_amd64.whl (441.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a4-cp312-cp312-musllinux_1_2_x86_64.whl (802.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp312-cp312-musllinux_1_2_i686.whl (840.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp312-cp312-musllinux_1_2_armv7l.whl (876.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp312-cp312-musllinux_1_2_aarch64.whl (768.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (595.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (626.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (600.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (592.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (632.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp312-cp312-macosx_11_0_arm64.whl (548.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a4-cp312-cp312-macosx_10_12_x86_64.whl (559.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a4-cp311-cp311-win_amd64.whl (443.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a4-cp311-cp311-musllinux_1_2_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp311-cp311-musllinux_1_2_i686.whl (846.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp311-cp311-musllinux_1_2_armv7l.whl (879.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp311-cp311-musllinux_1_2_aarch64.whl (770.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (628.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (638.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp311-cp311-macosx_11_0_arm64.whl (550.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a4-cp311-cp311-macosx_10_12_x86_64.whl (562.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a4-cp310-cp310-win_amd64.whl (443.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a4-cp310-cp310-musllinux_1_2_x86_64.whl (807.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp310-cp310-musllinux_1_2_i686.whl (845.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp310-cp310-musllinux_1_2_armv7l.whl (879.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp310-cp310-musllinux_1_2_aarch64.whl (770.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (628.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (638.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pulp-4.0.0a4-cp39-cp39-musllinux_1_2_x86_64.whl (810.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pulp-4.0.0a4-cp39-cp39-musllinux_1_2_i686.whl (848.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pulp-4.0.0a4-cp39-cp39-musllinux_1_2_armv7l.whl (882.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a4-cp39-cp39-musllinux_1_2_aarch64.whl (773.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pulp-4.0.0a4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pulp-4.0.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (631.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pulp-4.0.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (607.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (597.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pulp-4.0.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (641.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pulp-4.0.0a4.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.0a4.tar.gz
Algorithm Hash digest
SHA256 0b4df9f721aa010af79510afa488205d1d5ddc6fea958f2e6a19b22aa5f366b5
MD5 6844c34b33f982aa5cef333519970bf2
BLAKE2b-256 0b7df332a62639b2fef83515d9b75c688c3824397d6b116680a27c90a5a4b6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6defc0715a3f2ba13a48a3cdc04c1fafbbfecf12da330071fe95d1b8e5cf7fc7
MD5 3297e3967aab38192a23a905b381c29b
BLAKE2b-256 7002002bf9037032780f19b1c54d6324f0501312c9c3149815f678efa8fc535e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 470ea1b9e0f433a7802a134b47e3cf2aa33596e2753351e36c99096d3f90051e
MD5 f043e26756750f42704673b896a4e95e
BLAKE2b-256 a9e9ac936849a7c244aa4d0b80febf740ecd748933ce93a751dcb78e7358a532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea9525c4d65a5af8de2b8e080ff2f043cdb8987e4ff72b9ccf3c738dd8da8ad2
MD5 2d1d88465aeff5a0538d2f0418f9bdf2
BLAKE2b-256 cec1e71dbd000c59a913621f4c56819dc9d4a22f6c5af2540b82df43dd16fe11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a1a8e7a3d9135ae9f4009747893634a84033c2a7b75b5fc46bdc09bd46bbad4
MD5 c1182933b0f657c6fc0cf8650e14debf
BLAKE2b-256 697278454f8833e5db5e75bb062e33b521f191e33ce90d2c81c3abaccacb6a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8044ad60cdff9318aca98e4c3545f33a0ff716c90350df4c08060e1c4fb97746
MD5 75eb336f764e487e68579ad5a11e0bb9
BLAKE2b-256 68f31f0719e1f5a2c97145f02fd3b5b96caca00aec90958bc8bca801b5518114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70b022d417dea348eb1a2e601a21d008c8a3c1d10b911987a11f7739b72ada2e
MD5 4c13e4f67ffbdd29288f2176bcc20aae
BLAKE2b-256 f2273ea3acd76fc66a0033226004dd5dd3baa0112c99901401ac55fb0aff23c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab5c9660a523c27ac120fbdce1980383bbd7df3ea5b5db2f7a83a317b82bfc57
MD5 d1123eb7aa1d896ce82b7a91b6a54b1f
BLAKE2b-256 d23bf3b5da723e55141aaf9827de80386b6a78b2ecd6cdf6aae6ca981a55db56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24a917faf9a29b4c9398e4cbb666454371edb8b7c4ac2e7ef750b82c0e1459fe
MD5 a0696c9e02cb1fb4f6f6df0847004603
BLAKE2b-256 8c7c3de2f28d9aa3b5e12b05846bd41df0c94c23055fde2d9961412baff63e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0750be7428f9b1eebe4830481d666373661346a76cfee65abb7ffd091607593
MD5 0711f430a59542f1902f939c7e7843bc
BLAKE2b-256 deb4d60ec3c08cb3cef59a3db137adbbc7653eafb2cfc1d83343cf3a2992a121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed9a2ea308b528df4248246f3e766dcde1310c8296e66da29ee746761cecb97b
MD5 ecb1285956fab20c5d50f6cbb4392b36
BLAKE2b-256 251cdf31b8a549e5df4d19ff8905c506b58660f4fd06c0d0560f59974ba76997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f2b22df36c68855277147c91e548909533a71abb56eaf031c6af8a9fb8b8cd7
MD5 b3df7c8e946be8f85b5b96a17f9975d2
BLAKE2b-256 558ee59dd5a513102e0d247c232d877f8e426a49bd1d387d2c73fa92b2c8c3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18dd4ea0ecc1bbed45abbf597dc0eb722e0bb89707427e4c6ac66b681371bd35
MD5 ce0602fd101626671bebffbe30bf7ec7
BLAKE2b-256 3abb69bbbfd5c77d83fc9e1e364befa952ce3a5fc1bd55cd1d1a7576d1d8a5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f9fc3c30b205d464dc43d8296991f18543addcd17041ad56c1855132f41e1eb
MD5 c120ab8dd366c0b8574ba816f3a47db4
BLAKE2b-256 bc73b9f3af6a78ce9333da4e3405ad239f15151fada052963d8ce86ef71e3055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fed35854b46eaaa03a3a799428b86966cdb667b059bea3af5ece5bca9050ada
MD5 22b08c1b81497fbc221ea6207dfb4b55
BLAKE2b-256 d216134de897773a8dfc63f4a773f3d9a993ea04e84101d01e63f2ef1eb54eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc00acc635a81030a470e18c58b7c68a536c2044e74138b666ac6f10dd95bf2d
MD5 41cf66bde64bf772a0bad477b17b63bb
BLAKE2b-256 20ab954cc71e2256ee9bffde7943869d254ee0b675d49adc3b0fbda3326cffdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4ccaab11c1a1b69b77ee4e151bc87cfbccad20c51dcbc2e6f6dbe2786505b37
MD5 af989403922bce5d10412eea918e7672
BLAKE2b-256 8cc3f69ff38095469bf6e55ffd60e167697fe65727e1cf22c1c941278e34ea3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58cfb9b4192129eeb7a3778f170997c0132aa2b102b68fb7c40360b8ad73d834
MD5 caf5ecc39c1d9c23511a5794730f4d8d
BLAKE2b-256 522f4cf4aef3178efcc2e15f1593300517c40eee38e2297ae47d7b4b20cd1593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4eb248c66af7f019d3e6bad0d0f735b6d113b6e0aeb3ff68217c8317e2eb3de
MD5 1b5c5a458158442c331186c912e1d5f3
BLAKE2b-256 8c5c73eed2a1d74aa818605dd2243405fe5b85e464b807fb0aad79d3ad1116a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 432.8 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.0a4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 851e0a9035e7dff3e8ad7242a686ffda93fb71ed16ad6f0a5eaef35f59a62adf
MD5 f0502726a2193fd76c3ba30dca739d2b
BLAKE2b-256 d7ebb4acba8be02e7d4fc52fbd78919afee7f19effcc4a4056521b553d34badd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 440.5 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.0a4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3e6dfee3d72d38c41e5f8cdc601cb3f5d1a9b26a8684a6689ead1c005d64d445
MD5 b0fc94b8227051187d8b6341640f7cdf
BLAKE2b-256 f6274664bedb044f833bc2f712f8ebb8144c01964ab81ddf1edbc4e8201d682c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fadadd9cbc5085f9d1e5b889856044dafd3f29d5df02070110ef8fd5a8de36c
MD5 5c7fe9ac8fdb9c9eb70dee6ad117588b
BLAKE2b-256 add280d9a530dd0c2ca29441f0229dd60d264ec96406acff18bba500c3d7104d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abfd808a408032492b0ba969f2332a3dbf0238985ae31d10733a5cc5d8d992a7
MD5 f59b0b0544807b0ad78f02f2716af8c2
BLAKE2b-256 643af18a43a86d2bae4fe08153ffbdd07ba6220d0a4f5a7499ab6979409373aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d53f22a45b1597688e5291711621606cd9e14663b5f23e18211b784cdc9023c
MD5 bbe29deb52edfca3b270510f8bdf9334
BLAKE2b-256 b87af42d2405fb2a7cb16d2066e1759ddf3d45ad464e68779701925881c06ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bfc2ec8511e553b33a9a9909e0efbba675e00a66dfeeee2bb1b8d5839489a41
MD5 0a7126372d464ff80d4b935f41400ae2
BLAKE2b-256 657f49b72a1cb8079afcc7ce8126ffa5e16ed84e2e1cd281862c7174ad3a041b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bb1191e873ff9981ac270aee5f765979d4557a8423517cf09d34ffe7cc63b1d
MD5 40fd63575c7c30ae2634b682530b3632
BLAKE2b-256 9a7d9cdecda1cc42fdfb6663a92ab90fed36b1e8c701297c718a7b6989b9a2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e89b3c224bb5ac1b6bd23d0c7c491933f4f8979ce3796676bc0dab5dd7762c1
MD5 06ad707035d66ea23ec0603839e9520d
BLAKE2b-256 2a45bfa520848ddc0718411edfdce43ef6fb61a1734a09d623eb56919a8159f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b5a4335f0644fe495c6f87f69322461497d4090ace0d61d098e8227c9e1accf
MD5 9898b539df109336c44a947990b92a6c
BLAKE2b-256 42d5abd210aff98b4cc6a2d2160105e4f01a2b6a975dc0976e73f2c3f0f1acb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bd5db3971921165532afd4666b8f55b755b644e02e0b2fd66964438e8f1e4f3
MD5 4f157038de0f08c9ddb21bb8407780d9
BLAKE2b-256 2341371400f32dc19fb0a6d38f69819bbf7cc7077ca4122486dabaf0aa4c418a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627698200680677cfb23a13a02072aeafd09be0457340a1f730d1881618d5911
MD5 aea44b62cdf4fe038696104ce082cf03
BLAKE2b-256 36bb4b24c6a814f54962d7c61ed38ed9d15340fcf8780fdcccd77a435f1e12cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c65acb1750d06f0b628ab72e4959e9d63b2e3a433d54409e4227617224f96cba
MD5 e4bd2167296426386558be3da4a04d8e
BLAKE2b-256 8babae2d339d74f2c01690f2756fe098723be6b7ef4906a2f1eaf2f0bfe7eb06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e442104a6ede4261a514dc3e2105e530a61eeafaba40ae7df7fd72dca11ccb18
MD5 8741d2c9deea7bdf089a6fcbc84e0ab3
BLAKE2b-256 8724bbc3b85a3bebdaf715d42bf41c4ec56dfaadee0501ad1ffdeff4b9defea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f790eb367a972033ae7eaedbc8aa8a01c8ec423d8f20fe6979a56efba48f513
MD5 b4abd6c5db559b59ee2da28f6b20b746
BLAKE2b-256 9e6705bd3f8abe43b408c535b7920a8b0a80769af58c5e6fee799e142cb4ec66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64c81fe5e6f5cbdcf086aca5f24b4f88d6f61104dc15e60878ab95016c3e96d2
MD5 6ed305811a6b45530357734df3cb19e6
BLAKE2b-256 a02353878669a12f50157d2b109eb43427fedb4da86f3f9b5c21b0891a1a4a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce521fd4bc996791be93a17924ef13abcadad56a1a3c3ae731d8b8fad1aed492
MD5 b131f4cabc562994b51cddb071832d4a
BLAKE2b-256 0e0157af847d0a7379de2ec7dd38e2d550bb4e44eededb0eda33548f71286217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdbe09437a7b37ed7416eeefcadd27c6d438f6024b9d2f233edb5745ce91da23
MD5 5adba8521111ca0ba4628ef0e66a506f
BLAKE2b-256 e5a7c6129f729d1f9968484fb1df527503cc296066b172fc247cc9291a55de4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40932627540f3eaa18a67ae6b54b5e30bbff58bb77005086d8d570dc7f0d9c52
MD5 3105dac30765b05de12b1530eac5e157
BLAKE2b-256 90b68b646d61ab678007e0c992a3ec5ab6af1495c2b041fdf7a035c4ffe3dbb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 319bdca3d93bfa1c65bb77e4f43f4e5c4ff1742bb77503ab309a0dd4db37b28a
MD5 efcac3c4beba7e1d77d1f8442b46eb78
BLAKE2b-256 6156c9d649abeef1508954d0ed849c635bf71fa5d7537f3323cdca716191f0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4106b0cfd56a9e9578d773e3e9488ce2974ea94d79b6c055f7f8819ad658438
MD5 376ca5045d2ce32ff1188f478d53a214
BLAKE2b-256 08b114e3d3513faccf6f837b781b325bea238659230af823c67c1adbc59b5b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66ffc63e6f3662cc5e7513e2b5d9eaface7355e06ef68dac48ad302090b00431
MD5 253c8ae31a9254630e29ff26d7870d93
BLAKE2b-256 e872cd89f567493804358a5abe28e9e0fcc015018164b5bf07933a30fdfefc73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 590cea0a70eab18d5e04f216632d0b2f6b1c7db9a28637c5b399cb073a4bb017
MD5 41f5eb4c8dacf817aadfe2c293eec6ca
BLAKE2b-256 02a7bd228626e9743f8897ea27a56ffa0464d2c819c22f32f076cdb7412713ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 430.5 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.0a4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 36b0c8a6c783d294d0a1a9c9a82c922da43985cc4f23d14d168b9f6399c89ec6
MD5 7804346c44e03e279fd719674845b144
BLAKE2b-256 69d799800a5f0d9eff97dbb26ce0bdc78064c02353f7477c1752edaecddd6ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 440.6 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.0a4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a2d8ba5d0f55023bf2d920acd8fc6ab1b7620ba4b5f3f3ce274f6a7e456245b2
MD5 337090e244128e1266a83c307fce226b
BLAKE2b-256 7db08d7489ff460c3bebf8e29311a4ba33bc2c528c42e55386621a47b7bf8df6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 423.2 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.0a4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 64eb519f1163c926593e538d0e714180ab94eafed361fd1d32be0a2bbfb90b8f
MD5 c7ca874b78627faa8bd72308d8ddd987
BLAKE2b-256 d0a96f5751dc0b28e749dfd46e9f7e3eb9304b7e144d195a3697a6354d3f0a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c260d623a744b5be9dc5c67bff957a760fc946adf3bc063000de7177f2fcd1ac
MD5 25b38f6d1f250b35523e25807406d66d
BLAKE2b-256 ed40d7b9d8e10539acd3c81594e35ed6ba6f1aaed146476a9ca689c03dac9a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf5c8146ab3c1b910b190a375363eb9b79c73164eab5eed5c04eb1a964229964
MD5 a7ba53788b42f9704f69ca41ec4da2f7
BLAKE2b-256 7f42e7e1c8076ef6dd8c9d3d70684b7e8fe41f8fe0db36ef86fefc10827efd7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0925c110a6c15b82fb2aecb3375d35ab03089886298a37731422fadb865c295e
MD5 3aedda367f1ba56c2795d5576f345c23
BLAKE2b-256 bf9c25e9f2a22cf30d3a8d8b1a1852814e89d0d7d15ef2ba8f15a69cc9198196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 104df3f71e246d4f983f2cbc251aae3658b52476c13a1b488ed4212dcaa4298e
MD5 bd1eb5a8ada505b0ef7437212cc30688
BLAKE2b-256 7ba8270dcc1ba8e80dd5912b688f5860174bae3264adec5fae1fd30975757e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1f46e457fefa4565399283d45f9ab2cefa483cf4b0ab125aeccdee91d57132c
MD5 c69ab6274b8c33dd5c05fa366b9f15c0
BLAKE2b-256 0c4ca6789bfe45742e31058495f580288fd557f8aa16573a18fba71d025b8351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d03da0d7768246a18617ec0660076d8431550176a917ba23d24bdfce491fc27
MD5 2352888f0d23d0393f015d59af6ed78c
BLAKE2b-256 e852f972e383d205a07ac0e5ac49c93e59ff49b0683e44f8ab18ed17d453c07d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e33b8e216a0f429716aa06953afd1eed741c63f9725159cdd13f39861c0ce478
MD5 d1bf81d33fc0359385d94f9ff8956206
BLAKE2b-256 9b043055fe575faaa3db3a0e03d274d51ee118873a13d387dc5bfa3f6e1148c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 593134d167d834b82ed1236b2fba4f2bfc9beacd76ba2d291d9fc66ef44fde65
MD5 c22a2804b1ab7ef47160a4ec415d78d9
BLAKE2b-256 9e2945ca3675e6611fdb91a37e249eed4a12d46b617a5abdc0175b084bff9761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d28ff13cfc762bfa1c411e1e7de77620915559137320fb6f1ee62a65f49d15d3
MD5 71df3547155ec50b87c72e5912aaf8f1
BLAKE2b-256 fcd79e50c7952fa3d862a96d548fd90fe70cc073e4cde7cba137433270bcbae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9fb4629110848433264513d486cb777b20b62846278555113b002be6ef22498
MD5 d7f394cd2f7a9aafe32ce661075a59a3
BLAKE2b-256 861762e487af53f8f6fa32d70c07a6ec5d766a4729d37d88ee759a359d317fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6daad8d56b861886e8031e29c803e8b1773f7c3b6b818fd3169110bdc4106c0
MD5 b644dbc8fde4a22f4190b59602f85d0e
BLAKE2b-256 939baf52be409e627306edc2eb5d430185bb7ec34ce5f141f595572439e1cca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9d4dd88e4d0bb335a25058d78ffba78d84519aa61af7dd2f1664aecbf5b4d4a
MD5 f1c47eb0bd3205672590b10c59ef6bbc
BLAKE2b-256 ac0b0e71627f57023f6a37a75757213695c5c57a3cd2511ecb716afaf8dd96ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 431.2 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.0a4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6cba2206949fb38651763b98bc10515f5651a5e02913c02927eada4de0228298
MD5 2e4109fd6ade3c3e60c9eea447d7c0a1
BLAKE2b-256 86741ffb912671c23a4373735ece78e4194566c0c25cb8a11b5d62b896c4333b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 441.0 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.0a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a65744683d1820469fcaefe35a15e8c1342151fdf8d61e3f58e2679e7996b474
MD5 656ae3a714ae20bbb975c07e79a13edf
BLAKE2b-256 89900607192583d0fb2bd5f86d1399cd27b1dcb78444a965a138fdea58f9ed6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e86700e04503ca23add12406af83a6c83c339d4a133181da05a1318f50ab1ee
MD5 87797f7b82b09ff15dc6709cb48e47d7
BLAKE2b-256 08e07924f1cfb36547244bdac85573ed0e5b4d175eae9ca9f901314932d17309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aec493a9c8a89be1be0768ee606fa8cf0f8c868c8fd7972f2ddfa35d025fabf
MD5 2151471ad440082bf5188d12c7874fd4
BLAKE2b-256 4537869fa27e37999f84f5815c4322a814b5d7235563b72dbd7bf024bd88fa04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d0d155e9cd4de4b54e326a26279f32c0e8acaf622c29d1012d6864dce469b47
MD5 42b097934d4fb2ac6142ee4174dfa011
BLAKE2b-256 fa56ed3d9a3edae297c0794e731becf0de0d0ac0fba59482fbe1abc8a8606ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30be2b6f09a3bab631071f4ca3267cd406cf015207029bf3d9f7aa7dd746d550
MD5 afa89331183171bcabb6483a27b58165
BLAKE2b-256 34a4f7e9efed10fe28bc1de51dae51cfee33bee16da4abb1b932addf44c23d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9ed6c4e9a2a9292d21a1a91c67f666bb473f2ea9f7543670da386bc0deeff41
MD5 9cdec2c65dd2f2f4e78e5fc16848dfea
BLAKE2b-256 c075edb824d34185d483d5135fd1ba8fa02931f9b49fdb87541ffb55a8f44d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa93fd1894bf527b7b39ef438b9acf56e66a4852b47f9292fd0d7f132bac93ca
MD5 8bdc5827ae9303d9b5a57435fdc443f7
BLAKE2b-256 c950fc6a089d92d4f587543adc3f566302aec5bde6214a322f05251a799a5c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ee1eb6038e07db6acc84c654265e672bef310016078cb33b46e2f27351a2b5
MD5 9ca4fd58c360bcdb9e34dd79f4e30e5e
BLAKE2b-256 1b47ccaffadd0fbe47b2024a539dcfd5c96d274519ece2d732729bb9eb20d208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b21e49e504bf76c695dc5059ea8df61098a048854ee75176667725b587fa7738
MD5 5e4b4ec127b972cdb4e14784ccc94b63
BLAKE2b-256 8f8d8087d3182dfbe699d5d13cf76e2fded11cefc86ef681b0576b92ce354ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a57e35afbcfe980b2cdc9c84cb9671489b8a8b28dccf7a4ac5dc1c6f2dbec8de
MD5 19ed3eabbc6bf9b9b9bff90b96ee4351
BLAKE2b-256 9791dd25a0662d0b755fb08c0379ba691f7e6810e849ad3202b30bac582ccf93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f64ce29a26ca1dde5375d315eeada13a56be39368a6cb17a270373bbf158f79
MD5 75944114e63adf69384f78ae1b7bcc76
BLAKE2b-256 2fd934a6247b7b4f919cae21f7221d1123965db7f8330711134b647d9c038bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3063e49e98e1f8f887b589f28edcbae12ba460903e94038412d6009f24bdaa3c
MD5 7a40b3e022402db65817f670c30ece27
BLAKE2b-256 f9f80dd769a5f0ded66ace0e4e59f369ed08f4ced6d64711b84a484b0f0644a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ba53a193dc21c27feceff737cef667e5b48b0cac7c10765f0e7111a08f8d00e
MD5 c5e9f327bd60de1dd858da453756d9b4
BLAKE2b-256 f4646fca701321dbeaf8a3bc9b60f690f1dd4e33d074481626544322c518bcd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.4 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.0a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea3f4b8bbc70fe00e33f5907815a685124ef0429811a593020724a1af9b83c12
MD5 3e14eceb5b27757a39ddbb63e749c0ea
BLAKE2b-256 d099a900f71a2b3c19ba5db69688f05ef152846c8dd41875047017d728a3327b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e78e15c5d9c519481c1506c0fd8c11b32fff0b6e308a789801f3b593d70516c8
MD5 c8901c1d48c4557ec453cf1036d4cad3
BLAKE2b-256 9934e827c72105e997a47415c5dc98461dbc3581e8fb06dda9356d53d55218f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4878567791ffb25001f72d942e804adb139f7b851d170c741c80b23833ad9c6f
MD5 7a41b6ea9391fb1f26687b532487aa54
BLAKE2b-256 e601da65ba46301b47da257f10464b57f7635ef9fa1beab470c157f74f3e4810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ac51dcd776c02357511def3fdef49d521ea3748a33161bd33d57435e9fbafd
MD5 76d8973f0ccb89695a41bcf260e2a19d
BLAKE2b-256 ce15279f96901eb5438f868b6b03ac8423192ae8ad9c3c3ba0eac15442303638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93bf40b91c29b5e084bb0b03a2d72ff8672e52002f6d25df97be438a836f68ce
MD5 68ae3b71de565775322c6aefa9b6353c
BLAKE2b-256 a7737a91c5a60297a7b2e7cf0f8ee660432197d32b7c6b70a2e1038b1a7d95c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81478f735cc7459237bc569e003070cce80685bfe39b38aba6fcb3a198cae0b7
MD5 e4ecef0eee580496644419b520b2718a
BLAKE2b-256 65d663f440a297ee5944bb0cab75a92d2b8e47b12ab99f131ea888bba5927adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e5c5432e1c166bbb8a413968e4b899b734e3b6a269ab7c364be8123e1a5e279
MD5 b8ec50dbabd4f729099984552768aff2
BLAKE2b-256 a8999cd1c19f8a80f82cd1a93eab66e06fdec7df6f63ffd99925e1130a13c536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03bc258aed6ac50aa72df71ae9b9812c180fdd4905a7866bdc41b747cf052d6a
MD5 46a8074ab8e5834bfc8ebe0b470593e6
BLAKE2b-256 2f7e89533720bc21522d7e337b023d138c3c9190c0a550ec209c10f2bde88147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d4c0df642ccbb6861e2324874c8bb27464a4994f6e7a9d36e7c7556cd4a616c
MD5 dc323be4c2d5841aafdcc312989ca937
BLAKE2b-256 7dd5d8b430807dfb0b04d4f2331a048c981a9243e413a204bb7088aa02e5f684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16c59ac07c2ed3954aa2e52b0e72005f94350ee49390448c2a50cb53418febcf
MD5 627575b3feb575eb12c9145fc3bd1256
BLAKE2b-256 4902e5870e79dc65d5599a023677fd94f8b61389bbb6344280451bc1ce4ae8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f36a33d11e2b95d78ae448f1cc4730c48cda77f9eeebea0be700d463254fdd7
MD5 3aa5334637297b964e595512fdc167b1
BLAKE2b-256 d24c08867db3f69aa7a9a8a584f4770bb64e6492ffb25c340211cc64121038c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0531d33b3444e055f49c71e8721547030082b92558b0a0fefe9c1bf4bac81e7a
MD5 c4bb9396fbb66e02cfef18a9e5c369e6
BLAKE2b-256 c2a3bbd0232fefec9a7b8c47bd5ebeb76fc7244de2bdf43474f82480639b9a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26a660fbd483151255c766a8052f4559c080ed77b9e9e6d5348cae90c6856fa3
MD5 2f2bcd07dd99e5e041b3b8513cf534bd
BLAKE2b-256 097bc00183e318992dee3f261826b2a0aabd5dfa8871f1fe4ab6ba20a4220e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.2 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.0a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a1c8c6e2382ef0f043220f2cfeeb407eef3f3f864b2da35ea0c7b8387562d9b
MD5 45aac4c3be3b3c721a1213da55c5b458
BLAKE2b-256 a777d6f2a52b6363fee1582e254c7c9e9990dbe49566cc985a298a7ffadb00a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff29bf7cc5daeca54c990ff0fe28918c9dabd317bca8857f44d8a7fdaeb6e58b
MD5 63689cb8bebb441298ca6842a052c625
BLAKE2b-256 5524438cdecafae0400b4cbeac5b9b13fb5ccf5dfcb37f9b3d1bed2a07a71b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd9d4b41ee5d6c4dd8dab63f210f4ca03ea70caed8c78298e2187aa625803cf8
MD5 5323b6318e893dea8db3a0b4b3f2ca74
BLAKE2b-256 d84fa3dd8e487292d3547ee740a5f01deb5e5691bcb4c6c6c0712b5ad1d4f8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99cb1f7aa2f57fbb73a4b943b8a0512ee554dfce3f85c23b8e43dde80a5b233b
MD5 00519cdfd803a75633188f4901635002
BLAKE2b-256 398c9bb9d2417a95bdac833f4eeb4d00f68ababbca351439e81d074636e7c7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 befcfb6c30257f3f0345a30f3d51a1d08f09bb2f2529e9fb1171950db5ba4ae7
MD5 40352a8462e62b7543bfc9433cef7d80
BLAKE2b-256 a3bc7f3df69c451834b4030b17823445d868431fc63c6b8e09dd5d015e867f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e56bf36a26d05eb853995a1c46753ea2272a04c7dcc5299a1f2d980e699d679a
MD5 fdf36b04608693f60bfd53d86e42d9fe
BLAKE2b-256 e61e4d4b0a95d26ca4c68b9c01a438826659ca989c27499647f3149da94085d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b248e6af71d0999e41d93de14e2a48fa0228dab53fb39932504d2fdb492648c9
MD5 44341f841d04f139dc66521ba382db59
BLAKE2b-256 5edec39239039bf4132963492dfa466eb7b64d1fa32e778ad1f1ca069611af63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef165892770129e44430b34ec6e71fef698242fbd429d3d84a7019d311f79f9d
MD5 931eea35521a8f74a78bb3bb0f4bcbfd
BLAKE2b-256 b11985d0550bcd7fd036d416e89e752a1c17a279fccaa0529144528be68c04c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4208badc03eae709e64b4be9f9c7b941e106f4f40f74260c72832b64af42fc8d
MD5 3e7b2bcbbadef0c9696832a2fb0dc7d8
BLAKE2b-256 e30d7398f52983c45586bc0ebe06523d076f852ae8a57b6f717af5c114e3d1fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 855fec8458f542cb041482060a2750d0153ee8d011158906d3bd7d89201fbf30
MD5 442167132911812115e3e9b8fcbc5cb2
BLAKE2b-256 bd042056434be7e9db7ffe2379df23c99f633f8f91c9f6d07c0326f2068fdc69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1c45893ad7e7b53920416eb78ae1ae4945b9356a34c664819ab6bd5e26d07d9
MD5 9f866b052f6dadc531381f12a4a87387
BLAKE2b-256 21bcf2279b6d725963fc58789897fae8a23ab896f1e352455fb321abc5a71dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec88a92daf6618535d7b0b3225884d148a27ac3e32d4b218f531197a9062637
MD5 33a3d640c827ca3645d120a6251ebd3b
BLAKE2b-256 4abd38afbae895cadb5fb13b9787bf30375ba3ef977ae69917b1fd0859793d6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a4-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 848.7 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.0a4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2e4bfc416c235af2994873bd4c2e75aff7522d1d6da66d5ef33e148e78263fc
MD5 59555db8f127ca61fe1cd70cad0009d0
BLAKE2b-256 c556c3343cb902fe55f6b05f34ee019b8fcea6a05e3742292e5d045630fdf0a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cabe3b5098b81caae1f89c2ee39fd96b6032f5278b06762c23e46bbcbbbedfe
MD5 ea8ec17e482a6bad94c38e59376b9a5e
BLAKE2b-256 79483d04455bb52c006c9c55b9c3f94dd3ed40d211bad607bb8b7bdbde7ae07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d3605ae452bfb4a72fadd0c3a67c713378422435b752c6c54cdaa91fee5338e
MD5 490e60ef3667f1da10751db7082eb870
BLAKE2b-256 56f16bb73540cd4a7b8247618ee9c56c236167ea00fb99c018140eba19eb54d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 092c3904196806a87aae2deca92418e46bd285829014abb96ac04b428a054f02
MD5 14f4402d053a87f3401db72362ab48e0
BLAKE2b-256 9f15d1ea238f419d2c814b9456257fa701f001eed225756b1f577af7fbe54683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e06762f51062e29a61c5af274290a41692fb77931a992970e2db51631a6c51da
MD5 9f4187e29dc3283b3d3fcc48cef1b3f8
BLAKE2b-256 979b09ff91ec0d8be304d3c77d6ae1df147a1238c88c8e4061ab301c0b0cc2f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e14e8f33d689a53acd0a2459434f6bcb548a0864a2090f938227c645fe40071
MD5 4759b0f131092410bbaa497f02c7e7f7
BLAKE2b-256 4f14193a1627338a8662fa3fe2d824d158bb2b71c0590da913ec0a0e4531d403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ca44b32d067eb1c0f1d4b96345cb57c4c84f4bf6c2a5abad8c49c3a5720fac2
MD5 07ad7c825a3b7ebb734cd172172f17a8
BLAKE2b-256 7c86685b93ec7345f4f88c8269258272837bd187f30afed4cc25461932b0c023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 505ecbebc967c92300107cbb1437bf1927c981f712a2a8ecca48c953889e5321
MD5 4e18e414e432b927c7c37b24d058b41d
BLAKE2b-256 c0520b4708c6c9126b548fafa9fe7bcb36ce2b92ff032cdd26556baca8707527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ebe7e98e92512007804b45897a0c0ac453a3cdc36862bc8020dbc5668d4b74c
MD5 404744e2e8c3ed9e78de1cf1874f8196
BLAKE2b-256 6286c296a260b6a2c9d8ba9a34ec074bdadea6fa4b0002c890e178a718e83170

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