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.

The easiest way to install PuLP is with pip. If pip is available on your system, type:

python -m pip install pulp

Otherwise follow the download instructions on the PyPi page.

Installing solvers

PuLP can use a variety of solvers. The default solver is the COIN-OR CBC solver, which is included with PuLP. If you want to use other solvers, PuLP offers a quick way to install most solvers via their pypi package (some require a commercial license for running or for running 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]
If you want to install all open source solvers (scip, highs, cylp), 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 included solver:

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 use the default solver (CBC). To use other solvers they must be available (installed and accessible). For more information on how to do that, 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 git+https://github.com/coin-or/pulp

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 .

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
pip install --group dev -e .

Running tests

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

On Linux and macOS you may need to make the default CBC solver executable:

sudo pulptest

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.0a2.tar.gz (32.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.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp314-cp314-win_arm64.whl (18.4 MB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a2-cp314-cp314-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp314-cp314-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp314-cp314-macosx_11_0_arm64.whl (18.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp313-cp313-win_arm64.whl (18.4 MB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a2-cp313-cp313-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a2-cp313-cp313-win32.whl (18.4 MB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp313-cp313-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp313-cp313-macosx_11_0_arm64.whl (18.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a2-cp312-cp312-win_arm64.whl (18.4 MB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a2-cp312-cp312-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp312-cp312-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp312-cp312-macosx_11_0_arm64.whl (18.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a2-cp311-cp311-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp311-cp311-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp311-cp311-macosx_11_0_arm64.whl (18.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a2-cp310-cp310-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp310-cp310-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pulp-4.0.0a2-cp39-cp39-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pulp-4.0.0a2-cp39-cp39-musllinux_1_2_i686.whl (18.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pulp-4.0.0a2-cp39-cp39-musllinux_1_2_armv7l.whl (18.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a2-cp39-cp39-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pulp-4.0.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pulp-4.0.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (18.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pulp-4.0.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (18.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pulp-4.0.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (18.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a2.tar.gz
Algorithm Hash digest
SHA256 90a2fafaf640dbcd37dec6cefcb54f96f37427f71910def734c271134c442720
MD5 033eebcbac2b429c9b96ebbeaf9859aa
BLAKE2b-256 0a3e5fbb6515c7e4529d3a9808bc2ccedb92ae75c2051c4599020f90d209b365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e31b3a7290665d50a5448fde6b1a2c181d5f6ae7ab2e5da57d1b8d64b7dea1f2
MD5 0640e97d968aeccac2053e77304fb6b4
BLAKE2b-256 e43da0e53671eba7d64ea81f4eadae6d86a561d8a1303fa21922d069fc741da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1053d8930bd6a1a4c85e4a771332c8cf5b6fd48646b53eb39469558f38c708c
MD5 9ecec6a392965a0e33ed2070b5014389
BLAKE2b-256 c81b13119f5d2ef54975d9df1c8a41485f6f7fc20242cb6233761186f4c59624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08654b148a1e7d9e763b249c9cddf13f07ae95d72eac7ebbd0581fbe8faba0da
MD5 751ed27e71d0a002d2ca1f1e6165ebe8
BLAKE2b-256 d1e59f0888cd401415cece30c19dffc0acab3f1be5650800e7d59d6e928a5078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e5451e5a06f9c62f439355132b0b83d1548b9534bdd2a914da4d3269b6a3430
MD5 9b1d7da590d061b64bac14039831c2ed
BLAKE2b-256 90004848a488a2bc2e8b5c0be3e04ccee64aec87c1bd2e16d3f858bfc331f658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdfbecc2e9bf34f678fad89a4a5ccb09fe780fc73934298c30d9d83b4b85d16a
MD5 d3d75501314adf5180c3f0763301e8d6
BLAKE2b-256 fea70f9acd13bfb9cc0aa3ad73a6721509343ac1c377d1af7de37ba3cb3f1eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b3dc3b5c8736c5c25339b0669f835ffdc009df2b18bc54039dd0bf612377720
MD5 ee7ea4e83f27b7f821b3747111f66776
BLAKE2b-256 04d39eaeda1dbbb95aa03e0f1759a0800d9b125cab11edebad3a44c4985d9bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b4f2db8061a6e80e14af55a4d153a17e6a4eb0b49915680e33f254d4457c3d1
MD5 50e4ef5119196b2cc1e947e01da8690f
BLAKE2b-256 c1cd351d2be04836455f2be6231eb80637042ffdc81af432f5bd08e56d694754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01ab9a97cf627afc1a8771f20f1316ed3daca1492385bb3e5226205b6d3df8fb
MD5 5167c6a4c04bf0b455ae3326870baac5
BLAKE2b-256 1978ba322af947344383fd958f2c1aee4c1e8694e1a48d5f10c1a4098da6b940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeb5333167b268c7e64a837102b4e946ce6f0606d63039f80066ec226202d87f
MD5 8914d4f889bf4ec0d469ec822b9c8e3f
BLAKE2b-256 7755b86cb17228773921c2d057088e86d55c21e7c5741d30bb60e6a19013d928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a2df10a1b011092adea0689f702df3c20f2fbfaf232434d4a4350dc2ca61285
MD5 8abbeb9f7f1e624e4a8873c413da4ea8
BLAKE2b-256 31a066d9badb47386361fcc0b7fe3f3283c3436ef0f4e2a23bcb3e8c5fb3f94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a669dee93647f162225273f1a0fecc63ff5105e840252726022583abba3810ca
MD5 bde4ba558e1e007e9bd5bd8ba45a8562
BLAKE2b-256 a7bf370364227262810737b06516bc77a78b49a15dd5107324155ba6bff96369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 232e5abc11b7d8fe8e43e2cf547e476b56e0c3913513baa955dd38c363c0141a
MD5 5130cb162860c10a1fdf1e100f984da0
BLAKE2b-256 d6ef2b48df7db3adadd6dd9e24f4bef44ff02f4cece66cb972fe5f9b7ef4bc8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed2f9b7b05039b4739804941bc137e50220aa636fd5830a93e8103c0fd48aa00
MD5 f8943cbe8fe8deed887f5b46b889751e
BLAKE2b-256 78602bb3b5249708970b430ae1cd15f12f794c887554f994d690e3b86e71b919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b129c387fccd3d8bd543a92a5efd599d01dc92362d2eb583b31ca61aa7f83b34
MD5 2257834630f6d661db4452e5b8647c23
BLAKE2b-256 ec2a8018097587d70cb1c3dd3331ceba8be7f8d24b034efcc9ed803fedb77a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf7e55a92b8da2c099c1b1e9b750adb891a0ed95e89dff7a9f3f3733fcc3dc4b
MD5 f88da40aff1aedfb86a4f3c22c52d3c8
BLAKE2b-256 6abfd44e4d9046e001d8df5155a250f6b42cb4c84d16be4812dd74dee113c44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6727d37ce8673ded4d214f9f2fc01ee45a143ed647ad2445e650ccf69126364
MD5 30bee54841e6846c8dd70229b868561b
BLAKE2b-256 33bc3067b3ba4fe4f16220f8a6b28a71aa71de7bd627bedc135d3899d265362c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 762648f5c73e6a863aa1238535bbe2a19851d568f1adab4114e142b7a2bd7744
MD5 4580e211c035ffd1b8b06c3c3ca87375
BLAKE2b-256 60d3424a4cbf9c01ec0bf97b15574120ef0f8e5701972ede4c934e8479a363f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c54906668251f627e8883c7a659ee2111a95324a541ab2fb142431df606fab27
MD5 ea1ff1f65c9efc9a345cb4b9c5c4eff3
BLAKE2b-256 60212796e97736600ff622dcdafde94902c84c6259418e1f3bb97207ca0a06ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f7199049f5911d780686545779b376cfeec4308a7251ef915d8c910db67b9401
MD5 5c7eb877c205c2da83b8b1257755cc6a
BLAKE2b-256 e3228b1b52b659e009b6dbb32108f977aaaa94e8c95b95228b7c951953e01681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9f8e5a8fea389cce41cd8d72673e0cf54838de0be61bfdf8e295733f7642d733
MD5 ffbcfff733227dd3740b76a355f8bcc9
BLAKE2b-256 8c6805137c463b4b0a3cc033d57f96ee1bdb7c7cfac18b04d36b6d5d17ae45e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5a16a43f1ece1c2dc3545f3bfb85f490bd2033a13ee295d3f7cd366310a0d95
MD5 569c8d4a132a3bde82fdab5063e54f44
BLAKE2b-256 325183ad03245d0b7bf1a73f044b2e59fba94f150be5ee21ce0c0ca3d77c4539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd6a1861178dbe385a2b2e7d5ae59e8c3fe90af1b259523c7ac68def0ad7bf25
MD5 eabc0d8c01849dcecd599872fd5e993a
BLAKE2b-256 db12289e025a9ae488c1c61aa918976cef44a2d78cf8059f2a8b517f56c04b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5d048874b65de2df4e2904c643a82f13d24243fc31e57ad8179e0d388d1630e
MD5 3060050ccbb20732ac00e895f97bc63e
BLAKE2b-256 686da2908c04f256d6f629b183de23aacf071536050b987381ba2b9e9036247e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b19a82494872ce83813f09f2e72ba1e58bb414557c925a763e3ed31272dfc3f7
MD5 040f27837b39217b864a0cd1807eae04
BLAKE2b-256 63ae567bb581fd66efdbede4c5bb4bcbda852913521a1ebb1adeddfdcb13d5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cda4479d147b5df7f2851073a01bc551e2b81d5b85240d8cbc1e4b34c2752a6
MD5 8226718b12d4dbbca53d52802c8ba036
BLAKE2b-256 f192b2fdbb6ae552c440002b985d45e73cc890f4e32572e2621fef3b14901b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aefe60b6cc43d6d95ba7e911ccfce58a4db71db757aa925ddfe76dadca6887bb
MD5 f12cf8ae4f968701ee1d192021b6a0bd
BLAKE2b-256 463321985ea88e7c3ac52a03828de020f2f75f66ee80198fee487a4daeaf350a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d84d44ef98b855183babf6f44a9c7e3d25a3784266b24c9bc91f64d59b37ad7
MD5 274c634a92cf3dca488465a6085dd880
BLAKE2b-256 01866f3c3176acf0e7011afb5a55a0dfb991f5100d36c201586ad5767b589afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67b1047cdee97be2ac41eb4e39b925f3fbacb2ef84499ce463a0d4802836b430
MD5 bd67f7c54c12a5b87771547ec6b128e9
BLAKE2b-256 f299184039fd86ca22ff0f171db80a0a47e34e01391d63dd2b11619c3c49a721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ff7471583330870f47434e219e0a49ea4ae3b38cf9913d6e3b96e7bf5dbd14c
MD5 fe1c8d48da495ded9bc64d599ec5a1aa
BLAKE2b-256 f1d27d2ebc048e6d55bf3d925077e49e406a82f26a9699ce9a5c2af90a9e2f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eafb13d6a1944335b608ff855e627aada4f330954dcb2ed089ae6a166fc22940
MD5 e149a58ffa7aa90ecc100e02d4db85e2
BLAKE2b-256 3d4efa52190bbb0d9b1d66716eae065ed1253516ac2009d7821dfbda38322a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcd19e524d26dd6b4f405e38cda2ee5344495bd95012834f2cf3ce62365b4260
MD5 fd4794c89c03fd0b3ebadde37690dd94
BLAKE2b-256 df18aab140fbdfdab416fd7be5e559b647f1c0f76dd68b417c26027b410df5a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcc59ef655fa003f067553090d703dc5fe5813319635cd31d9e38b957eaf40d7
MD5 fe6bd5b3a112db531e692158f57844e6
BLAKE2b-256 b8ce6203d824fb55cfbdd9624eef59ed83fa6107fc98bc381775a96a92748f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e93486f21b67a97da43baffaeb1f885bc2040381ceb020f5d0acd25c0082ffe9
MD5 be0497d439b50881d4272db338d16337
BLAKE2b-256 a94eeeca7df60d5a2af875cf6618493eb23ffb2eb5a6a0d838fc14a0cd3cab29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ca500712efc3d3febbfc7f7d60e6fb3c77b32dfb1370394a8fd048856cb4764
MD5 0616daf7283299620a36f1f3f688937f
BLAKE2b-256 4f43caf115481ce61406d09e6c62f7843d4122494e4741f8ac2458d4fcac14dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6334149069fa4d8f9774e00b853fa35a99a86780d663d25a10bb90155a8119c6
MD5 31c31a4c7e678861204cf4d9c4c51fc9
BLAKE2b-256 7985b0de41e10bbdaf8902774a4116a57a99c7269680d0f27d6ddfd133b71df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e81c56814d2c783d5dd657cc9654874d99767fef905cd415369680aba1c78c1f
MD5 8e89213999bd9b83518ac84577d6025f
BLAKE2b-256 baf16bf21a9b134e5c5835c8011ff82610d33d0edc8a5798b3bc621b882256da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1ddfe32140e1b2b702e6f3784426dd9b7c3e541ff1ce0d174bdab4ebf741b9a
MD5 f5fda27f13ff5550cccac341806c1c6f
BLAKE2b-256 53653ce9a69bcd3a8d18f629f5e89bdf9680ec972f097abc73b0b5733abf7d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e033aa31c2e04fe62be58504df22c865e8f7d3d9f46de9370db17e8adf5dd98
MD5 622377041981ac5b4ec743fcd5a863ab
BLAKE2b-256 35b84ae2d2333ab99bb24fe55eec32761bad25c92d0f7ca21af6d8ab40808a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 890b13c9911c0c4ecc15a30d57073a86e3ed0c5959e57a8a849067220b1c1933
MD5 e9f6f69c6050dfec48ab45c4969f6dbd
BLAKE2b-256 7af41b76ed2d935e2a4268f5f002cc8de614219a57639b8572b76c057fa4ae79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aad37a8473b40728586b576e36ceb42ef934d287f776546ecd397b321a5647c1
MD5 3b25646052861b8617b94c79e82a0e2d
BLAKE2b-256 c3830dfc16c1ab91d0ee444c6b87ef9e4c32214ea34824bf3be0efe73f1b152b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a6d6a6902c18019bc4fc52203b4d4c77b26149bd1abac3689f01f9d14c68a657
MD5 ffb92229849628dc73a57f84b9d2f88d
BLAKE2b-256 2ecfa6e88347bd4e48ec94a7af25f1656c2bfb31e66779c6b4aaf02f4709e85a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0606537af9da5043efebb96c4206383b6bff5fa9b6fb7dbb9d7af1b0aedf9e7
MD5 328625638eb20303e12bfd7b521282aa
BLAKE2b-256 93cf6ed3769e0728fc6a3488708c5f5d27d67fa20dfef0aa0cfaf7f1fdb4122d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 23a4a07902316a5a5bc53cbb151620f205f1af652fe930c6b136648b34e73aad
MD5 bca0ded4b7cc50a1b6675d29c5ab2556
BLAKE2b-256 51317be24bc73c8db579084b790048d22b927f0bdaea44d0770efd53df6ec797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b98e0fe4da81d56f169225eca856ac6419a3053a60eae997949cbe113d5001d8
MD5 d065006b975627e247eef4f3dc204240
BLAKE2b-256 1f5488015e357c9961ee1fd251e1826273122b35aa225611584d28ce11c3c099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 909462fcfa8f1df8ff934d179992d96f1778880948473234500e6ab88b5bf6c3
MD5 2be42556e6c45d40292d2ae7d61e27f3
BLAKE2b-256 3341f1d7c7094349f3d500bd13e14dec9b43304bda8af817dd9dec3c8e900989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25bb7d065ba908e90956b53bb00e12d74ceb5da586a54c499f3aaf17bd7210df
MD5 ca8983d41ece3cc2f3da0eaa41c6ff48
BLAKE2b-256 6698146fb7105c1faab81f38b4bc4ed127324501efaafb209d279080f264319e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 710e0cf56e822b3fc80f6622f0ac7197128266b215b69f1da3912ab55fd88f87
MD5 02b21c3245ec4852e0f800492d073935
BLAKE2b-256 5d3d5a0c70d7c9aab491ab095ad2e69f323b8e51d55497adc9e6971672b18c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43b6d008958c15b7b34acd79e90de67401876472fbfac1cea55a7b52f724fd04
MD5 aa5ed6840b1322d176337a7571248361
BLAKE2b-256 76eefbd0077f8f5df41456b7237162a709d955304a673efcc3bd384b981eb8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbf4e82e02f3394691ecd95bdf2243d95f77970cce7f32e09c1b47181b7cc0e2
MD5 44adc2cf24b700942261718a21859ea6
BLAKE2b-256 847e93be7dbfd8c2f00d42ff5c6962048038e8938b6f02ca074cadef8239b8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea109970a6ecddea5cb10aed31ff49305724a46c401aaba6a9680d747813107d
MD5 ce52f430d5bd5b867d874ef7aa12eeb6
BLAKE2b-256 a472b7b3e4a0cd5c7f53c47d8d0c0d2858538455ac8d3f79f819a4717771581e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 473091b4377e9504e626679ccfced9b0be0444c3ad9ca0a67420864c7e383234
MD5 606248e1c897b8eb46639b2bd3cc71fc
BLAKE2b-256 b2d0f6d1ed6b953c498ec8de3a8ec3f7008373d6298b9f45afc53cb47bc645ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11e04b5ff6a9afb8f764918f46e32a121335780beae6a7498e5c17a61d8af35f
MD5 b7e4eb88764f3d6b7f18fec79e9db5aa
BLAKE2b-256 a3b7512cd7aa5a38215eceaed88e9ddb61118e7a6fc36e941a52440559c3c817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 315551beb4136fe1efdd62fe455e542caa78a453914a99e2df19d6c0c16bb112
MD5 5f37dfec4a3da9095a30e1906afa2577
BLAKE2b-256 8aa3bb9d382d03038c42005627fa30613c30f9d04f4d0df775c2b9290797bfa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed41650f63fc2a5f80724d6508939a95056a1e622b8fc302de5a7f6d3895c572
MD5 f595ac463938357bcf1f510c45f3e481
BLAKE2b-256 cdda1e3567648c130449795b73e1533c5cd15e981a17e7bb43833803295fd386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ca05f16da0eb0c32b29cf88d7a2b5f8e2882da3441be63503725b11274da438
MD5 19d3261c0d3f747a16238e153bb26b6c
BLAKE2b-256 2b2a67c8bc7dad466ce7eb378cf9eceda72e6cd516d7c4df55e91d3cb50e4ef9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c6b249bc6f51eccde35ea61ec6d3ef85e40d8f85c63132a349cf3e325f5df64f
MD5 e0e04be7f05327283dc3f1dec4860ef2
BLAKE2b-256 b9acb530ab0d32c43fad5e1504a68e752019379cc05baa63ca51fccca24982f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93c88d49abb5b4043e30950166780c7c2e851a79c3444c2324376f782f1dfefc
MD5 135db6eb9f65ab4d5118036fdff15050
BLAKE2b-256 720790f333852c072c61509f746fba4838ff54c4542e33e6d3f1c7e46d8ab3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef8b0cf385a47a84aaa023bbf3810bfa1e98edc79e21606ea10fe91ed094c09a
MD5 fdb8d2649c3b790339d4e9fab0231f91
BLAKE2b-256 046197c57da6a98002d028864e48268a59007913d9a831663259f93c327d314c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 461af0422264f6e0cba2d2ccac80d6f237b8cc606738dd85aa92856a93cf3130
MD5 b62daf90ecb74c0f9a34b0a64a6cc92e
BLAKE2b-256 e9829b4dbaf0bc678274726fc032633a9b78f2354c63e67e6a83f3bdca6271d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2c1a72a600da9dfac76dac56b2a73b059466f87bd47b8612cdacb7fbe7b07b5
MD5 d6078b112d3ff86bb2c1b1cd190be1a7
BLAKE2b-256 d0037c3f6a47fdabebb748f82cef3e4b85b2a609e1a8cf1bdf42f9944a3f840e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0f1335e3c9dc1c4e8e8efbf3ae1a35c171e47a3bcfac3e4516a780ed334dcf4
MD5 b11ea6dbd9b1a837fec14932d11f1e01
BLAKE2b-256 a543c97f1642c006857ed740431cab879a0c9ef2823cfcee110749c00293cbd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d308d8fdb6db6f580251b3e0c7501a52290d1402df8480212f68493ed554a892
MD5 c4bbd2e79c436f78caaebfb8d796daba
BLAKE2b-256 a8f5eab7a418871429bd56752d41e04c34220105d37b629ed43cd14e53c0dce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc7d885f7127e666b7d18b3a8496e39e3273ebba82f89def351e1eb4d2ec3204
MD5 c7452c4914a7dc14d40141baf20689a9
BLAKE2b-256 3c60b0519bdfe971b9f72b7674a9f0bc25094513791ade72f3889d233b8c349e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 337dd501f5913341ffb9f11805984dcc364a95c83afa0a2d6f38e6a2dc41ad62
MD5 d7d2c22fb5a2dc2cda46938cdbf1a181
BLAKE2b-256 790f2e7f8da564c964609420e84a3ec1e0aefb8d93557f57a83b917bedaca287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc278df5f998b69baaae1b381e4dd4bf9065043ff251bdefeb55395fdb72ef23
MD5 cd016fc86fd6f1aed3e4f6f9767934f0
BLAKE2b-256 6f8aa9f2979b8cb776d90fdfde3a23df1f18dcac33b5c8b7667eb5a997d98d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 150fc0903bb8264aee70719af78f8975f2e5c059c219c91dd343fb500e72deb6
MD5 959081ad939b0bafb77ee62618fc3285
BLAKE2b-256 a574a884e5ef2730a004e770399d90b6895e3621cb8281344d7075e980195637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6bdd5383648baa1ce108321fd59f431c367a9150e3ed2a3b1bf07a7d973e995b
MD5 06fd031bf7fdf171487488018a487a71
BLAKE2b-256 134a0fb796137b3c5c740c5298a5849afbdcb749545985af00c1cbc19f37b8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f4c1e11a3ce28396b28571d7cec8210ef1fed5f5b7cdfa70c31750f5d1602ac
MD5 c1dcbb6225a59fa8cd02e536c1ea2064
BLAKE2b-256 4c522351d9be12e0864df08d763039cfea8165b0a274cddcab263044f6787c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07dabafe0e03aec8ebc577c97d0192e65b92aaa7d4455449103cfc925771fe6d
MD5 3ed6f5d6e1b5c4e2d1567f39f398f5ff
BLAKE2b-256 93fedfbd25e03b1ee31434b839939fa4c7f52c62281ff2bd61dddd828ef82e48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59b26214fd4787cebd8a7c51e723c70424362aaf74375d4b85ac549dd4baa9df
MD5 abf9f9d46900250b204a6dbbffa94053
BLAKE2b-256 8501bf4811f33fa5197f044b3ff34b293757dc7f36ad6f6a2f051ba4a2a74f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68d9fa3bdc5741ee9129de11f6ec3773a9c3333a267849b6b643fce0b1cb29dd
MD5 17873f6540ee3c1effa10d90afdd7b53
BLAKE2b-256 d675b0b7eb383ffa70a286b35ffd46f1589f09089b4ec7e7b8c2ac64b745a3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81cebcd8437370ba6d329133e3f55bd1590544cb1df23fe62e6305d39d7598ae
MD5 a6fdb353a3800949d189f53085af9b15
BLAKE2b-256 c20543dba7237e32eb307c37cbcca5520d0c3c5fa5eeece325aaf496c5cef8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f56612b3af4b6ebf547824754abaa1cc32cbee1a51e7ccaa63300f017832de6d
MD5 2871ff7607e594920b1808044787271a
BLAKE2b-256 429d5b91faaedd38727339f3f20d253258aa36de5c89405ff7e1837b4b502aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01756207d8a7a1ea5d2cdb4011f6f5b34e5e116a53ffd0a0a63a42b9f023e70a
MD5 b9ada748ca030c55367757a5065d449d
BLAKE2b-256 362d9ef5eecff00d33e51af3f34d38da34bc99d9397eae0d05afbd18176bbcab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6175e9fd72c45dc34e4692493e03b6990c7efc44f78dde2928081cfa3bc8d82
MD5 35812cb7141751e945a34fd0b65d34b1
BLAKE2b-256 1bcbe8d90fca09f75a409a6f31404ddc5e0d138f17e015a220a19edf3ee41aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25d95c551939bf8bd9ffa7363539b683b3dfbc4bb73e3d642c867259838beeb3
MD5 f382b96fa93c9ec416cb9197f7b7ee63
BLAKE2b-256 32b432abfc230e0291a33bfbf42d4250236856a28d643d3c61e596cf7e73fd76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac142f38daa2d1448c0917558d5e44ee67ba1bac5af75b966e748d6fd42d0243
MD5 072c693483454d4c77e26d783c8b216d
BLAKE2b-256 c05b2e24690c721328e831f9e4d04e3b5903d4a66b0852bfaf122e1e7979b2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a818c3cbea2397d3d8a9f023935ad0a2eaab5f130a097689cf7a24e41ab1b1a
MD5 a5dcef1823f841e8e3ef0e432c61bd60
BLAKE2b-256 022de3ae959d5e956d7ca0e12b5397c6742d6d625298d47ba89229f5260cf3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db567a48151f1fcfeb985b61947732f45c12132df7a17e7477b05280a8d766d6
MD5 01733dd89d71acf880db2d0a124d29bc
BLAKE2b-256 24ae6a77c96dd2427b77f740a2c06c12a876295289fe8b0968820d33907754dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ddfd67efa7f14ede8ca05ecd753752860fb66c094e3e86fef4892c2b2a5faef
MD5 fc81296b8277f03d63cdac35576f6832
BLAKE2b-256 d9fa6487b66c32ae68edf3165ed7e66be4c93b976e76135972beef190ad19d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a213821d20c4cf5bf72cf4a0489a1f615ca0f43f0af09c772bb14b34422f9999
MD5 5aaf4dd582a725deb0caf44324b292e0
BLAKE2b-256 b67f3a16b7b2fde18dd7fdf84f2a7be319ada963a111cfbd435105ba53fccb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfb483ca2c0a08e9ca0831829f36b4f239624b271ab0fb7c7860cb6c608661ee
MD5 fd073c8d43a08868e19f8326635f040c
BLAKE2b-256 a8146e2b6689b5b2635390e248183a1474b615dd2ba2396d3d0050caf85122d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a57d960c21577453b682424c1dc33407096cb122088c4bcc09e1fbf9270cda06
MD5 f66a4aae697561adfd7c9a136b269bde
BLAKE2b-256 cf4a1ccb85796a0ca98bc8f0ee807be42fef656f4f2cfb1eb7d88e2fb54477e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3706f51aa8b19dfd605c2e22b460497022a5efb98ef5506eb0b89ddc72d1943e
MD5 591c9bb327404452a636e71bf33b3912
BLAKE2b-256 d3d970957bcce9334b770eb2a49b908e7b31cb7c234b41b9dbdb81ad95483e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2876e5209baaea9da1206acf34173ffdcbbecb4b965998bf64f4925d167398ab
MD5 c788787158d17262a94971db5caf9113
BLAKE2b-256 81bb25e09310d7c6b0b505a3659a6ba03abb786599a5376774b791621ffb46d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5f2339b26395aae06aa1e574a4fb27326b63d5ea8bb1fa057706124294deba0
MD5 aeebaf0a8c0943a1e8f0ac1f4a4dbd6e
BLAKE2b-256 8bf40c94f17d0388c8d85bd8463c4822198a51eaa2e5eb877288e0e2abfa6544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29da0e00fe41cb26374b7062d539fa88f843000bba68e8b89cef464e303b7842
MD5 62a7d14e2480a8ed694ddd43d5cc2ca9
BLAKE2b-256 a9d137275d4954a3b70819eb7fdb260f325751526256d805a4c3f6b847fe1b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7d90ebb041f90d1fd9c8b65bb84e3dc1d482ad2f2ef3130857fabf76ccafae3
MD5 8b631bb8926ad5ff5546f4443e5029b7
BLAKE2b-256 813aa137d81e2426368a2513ccf24370255fab7350e94134082cd6391d02b9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0760557deedfbe3f6d9ae43009650396da8a0b35fb384e8f71d1608a18261fc4
MD5 de642aa34be3276d46e289c0deebc7f6
BLAKE2b-256 39499014658f518558ed718eac6d2907e5d3cf589a01eef78a3fac366595d91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f578bff97282813ff3934d9d999d17f4a2db97b92930a4c1b91392cab6bf83ba
MD5 6ea9cb401f63eda85d67a4a1170bc0bc
BLAKE2b-256 73743adc11c19b926c7ee1dede9dd623dc0061d46f931750f67751b2d4fea37d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0a888598c13d719289a0c547fac7d7de08018f7eeefccdbb650e77b3bc59926
MD5 ba4f7bf3284813add9291e42caf4d72e
BLAKE2b-256 14226d15491ef77a45ddd0455d73cdf9bb980813aa085ee7c207250b98b77b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2b0ffed36bf60fb3d70fd281c9427fae4bdf16d4c6616bdf31f1707bcc73e2b
MD5 a09daf68bffc01f048d5b2edbf4e57b3
BLAKE2b-256 f39d520a8556c0f0a778971295f166c3967eb8551756101d1cdfb07f50be3f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7ec7c005d2b6005b0c91e684251c1ef5c3fe9b5e812083ca68ab263ae536ded
MD5 9e9a8e0b58fdf32488a71d63ac837a4f
BLAKE2b-256 0e210722726724e354986d8bdd1dadf18392ede0effe150f37a57b4c6b870c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8d1683c2873dbb08b7b1e7bf8f1892e988a4d2c8a41275919c57366cad9b399
MD5 7c30cbd30d7ddd7cc763079dae7a1a38
BLAKE2b-256 5c15657c5a31e5bb1b6e3fa87895cda717b52fa2e717d06998a46c8a41e37b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49fa6370919f12b4abd37ab1c5f4af724f117e47e4247c1449abe67788722755
MD5 9113a9ab626171b4d00eb539af49cefd
BLAKE2b-256 d5dfe665800b40ef3aeb84a3f2cc70901acfb8ba3a52e6fcfbd933a40298d096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2353a91669a68e42a7081673c6ec57466d95728161daa067c4488dd88d080dd3
MD5 87726b47f6a5592381952ee410a1107d
BLAKE2b-256 8610df1cbccff4b724a7467c2894b86903b99cccafbd9786b3ee8558a43d420c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df3831f51f74c626fe5900cf522e2f50752e635cf0facc5dd74707ca8244df4f
MD5 5ddb04896f2c532f74ccda1c85e43fbb
BLAKE2b-256 b4af6b40fd4ca973351e9bb1538128521f2be42e164d3e7ecd9f2e8b935be4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d6594342f5afd31cf9ed289e5806cce58149d8833ec743cad5a96a7c4c56366
MD5 515d4ffa0ebf2d50cf54ac842b537a22
BLAKE2b-256 ff03537fba0a1378addf38bbcfc8554585fe65860fb8aa4c8733e78f143444e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1db5b11d8840baf764b482126bc1464509684aaacaff0bc047baf6c638714b97
MD5 6a07658f804123deed94255a2101eafd
BLAKE2b-256 137fb65d7868d21ba088c5f61d11c3a010899287da06269ad0d1502da42b9b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 448b9301cc5efc1701e856bd93aabad59f26b8a1831f4eb49238d7dbef497961
MD5 d9eb8dcdd61cd0f14ccd400ef8ce3913
BLAKE2b-256 0877c505acfc3cc0276269a5ffeb7f79a00bbb2981cfc07f954ee9fe77340e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec9bb1f92c27a62d9b04c9e0b1037a5d78acdbeeab3958c716e0610edd05c04c
MD5 1cf25a891cb73f6b975d8b8682a9c6b8
BLAKE2b-256 632f9c666f34da1c0a9cd848012f16e4621d3726c2ce94953120f2f2de26f84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01b1061250e0ae0c11ec21b42b174e04a99c96832473871654cf4be07e1c138d
MD5 d8d8aedd388ef43c33b08313dd905e6c
BLAKE2b-256 be937a33f5b7fd280ac7658ba53d1912806210a973333034b0e0f56e2f4bb479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1ce83cf1f60926a9fdcbc78ec63e86f6cb1dc5ffab3330956fa79e04e28e056
MD5 bbdb4a8081a00343ea7e93ec511f4c5c
BLAKE2b-256 f680925125dd0c92e7e6afe8706da7838c073ae12631710d92c172cc96ba196a

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