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

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (878.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (911.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (805.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (749.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (636.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (671.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_x86_64.whl (829.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_i686.whl (869.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_armv7l.whl (902.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_aarch64.whl (794.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (649.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (740.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp314-cp314-win_arm64.whl (457.2 kB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a6-cp314-cp314-win_amd64.whl (470.8 kB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a6-cp314-cp314-musllinux_1_2_x86_64.whl (833.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp314-cp314-musllinux_1_2_i686.whl (868.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp314-cp314-musllinux_1_2_armv7l.whl (903.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp314-cp314-musllinux_1_2_aarch64.whl (798.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (624.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (654.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (745.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (628.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (622.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (661.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp314-cp314-macosx_11_0_arm64.whl (578.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a6-cp314-cp314-macosx_10_12_x86_64.whl (589.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_x86_64.whl (831.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_i686.whl (870.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_armv7l.whl (904.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_aarch64.whl (796.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (653.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (743.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (629.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (620.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp313-cp313-win_arm64.whl (458.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a6-cp313-cp313-win_amd64.whl (472.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a6-cp313-cp313-win32.whl (454.0 kB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a6-cp313-cp313-musllinux_1_2_x86_64.whl (833.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp313-cp313-musllinux_1_2_armv7l.whl (905.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp313-cp313-musllinux_1_2_aarch64.whl (799.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (624.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (655.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (746.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (630.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (664.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp313-cp313-macosx_11_0_arm64.whl (576.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a6-cp313-cp313-macosx_10_12_x86_64.whl (588.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a6-cp312-cp312-win_arm64.whl (458.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a6-cp312-cp312-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a6-cp312-cp312-musllinux_1_2_x86_64.whl (834.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp312-cp312-musllinux_1_2_i686.whl (870.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp312-cp312-musllinux_1_2_armv7l.whl (906.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp312-cp312-musllinux_1_2_aarch64.whl (799.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (654.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (744.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (631.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (664.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp312-cp312-macosx_11_0_arm64.whl (577.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a6-cp312-cp312-macosx_10_12_x86_64.whl (588.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a6-cp311-cp311-win_amd64.whl (474.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a6-cp311-cp311-musllinux_1_2_x86_64.whl (837.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp311-cp311-musllinux_1_2_i686.whl (874.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp311-cp311-musllinux_1_2_armv7l.whl (911.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp311-cp311-musllinux_1_2_aarch64.whl (803.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (750.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (635.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (668.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp311-cp311-macosx_11_0_arm64.whl (577.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a6-cp311-cp311-macosx_10_12_x86_64.whl (590.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a6-cp310-cp310-win_amd64.whl (474.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a6-cp310-cp310-musllinux_1_2_x86_64.whl (836.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp310-cp310-musllinux_1_2_i686.whl (875.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp310-cp310-musllinux_1_2_armv7l.whl (909.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp310-cp310-musllinux_1_2_aarch64.whl (802.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (748.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (634.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (668.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pulp-4.0.0a6-cp39-cp39-musllinux_1_2_x86_64.whl (840.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pulp-4.0.0a6-cp39-cp39-musllinux_1_2_i686.whl (878.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pulp-4.0.0a6-cp39-cp39-musllinux_1_2_armv7l.whl (913.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a6-cp39-cp39-musllinux_1_2_aarch64.whl (806.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pulp-4.0.0a6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pulp-4.0.0a6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pulp-4.0.0a6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (751.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (637.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pulp-4.0.0a6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (671.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pulp-4.0.0a6.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.0a6.tar.gz
Algorithm Hash digest
SHA256 b2ec45ba99a56a04f959f1265f8c46a66aa67de5b785b540aa0135ce26406f94
MD5 d015facd877116afaabeabbd4e82c1a6
BLAKE2b-256 4afb770630875eda66cd299494fe54bc6cf51fe06f1586d0346bce7b4f930b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78ba93675d8d18ad7c66d7baaddf3e190a5b458d8f97b81362b9d75b5c146167
MD5 f0a5fe75f318030148f3cf854a4a4605
BLAKE2b-256 c6e71f1e5548e3595697f88e3e7aa6c44892087e85c0397423c6b60af2063dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abe756b9b5c74b0dca81d0d07f81487e21e8673fe7092928775b59500ebaf011
MD5 bb5f3edd832e9f99b206849e60ba49cc
BLAKE2b-256 11dacd7cef43d9e7fc017d76ab862a121ac71ec1e0928a75e57c694d0d0d4220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a89b1365ab7e4cc5114b76744c0013fcc900158019f220c8c77e1c082d75fe9
MD5 365b7f4e0a1446245b84427c2ea686fd
BLAKE2b-256 ec8d01be8cbcde96ac5953d9711645ad3c61e48a875f713d6823ccb8ed80d28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 067759ceedbe0b34f39f06fa11f0ac78cf2f11864ebb0487b6034e9ea038c45e
MD5 21d408ba3fad4783015f0879146c291e
BLAKE2b-256 9120c5af6188c6f871c9b725d8a8137c334ed4ed22d21278782bfe381ba26e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7924100f82f207cd30484eec5641124dab140ad432d4bb076ea53b707e45e413
MD5 5bb031ba44e929b781b52a5120cbf3fd
BLAKE2b-256 ce901b54c1f4431db0ef7b2ffa0b09133f4d2e09c404d7faf0ec88ae30e8e4a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45c19040e3dd2725503cac72ab28003fb438f7aa88b32e84eec15a257436732e
MD5 bf6dcb44a17a6ceddd3f58b9108b1cce
BLAKE2b-256 9005fdb5d058b3e46abcdf144ed8dd0af8dee60ac60dbea706c5b11759b04a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbad8d96d54d2a9c2be012dcdbe8f56872b18c8e8627cf3eda5bf8d1e0ffedc0
MD5 c3d8cdf86ea3a2ed59fe67e1f933ac88
BLAKE2b-256 47c2878891e8df03ca196eb4b66738bbb13a63cfa11fef76a462d7c2392f8ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6180a554d7cbebbb57e74ec19e45763716726dc646e27462927c5e8e6ca0847
MD5 d1df7d820fe903591198ebacc4908cd9
BLAKE2b-256 398ce940f4488873f7d5781eea02923b689dc06e3744ff07cf95cf9f75614e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a22248463be89c030b9cfd986fa29eb2f6d9b42f58f001de898d657a1bc598d0
MD5 341be84b9ddb5158dec81c973b5444e2
BLAKE2b-256 fa8551d43bba4a3e3a4e184f9927da626dfd88260880a61d031268723ad3cd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c535a416fbe3c6706a3c1ef8dd5eba98330c2be6660c2dc1ec36ffa9337062d2
MD5 5f58b0488e550f09a32939e738ec8163
BLAKE2b-256 5848487f3a98b466d86c4cc587b6242f879bafcd062413565b8058ac27f7424c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99fc9ed453503cb7810c23e9ccae9d7b961ec92561b72e34e612c2a891b05c8c
MD5 6a7e080d46f2237443da6cd085ea964d
BLAKE2b-256 b4a09acb864d8808b7254f5d36ea869316ea602526d75fa9dd716df3b9492ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89f02aaa9fc0894c3f43d3e9231e3109d85479dc9ccb877455cbe61903a7c788
MD5 2b551c89a887d0a3c447bd7155813eba
BLAKE2b-256 0897e732a13ef032dd0b41d7fa0bf67bfaf8471d6cfb2c73410ad0a051b41e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac59f8e0e96522bc3ce6a2a486250387b7feab93998d01d8d7a8dabc4162f3b0
MD5 65769fa092ab0f45ba5de9ea430e1a3c
BLAKE2b-256 7943f274ede8a1893fd22e444c4b3fc9c5d3f716cf2ec8c449bbcd6ffadfe338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 694a7cb1c55de162a0f6e7486b421adef8f83308046ab9371cfc48f109b593e5
MD5 36bf3f65eb7be87cfffb5ed1b5b9ec5d
BLAKE2b-256 21adb787d3b403311da39a0fb3ca78e118d633380980bb66c2068d3856fd9e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3f906d939ccc671cde69c29035a15b2348acd1f813c757b2301552495b6d0f6
MD5 258a53f8a4a0e11978bc126debadfd7b
BLAKE2b-256 d5d3f8b6b34aa9da9bb028686b403b63fefcdcec10b470e494e10cd049a500f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30910f5e0ab8b101b9193198d59f6e837cd7b10ca366de4b10901dacb965f416
MD5 47bad448d0783cda2a36be6cd1dfbbd7
BLAKE2b-256 008f169bdf00aaf6b887cca6d91f643c8cd9a24b41d71f971073d6567f508db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d917e61ad3c3800f1147503ac33ddcfb161160b7a90cd4af5a826ada55f016c
MD5 699b6eb4412e7da64129b9dbe6dbb2ca
BLAKE2b-256 89a03803f7f3f34895f142bc34ae9b24d4f375f0088d7c44af976a82a38c36cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55e1beaf29abbeb749d7d5d674e82fb9ebdeacf299724214b518e51568edf49f
MD5 a2a2a6b79c2778ded1377782eb9b1ce9
BLAKE2b-256 60cdb46560779691801b5c642f4a245b325d96b49bd35aff3ae76276cb1d7ad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 457.2 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.0a6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2acf267dd96ded05f6c81368acf205429fe4d6db68e5c577ffc0994142fa3c67
MD5 9b0558f0b2186bf4d788593e7f372c0f
BLAKE2b-256 e344aac8e66938c967cc578ce8169a3dcf0093e5933e887537310655e5a79bd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 470.8 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.0a6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 72d48c6a39b1252cef96833a80c8e65fe8147424162d8641bf3da9c9d4c83d79
MD5 4ba2e22f4f720b6325089fd830311f11
BLAKE2b-256 cea3582df7a34288557c9ecbba1bf02b3716a65e8a90db895e747e5d40dbf5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73c1903d45e22aa042be83f96dc13ddbe2779766e3d59d6a711b15518a7df87a
MD5 8a34247749c7bc88f4ec7e8a788b21df
BLAKE2b-256 827a807293d719f0594be43bb5e11eaa5af8193e75364856f2f3c436d2cc94d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f96ee1fa1710d6c1de3d15de22206836a591b2bdbaf30d7f1169fdda603a508
MD5 0aeca9521b96d05ba4539f617b45b2ef
BLAKE2b-256 03aed9049a0f7bcb37a7d705ec0bf1020c95013f50f3cd5bd70881b45895f96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1c416676a7823b9aec3e13020f765584ab882af31490ee1f2158d1533c5495a
MD5 ad796baf97d16aca81e9524b5cc03a61
BLAKE2b-256 f7cb8085428371e031073c537b97028dfc09f72572e0f44c7f27e300dd63ee9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49c99419422c99a1e640cde51a9a87499f51a653fea72bf5d598b20b79903ff9
MD5 3af92b64eec16d8f67ba4aba05843587
BLAKE2b-256 dfea220dfe6ab888a5e39067c0f607a79f8b6174e2e2b17b40e73dde2481d47f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ad4cd6a9ec1645e471b03da43875d68ae38e118a46e824f262a677088545bf7
MD5 092d98ab1adce55c80a2a858f0fa3596
BLAKE2b-256 81058573a9db52c2f0cff46008d561507c6b8e6face6d76e64b8deffa5bbe86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45793e6a8b23d8f27ef2c2c3b2166179e309588b0ea30b3d073b8e313ca965f9
MD5 6f5683f54d225376814e1603d046a05e
BLAKE2b-256 f7bc424c83b711400b51c332337a86a92ae97de48b06bad0fd810f3c75e37134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c68a5fc593c904fc145cda2c075b27af6c9b87d9132156a60eb90d59792e5b8d
MD5 778fdcf75d0d28afd9976e43cf27a476
BLAKE2b-256 13e6db50b0be1860d7661908e04c4816340405868ebb7a9e300d0da2ee2dde57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e2b6bd1631ad1facdb31eaba8dab6d86172471a77872e47439cef6787eefdac
MD5 5e59debc92c3669adb504efbb561db94
BLAKE2b-256 e5b85b6d73bef94bfcdf5744dcd7ee44cf51443d2bed6fdde22166a685a8d973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a9bf070bec5937c7a59bee84155c93d5d486801fe0a3c7a43d240cb63a9b74e
MD5 0d4fa6f117da4c4057cbeb4370b6b81c
BLAKE2b-256 350c9bce263500dbd75cb14e1dce0d1f55c93253c3f48079962c10648a8b3f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40a2f83ca49aec07bf483f59c9e8f52ffb51e515239732dae813c9f9c2f1d126
MD5 78fc2875a176e5b556cee8ccc5655928
BLAKE2b-256 6baefe9d44447449e7e4b00fb19aa3bac4f6f5d443f5e448efcf02329339bdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d9ff833f8e67beab4830ab3bbd3baa491dd59d3391b91d10d1bc46ab13f5f38
MD5 be9e3e0b2c393d014127a3b95a7995e5
BLAKE2b-256 3c44028a7d6c4f2b51802a72c81ee49045e547d96064fc8849bae29ddff280fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0ce57637956af4c97ad305fd16f306daec045fd2189f65d9f3d9e687936519f
MD5 c0f8c19f448642368bef0597b7897d22
BLAKE2b-256 ca5abbcb3d0e1e7dfdcbc1bdb4f1e68aaafbdd9a2aba84b4412afed4772a44c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e5263d84df0474e0dccdacf80df652406153724555a0890ec00783570db1c16
MD5 0b658828d6c199b85c312b80ad69afd4
BLAKE2b-256 24de1e15d175f02c68b02a8ba178fdf198e252a783529360225abc5c2f9742f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 594bf02ae804029bded25094f63e348575700456a041c928e2e91012105408c8
MD5 d83c11b749649a5b079aa74638416523
BLAKE2b-256 442413e0e6b365cece4259e4b1f6066ad20ac18160aa2892618c0f2588d0423f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4743c59c6332624b2a50094ce07cfd7777a8524bf46d7b5d5905f555d1c3288f
MD5 4af97a79ac7c0eb9094d7cc1b0e4afae
BLAKE2b-256 2bf79be9a9dcb1a7bfeb1f54fb76f139fd902faea4d3c9323ef3c06945bf8cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59e0ed69a72a623c4b2af8cc3d837c44ed9b80976c3cf31a699966ed53cdc372
MD5 0b5b0c8319fb6141f1edfe480874cb4f
BLAKE2b-256 a0b597102bbdc81643e2d6925b8eabd98f85e459a44c4673e41e1527dd74964c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3710e8533878217f9fe3aa4ce6b07796ca234ead0923fb59ada5dd629bdcc883
MD5 1cd5ac0a9c2525d292f12b2229163ce2
BLAKE2b-256 6f737e25b736850c4fa77978908521f15312c0a0a2b4e7d3d01dc3961e55515f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b7f80278464bf8ab8c67b9c2ed18d3a05b2b71642215a7cac176c19eb018444
MD5 e9d6bc2c72376e3fdadb1cd2245b74f2
BLAKE2b-256 feea546ae74d79e7c7e937ac9cf65a8b8b9ba7c84532abefcc449d117c85df2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c95d024e37743215408dcb40578ede1ca461447436796a5a27f26909a72fad7
MD5 ac7683f721eeb5ba339fa50c467c0e86
BLAKE2b-256 52f3ed00fb407fbe6b887f2806a79f79fc761321e1c773518a15189253c57609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efa58893b818b4276b44db4d2bdbf408d60d64f6d42766072324ec9343f1ea87
MD5 abcff2b23064ae086935d3e0be4952df
BLAKE2b-256 f31c7d960cfea31e7cabeb4aa8303f3da3e01244d998eedc8233ec0a2f9d6aa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 458.0 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.0a6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5c0506acf4a2e1cf480692e6e3bd72bd77d4834842ef7abfdd96828a9754ea84
MD5 a47832f6d21802e530856f64ee9ff6fe
BLAKE2b-256 3395298f83b0d17f91496b7f0038055f8d9a08e56f553d8c466e47d484c47e86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 472.3 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.0a6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c3ecb50992eba01b3f731b667ebb94b2b941950f4aff6aa084eb57e147b40945
MD5 0d2ad2767b3e31a7887c063629274c62
BLAKE2b-256 9d4a73adde2efabe9671025d1a139be72b26cb7e4a0717ad750b2ca981b21a33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 454.0 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.0a6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4953f3aa95d3463f664b02164c95f8f00297eb554a16e84ff6a53ac1e49403ba
MD5 7ef7caeb4c62e4e897deaf732c5fdca4
BLAKE2b-256 f4987ed92212dfb40a075d2391fead000c6f037f42b9b619490667b624997817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2532782e1c55350890a9ae35183cbaf624dc3998c4d4b62ae4c6cfc83d024db5
MD5 023690b146df075779b4599f9ba5162c
BLAKE2b-256 e296851cec49df02d4b79ad6b5ad9d730a645886dd47f995f3672ca009d356c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8615d97cf8dc612c82459b20305c8a12fde0975361f6fdd8f4ff48c7295f61ea
MD5 978d3b3949733c79386c194a9feb678f
BLAKE2b-256 2397e75874e50113a3e2ceecb9f701da1249cc5c939896973f13c75cd60cf972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc8277c148cea3bd8d53454a55d0a791147599a07183bba226e2a017336278cf
MD5 8e5558b2fc485516cf6c47c1a081e75a
BLAKE2b-256 75a8e58623a8f97809d33a7a01a4ca42a795138e9976277562816c93b3d13621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c041b826b73d285d2175b3595cef16779623597e8f959649f9025c43b6be5c6
MD5 16ab592675446f192170b49efe32e3c6
BLAKE2b-256 4dfe5242802f321610e88927bf2554a8003468f64da1444e88f994e9f609f9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31dc9f64956a5c259f11c5975929fe395bedf7a9eb6c853d6ae64531f30ea213
MD5 43aa42e442203bfd8695b302d06d9bca
BLAKE2b-256 dcc83e7d058f077ec787f10c84ef4dc6e0b0661112f6783f1479c3cbf8b0c6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdd05f062545a9b0335158bd4c3724e46364f4607dfbd9e52107b3be3b06ee72
MD5 72933ab8408055d5f8703cf681bae156
BLAKE2b-256 152e81167f979d57974947616d7c2629c9814f0817e17214ec2d6755be10c47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c5621fa2de5b93829b1b10930555773f1f634e009765077ad1b9ed70bc98ecf
MD5 6cd087e6d90e1b5dad863b4f3f9484ea
BLAKE2b-256 38adc46c196f981f10b8b7c384871122797c369d1a7f80d568a95fe35af229b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 246ccf974d9d0428d3c4bf380db6a6984b3fbf89a4aed3363f05a63827c9580f
MD5 c84e4c736ea681f544b3831eb260b459
BLAKE2b-256 bdd9f5c7c2aa5e1fbee796f6486cac56efa173921c84677afc79ad9eea30f2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74f8f3309e1521561ae4c03cffa9732a1da84337a4d76d1da8987a45d10f83ff
MD5 fdb938aa93a93484b037f8f05c3942b2
BLAKE2b-256 593508afe6ca894d9e5d2612011aee1e79d446b0f14860222628bb7224298b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63df856c39f09fec85f3ea31fcc3d75374e910be3d03d99115f84bbc233c6586
MD5 7b5a2efaa2d6775905b702fdb99d3eae
BLAKE2b-256 acb6e33f5e1590800692c40573633ff6f6daeb6bbacb980b204999dd7f887483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c19c9313ba72ca3b03329342a04eeae0ee7e12e0f522e866a4e02d99090bd55
MD5 29d5e88cb6feb469c654b3aad592cec1
BLAKE2b-256 9b4cd57fc779b45d2c66e707b3600b9e65615834bdd61988fe4e1068377a6d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4798ce26bb0fbadf9801c3eed8784ba8e591b4a780ff1b4411cce64d1a88315c
MD5 524e02edeeaed24c45b8957cb8c71792
BLAKE2b-256 ed434e72ef1ec48a8262e96ac97e73593bfe565893afcc08f32a5a85536d9f41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 458.4 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.0a6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2572fe3885f178c569f1be29f7560ad72286bb37e7919cc5442cc145ece7ca41
MD5 572a28b80d25163c4f129fe3e141ef1e
BLAKE2b-256 e7d4edd39206e1d9bf04532d14ce5172fb7e1e5ac44ea856f9f6597ad3d0a2af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 472.7 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.0a6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fd7117aebad566fb277853010e22763176e1643f2be89e09f162f003fe42c17b
MD5 5ef424efc2da38646acfa306c2f83abf
BLAKE2b-256 4822950486779193e110673907287690186f5c3ed4bfc49d4fdcec4bc8721c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26c77a89336ad83b568d079c9838acf0fc1b2ef2a6a6c0d74f6fb41f00250a57
MD5 ac8064d62e5853837d2c8c42a026c56b
BLAKE2b-256 617b69fa115a2951a05f9e842ba2053ef34f500a8e94dfeebf4ec87bd78acc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9c3e3ec87c8930420764188c605fca19c81fa32ac7fd985b96578a84582299a
MD5 ea16607f44c166c4e4cceebfd2722d95
BLAKE2b-256 adb169c30d6a011fa1f5031ab0a1f794eb20d08a35f206f099ccd3e6d02fb2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e0afa48eb47694cea3ffa2a41798b7afbfca0a05ed953117ad67d00856f03f9
MD5 7b16b36ecc0c59ed0658f776bcd05305
BLAKE2b-256 dae0521f58b2039c111c1bcca4471c90513d43f35b9fa5868a116e01ba118d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f8cd88ef8aae2cf31b9c166c7b5d2f503ccc58adeebd21a97a5a471affe5bdd
MD5 179971c48f29bd39c55ac9f243a87b34
BLAKE2b-256 d1030edb9d0aaf162f93ac604a60543b2dc14f275cee12e230306ab3c729cda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07a3a027854cabde7479c10f07d91480aa85b14c143e941bf0e802eb5efb7b31
MD5 7d1e5d580f9f86bf2dea55ea564b0f84
BLAKE2b-256 def5bae1eb624190f669db58499a3685fbb341d06be747330e25bdd3a2816c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57948b30d4d0a1097b1a03619959fdf466d8067a25171fe0357a9e2f18cb7c2e
MD5 ecf5f21b51c0f1f62cec74564adcee03
BLAKE2b-256 56a5126ed619289752d41d9f09d7c966f4d570a9c153f74b1a5d6d2357f617a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63a95f73e5b04974c530ba0c118c4e665120e21cc753567c0545287e49ae25dc
MD5 03230e8f3b5c8286c2129097e750e0c4
BLAKE2b-256 dd91a335f9f79aae8c036d0af5030bfa19454e5270029a3335bd5cc1c34bda55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4bf936569059cfea55f43e7f11549498d2d18662d2f1b296f0744f02fefface
MD5 6ee81853c001729d87b0be1212eb97b3
BLAKE2b-256 329989432e4014ae295190716b3350daebd86980da415b21988c4a2c9e5f8100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bf8843c11ca0caf74f01aa0dd154bba58c5ec87c1a5b2cebf192fa9a2eee369
MD5 8bfc348d380d5a88e027e5ffc74f1d42
BLAKE2b-256 a5827ba23fb2a14e8dd8ac0a896eaa65b4885d2a1b61d8042580b080e9331214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bec06cdcdafb58e0190c712ef0f1e6d75e5389421192add1bc890f033746577
MD5 e0fb48dc949f12cafac8a00d269b8e0c
BLAKE2b-256 358978eb24ee88b59d9e3a1a9ebfa25bd49fe34de3859780cab0f07483ae5fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e269cc62814077f3968c7d935de897e2e9f579ce48b39c69dac6c0abbd6a435
MD5 618a4dcd9b0a66076065d8cc575eeaa5
BLAKE2b-256 0d648e0dee676afcbe708f28eafce9f96aa8628510698ab0c976363b1c1a8e66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d349b93cb322dfb49d2ded6a172659a2daf86d1d0438b5c904102701f077fb1
MD5 865010434b9326d7288021e86a838b35
BLAKE2b-256 90d5e36ac2303d8f308f1e8d19c413988c4c7806aec3931e33524bd2440a01c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 474.7 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.0a6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 046ec9ca9b2e7cf4e76e5d071e24ea59ddad8fe9de4f7585179a93f9aa36298a
MD5 3d9534324fd2bd28b9be8a8c9dbde58c
BLAKE2b-256 dff0576a7fb64338af69594153eb85f1f5056f15b7f65c3a45abe51663adba4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0f98d3ba20b5e2a480d1438d6087f920a558f530e27b17aefe695bc112aee3b
MD5 702f166d7d2f594391dbbc82c739279c
BLAKE2b-256 378ebe593241c73c9f2556156e3a2c6ba9ac17b19d75bee0e89e3a8d3f9d2276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10044c9caf0a52513a1369165b8df3db6cc9f319cae0cb6098d18716f04b1981
MD5 e53a60157e41bb646d0db87ef1e235b2
BLAKE2b-256 d17a51d7f8134c47dacd51ab626deb2169821b96fb00b71c84930c4be7dfa868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb703ff27fd1d1f0bce6a5bfb538796672499393394ee45367805da3ab52e64d
MD5 879267c890ca71ef08162693f6a83b18
BLAKE2b-256 c4dbc8b2a59799b6cbcaf74042870da80d2a9bd7515d78f84e05990cba3e135a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e8cee69bda3f0fc1214deb07354ef52764535dc24c0f2e46ff7f929b354d377
MD5 c007f4f862f97764851377296104d950
BLAKE2b-256 ec734f2218c1fbd93e60d85333e33bb62ad28cb3dded9f7d08b2f93c1608805d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 718b1012639ce6692a41639b427c08ce8a94962044fbf2d93ac598ab1c78019a
MD5 31ac9b13c3f98c95b048fb5a153349dc
BLAKE2b-256 abf702ae9917b2bcf57cc4845205636d606b9f2e8ba951cef947f8a6aa258bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bcec31c02372461b04deed6f07f9ea3f02290e38274002182b34af71fb5d11b
MD5 fc3120792f0fa4fb168217091742e11c
BLAKE2b-256 5b03e431341ea23a9c99919971a3aaafc1da88b0a12c1ada921d5ea04ee1fe0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 583232487ec40201aa0739d836319cfd118a330fb0568b8dcfcd8381291cbe7a
MD5 8fd7a3de44c20206c9519074163d9caf
BLAKE2b-256 5be7e71ea1e3659da0d9a119e7abae071d5e0ca3ab8ceb2ddcd17f48099a04e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50223a7531b010fba241d1282d5e6079fffc84d0b1657653bd145f706bf85fb6
MD5 2390d00b281773746eda34c1d415195d
BLAKE2b-256 e49aa2b0ffc9ba7c4e926bd709ec4977831828fb8efc8036e70f5fc9e9c41ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d5d0faa51aa0e89c6b50ebcf6f89164f515172442d665682355d1c1fdfc88ea
MD5 34be4fec902084d59efb73356b98bbaa
BLAKE2b-256 3a608b1f5e13b626f3f92c0c52034264a7bdde6ac8cee5800301ba7299ef2b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebbb526be4163256000da5fb07992486ada07872213fc48c943b8a719bcf6f53
MD5 e515dcb869e677fc9d62c813ba4cbdba
BLAKE2b-256 e7a1caa17c51fdaab08ef53d76ecb0d614a71287af0eb6ce1895ea9097581b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e78b1fd9152c7f72b7b9546ed6b2256887b4ef712d99303cf8e041e56a7d74c2
MD5 0748b04a41cffd9fa9644032bccab579
BLAKE2b-256 24b6870ad7caee933ff20d8464d0195db3be56374904d086b83b8d216527d576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddf747b3407f37a2e2aabf28680b41625371d90c3e18779d81cde9433ce2840a
MD5 66fd4c3c96847f7f4c0aa8785dda2f46
BLAKE2b-256 3d262a4b73e716c415276eced6a2bda58dd25a09c6d4f993e9904d1d8932f939

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 474.5 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.0a6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f51890745d2d2cd9d7e354d94b88004943fbc04191b5dd810b869a2219de8613
MD5 581abb1e45cb5f2e86338b5169540d9a
BLAKE2b-256 2be1d6847bfdaafc24b4587d75cd0aacd2054a5879b3ff0ec7bc918a584d8c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3898e74d179f41183f5c4fbd9c7e02cea50f9a88de51826cba186350ac60f8b
MD5 7c5f7c399844c0a82a7aa38736d5abaf
BLAKE2b-256 6989f967c00f949e11a6334a018dd1c36b5a35094171dd8a3264098cf9bde484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95d9fa1f3a0b6d49783b9a423a633df8d52e27257832a8602feb40491697a9df
MD5 bcf9d1025745108df5ae35d69708f07e
BLAKE2b-256 e63fa7f852a50d7f1fcbc06df24e429b59826ad9442020b1743ced2ae3d54382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abd6fc74434ead9e8c83884faa95073350f26d89d37b9201005872871a4d528f
MD5 ddedb9b8f59763381103d2ce002a2169
BLAKE2b-256 20ea080c6487b9a3f04a400e2df1dd0b5549bcd6bf3eb9c5384a26acfbc49638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e0f90a95ca761a5ac45ebed6e69af1f2073cf6530fd7ca1688de7647e0719ba
MD5 5a40d13f519d3ae6406c05d0a8f52fd8
BLAKE2b-256 ce03a79b8dab9a16c9a26b7e693974290f70d790099469753e9c5aea3ff1b1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da471919b9e19524a62287156d2bdb99a57d101adbab587da2d76e6816948641
MD5 4c9178e6338e23a48af7b3e30512d22e
BLAKE2b-256 919cfdedb421a3ec17d6a413f6c0a278bf5b87c743d722a4ed8c9118c8931106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3107e9e1f1a4d1c167bb2e8122dcae2b6991cf453bd440e596b85c6deb732ae
MD5 36c34c14d283328b8f9bd181b9e833ce
BLAKE2b-256 d2bd9c33e00dd259fe2758a4d5146d085fd4818d043c383f6e45971368e2cf82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb7cefcef355deb3dc53ed287ee8fd4ac6a35e052a10cc9b246f6c61d4e80ab1
MD5 c85414bea3b89706834c76cbc593b659
BLAKE2b-256 4a40b3381d8b8011cd61f50c33d3d2add08930d2884dd32c20aacd5f5db609b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a45a70d54fd67240283f8fdb80fdeda39b61ddf72292a6c0c449ef54e765627e
MD5 bf1b4aed16f061d15672420010b6c1f7
BLAKE2b-256 8b1b306a2d9ec4a74756e840f16c4b8f3682d5ba2833f6dfdac2a2770089e234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee05fcc85013dcfe5f7fdfc2a739bf3e54acd516297eabefa4bb6fce405fd204
MD5 64350a9a20a176349bd4842bc0bc1b37
BLAKE2b-256 41b5e41843267173441f371ba3699a01d9f8b12aba3d34d6a03f0d38ecf9ec9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99f0d0deed7c810257a5a3cd1d04f5f4d36df9a8237bf8851270858edbd60a42
MD5 73ca94e73ca97bf0eb83d14be69735e8
BLAKE2b-256 2df7235b9619117c93942cd8e8183f5cb7fc08052cd4d0c285b5707d58dd787f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0207712b9af373f9f4ae91f758c6a1fb31599ebd9da711a535b08dcbc7dfd63
MD5 dd714d01ca76996c4133847f075dbe40
BLAKE2b-256 73c391d5c5bdafae221377731d3dd397d57315bbf17506d31bca45a6c573150a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a6-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 878.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.0a6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13e1f6ff1f06dee2bcce116f9b0af60f235a406e87a04239fab6516f3b0eadd2
MD5 62608b405dc32a0c3038f274014e7341
BLAKE2b-256 0f98fd469073987b226ee93d16cfab8f3eee5909aa39406466033634030d7388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4a0832e8d0e9288aaf2a6294b93e34d689310e05b0d46f40f19ea76e27823eb
MD5 19e7fd086b2c5758ec7374c9089dadd2
BLAKE2b-256 4423c2c5440f089bbea53e811032c1147c5e840dfcfbc1db046db27bc51837b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0590219d9c08f0dac629d7a6412958fe8f943b869e2e311c7cd1256dbb6c74c2
MD5 49f299462163326246e2ab2a9b0e6cb4
BLAKE2b-256 0787a843f4aa7d2f8d545dfb094a1b3e500f7a97104ff96937c3d510870617a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c514aade6db430c7c5f6cc67dce485cbba3432a4a620824ab20ff1cc85db505
MD5 e35bf3e11c114eda1ef5e0a42670833d
BLAKE2b-256 6c4d0dfbb3331a289f662fcfcec575d09790609c0685006e7854744419477e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9825bbd11fe781084875e9cc6675c5c64549b0cb3ebf033374bdcf7bae45c168
MD5 5181fa8222bb8d3efbc59e05d3bcceef
BLAKE2b-256 17c6377e78f422840b50ec91344bb59d0ff1fc134b4f40137deb9e872be4b5a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94a495991592f2eb80dd7773a20b1630b1078f092c8b9472465eb93e2d5f9db2
MD5 e2616a13cbd359ac1c055c6749c708f7
BLAKE2b-256 e35965f5d74aa3c6d782b72275890da28b224c3b0d64b6a1890e1492cedabe64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e633053da8725f7d55f1a68c7d503efb730e7794b547a2756bc2b15338ac4759
MD5 e70add4d89b19883e4a51a0409dd7a85
BLAKE2b-256 03ed173661052f4816294c64988b674ec8b7b88661c765a96fa0fcab79f9ba5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abed48f842e94b0fdb49beb86958f48b61f282c923bc0d22daf2985bf447f040
MD5 2067ffa3c7672c83c2d67c47c56abafe
BLAKE2b-256 07a31e6c774d1a177abe463552625906d8b3c86e686ff0b97ce302dc92c104d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77c5ac9e9923f11ff8610ac680c187adde3607a157ec8c0253e6871904eb7b59
MD5 cb8875c3a80dc4c9d1c2567ed00bc349
BLAKE2b-256 6dfb1bf38089660b99a79b815eb0c256088605df9de8f28fbd553b33beebce06

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