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, and OR-Tools CP-SAT (via the CPSAT API).

The documentation for PuLP can be found here.

PuLP is part of the COIN-OR project.

Installation

PuLP requires Python 3.10 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[ortools]
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))

To use the OR-Tools CP-SAT solver (install with python -m pip install pulp[ortools]). Every variable must have finite lower and upper bounds; continuous variables are solved on their integer-rounded domain:

from pulp import CPSAT
status = prob.solve(CPSAT(msg=False))

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

These types form the usual modelling workflow: create an LpProblem, attach LpVariable instances with add_variable, build linear expressions (often with lpSum / lpDot / lpSum_vars / lpSum_vars_coefs), combine them into LpConstraint rows, and call solve.

  • LpProblem – Container for an LP or MIP: variables, objective, constraints, and solve API

  • LpVariable – A decision variable belonging to one problem; used inside expressions and constraints

  • LpAffineExpression – A linear combination of variables and a constant (objectives, constraint bodies, intermediate terms)

  • LpConstraint – A single row relating an affine expression to a bound with <=, =, or >=:

    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

  • lpSum_vars() – Sum of variables with coefficient 1 each (batch construction)

  • lpSum_vars_coefs() – Sum of coeff * var pairs from an iterable of (variable, coefficient) (batch construction)

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.10 or newer

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

  • uv (recommended for install and dev). See the uv documentation for installation.

  • 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.0a12.tar.gz (146.7 kB 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.0a12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (895.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_i686.whl (934.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (965.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (860.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (714.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (810.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (689.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (683.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (728.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (678.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (717.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (716.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_x86_64.whl (885.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_i686.whl (921.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_armv7l.whl (955.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_aarch64.whl (848.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (680.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (673.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (716.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp314-cp314-win_arm64.whl (508.3 kB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a12-cp314-cp314-win_amd64.whl (522.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a12-cp314-cp314-musllinux_1_2_x86_64.whl (884.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp314-cp314-musllinux_1_2_i686.whl (922.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a12-cp314-cp314-musllinux_1_2_armv7l.whl (956.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp314-cp314-musllinux_1_2_aarch64.whl (850.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (682.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (674.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (716.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp314-cp314-macosx_11_0_arm64.whl (628.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a12-cp314-cp314-macosx_10_12_x86_64.whl (642.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a12-cp313-cp313-win_arm64.whl (507.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a12-cp313-cp313-win_amd64.whl (522.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a12-cp313-cp313-win32.whl (504.3 kB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a12-cp313-cp313-musllinux_1_2_x86_64.whl (884.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp313-cp313-musllinux_1_2_i686.whl (920.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a12-cp313-cp313-musllinux_1_2_armv7l.whl (956.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp313-cp313-musllinux_1_2_aarch64.whl (849.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (682.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (715.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp313-cp313-macosx_11_0_arm64.whl (625.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a12-cp313-cp313-macosx_10_12_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a12-cp312-cp312-win_arm64.whl (507.9 kB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a12-cp312-cp312-win_amd64.whl (522.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a12-cp312-cp312-musllinux_1_2_x86_64.whl (884.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp312-cp312-musllinux_1_2_i686.whl (921.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a12-cp312-cp312-musllinux_1_2_armv7l.whl (956.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp312-cp312-musllinux_1_2_aarch64.whl (849.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (705.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (682.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (673.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (715.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp312-cp312-macosx_11_0_arm64.whl (625.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a12-cp312-cp312-macosx_10_12_x86_64.whl (639.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a12-cp311-cp311-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a12-cp311-cp311-musllinux_1_2_x86_64.whl (890.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp311-cp311-musllinux_1_2_i686.whl (929.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a12-cp311-cp311-musllinux_1_2_armv7l.whl (961.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp311-cp311-musllinux_1_2_aarch64.whl (854.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (681.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (711.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (809.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (678.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (721.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a12-cp311-cp311-macosx_11_0_arm64.whl (638.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a12-cp311-cp311-macosx_10_12_x86_64.whl (638.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a12-cp310-cp310-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a12-cp310-cp310-musllinux_1_2_x86_64.whl (891.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a12-cp310-cp310-musllinux_1_2_i686.whl (929.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a12-cp310-cp310-musllinux_1_2_armv7l.whl (961.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a12-cp310-cp310-musllinux_1_2_aarch64.whl (855.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (681.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (710.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (806.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (680.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (722.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a12.tar.gz
Algorithm Hash digest
SHA256 bc26893421aba184ced8ed100deb1c09e274c72a373d97fd93ac79aa6fe9005a
MD5 a6e33a4284c00ddd8508080c4fe71bfe
BLAKE2b-256 46d897481c9d23aeb8706eb2cf5081bbefb73bb6b7697b451d3c5e20f0ee35f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68428a676f639a255f8148d651e869bf271d179f13277c04025cbf0f44f8049c
MD5 ed78444872c9ff493824d8b108a73068
BLAKE2b-256 18f258c6e7c5a07e06b0f440104890716570171498bea6573c2931b021a4ce9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffc74554511296df6ceaab3bbf736d9e70df8cc0f3ee566e0ba351f8ab3eade8
MD5 5d8d103da015de1f09169288fcdb0019
BLAKE2b-256 deae19a4c7b39ee7943e50d02d73c740c39869c3dc045fb8546cb54e5b5c05a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9aabb9a35e7973383ed15fa285a398e7fcd5f8807e4d19a0782f190026532cf
MD5 e0e7e09f78176048431545e276d7ebd5
BLAKE2b-256 849fdd20da9aa9bacca55819baaf89cfbb8dc97eb033a1ff524771a4b287f798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de83c35c66b6016004e2517e683f389d1cf7eb05508c9548100b62cdb5027ad7
MD5 7770f784c8e9c12d6b206ea1069b712a
BLAKE2b-256 13495dce297d1bf061ea3810b6e263fd2a761e51caf9309c426f94eca6b41c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0424ebd419b41538fa8a01a86da31dcff9fdbd571f78d4f5297197b5dcacb0a2
MD5 53d6cf6fe1fe912e39bc1ddbc055e0b8
BLAKE2b-256 5fc8ca7dc0a5f811f515c73e632fbcf78f88b6e5b678224d254bc56b8698eb29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5e5d199b8147bac91c0347f8a7802010dd706c7a1c09f6bf21c3e2975df3dac
MD5 7df5a64e2d8cb859294ad0df0beb48fa
BLAKE2b-256 aa752f919d83613bee439a122d1295b3994eb407704936be4fa8a29b88f8d1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4155a64e73f9f922bf5b3aa9f17b1991003b661a22e139f1fa147cdcfc03317
MD5 ee05ce3775c5625f58b45a250eb0e0ba
BLAKE2b-256 5bf0e8a43a9455c97d99fcdee47ea3ad020403b7cfe179c85eaec1a63e21ebdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5521ec1e72ac200215cb5733092258feafa90f4b6c87293c0b87a19248e2ba87
MD5 c5f6ae53136ceaa36d217491a31b192e
BLAKE2b-256 c010a8a4a801eb90fe91aff7eabe56555e4f817293aff78077f0353c98b55415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb60a07f8d267bcc5d52d63e564cedd5b7aa98ae54f139ddd989ea9f20e7ccbd
MD5 7d97f1c60b950df8d331b2a8855237b5
BLAKE2b-256 5aa6af0381e3fa7f5b91249b85503518ccd60f05996d0ce44e53ad7e75129143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5426192724a9eec225e781cd8fcd1c4ca9eedfd5cec876cf84d843e1a1caca0d
MD5 c0045ddc21b7340d384998e50976bb25
BLAKE2b-256 177532be0b61e01ae0b7362ee3e6ed4f390c15f4f9afa959d7c47fdeda5472d8

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a12-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfebdedee8212d55d4862d2fe924c2b12e96c1b048b42a828ba437256d3bc6f2
MD5 57af4f959addb6c5169cbfedc74a6c33
BLAKE2b-256 4b53b3bdf1c8e28a1d33d70916381c0a6f8857000a064e8153040da134871dde

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a12-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc1feddca4f3ba2b5e9656c7ddc5af33109e6f013a587165bfd2f86241e3db33
MD5 3d02278d36f217b9f4ae37afa177d954
BLAKE2b-256 8eb59f55b9fb943ffb762e88688a0b64d6d65f5794b83ebd44471a9bf22420f2

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a12-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e44115b4206f777c3fc8486bffcb4fcdcf007ce7dea0ff764ac950731ef2598
MD5 f545d5b663d29d86ca4e35cabdf26618
BLAKE2b-256 0728e5e59b8f0322a5d59020b04049a436b83999728fe65f48fe92df330d32ed

See more details on using hashes here.

File details

Details for the file pulp-4.0.0a12-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f4fd9d5688955e815d049988cd87447fdd22b8cd0cd89c6f51642a46747d08a
MD5 d8a3ae6b5975647b1e0785ed808226b8
BLAKE2b-256 e0396f2ff0bc1ef4f05c9dba3fa1c3832a7665500c081769cb96ca5811bcde21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c447b489839df2d9139ef33d126666fdb78db0d61231139b6e751de6ddf28d68
MD5 d47538cc8d3392371b2e3520d0419552
BLAKE2b-256 8b14199a4aa6b73eb696d484e7bea3d659c4067a466eecb3f3eb8d2e2439fa2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02e3a03421a7a3c36bdc7c221268c8cfcb1f6fca6925bad02924ab15fcd69c08
MD5 b289138789d01e43f19921fa4ed31003
BLAKE2b-256 1fa60bc0f4758e08a1d5998c6c3bee584308bb79a97cce4a174a7f1ac483ee8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe7dbe64c918b1c2273cba3beba9e0f546a834efa7651c0a83939f19579bdb8c
MD5 7f656759f55ab7850ec9fe61aa3536f7
BLAKE2b-256 bc47b15133ef088a3f50820726164897c30f365651a5a404bbf64388470ad5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85cee87427f71128a7f3a6f70a790954323ab72a6012676bd2e7c55f2dd4c593
MD5 58313f7d959b4a120d7c5f76707c9ff9
BLAKE2b-256 b3c9795b54b1d38284025974f9e13d617a8bb5abeec1d93ea35462f3c24f4002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0766289640084a702fb48f6c2c92c65c04a45b16d10572c3c44c7aaceb62ea5d
MD5 209ee85d2834408f6ca5bceb8682adcb
BLAKE2b-256 a143b0705ec7f226b49532e234626397827e76cd0a982abd21d7f07395cdb8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68e9eea6b172e9fc5d59e19d5eb00a865d51800f36f6b0b198db6ee35604dfb0
MD5 cc4dbd5d474cdd8d18ee1e809e51e677
BLAKE2b-256 4e2495beeabaa133181f180d36cedbf7cb130ced7024f7c547f459dd944a7b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2415b1dfa46a1759ce22630809debffb298cdc72e799104ca148ea19bb65cd5
MD5 d2e248910925c0434a4014edd647a79d
BLAKE2b-256 1ed1b95cec21e6a05289aba966b0b73bba60c4ac41732756fc0e84d32a0c7383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe0f34aebfa19aa81970691bbea5b80984e6c48523a59e28a3692e89e8a26f48
MD5 68d0db7c57f032291a70e2736d6dcc2f
BLAKE2b-256 833ccffabf028bebb37dd769ef6be7b0fc4c8fd3a0139978d9a3db2ecccc7fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 959b81010421fda558c712d648799ba190465085f3aabe1b4b15945ca6b3d8a8
MD5 715ffca11883abaae47442ff6b4c1140
BLAKE2b-256 54ccf0d438f7e0c4afad709262f150ce7fe030d086151c08b24b9d89c8a8695a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0fbba2cfb769b0bb5de4f6cbf18dd330a13d96dcf0db06d7d8b836ffb765f9ca
MD5 6abc7776ec26e102480ae277c6dcd0c1
BLAKE2b-256 b078f240843a09062b20ae62b184ad5893d8f4c770a6e8a37254dc55f611d3fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 508.3 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.0a12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b08b769490db0f2a603b85229add9b8ef1c6a257fe95fc1fb596cdaa9aa833a0
MD5 3c10fef351740def2bbbc2fc16ae9fd3
BLAKE2b-256 27e5e78641f86b40e2b33d2511260667f5cfa30c192b389fe36a5a5039d487f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 522.6 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.0a12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8a1840a7f1350439a54f125f4536dc7aa37cac3c8a44122329effd9143310bc
MD5 277f3a9a69cd2d93cd0c8bfe45b3fb66
BLAKE2b-256 9842ab8b275606f6efbeaf5441981ca76ac10701dbccb602d9cb608f46f6152d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcb0896f04c88267781697efa4bc54e3bbb7b49d2b98a9fd78a1503a05ab3681
MD5 935c53ab3f812fe5be04df9b4cbec7b1
BLAKE2b-256 47809e62089bdc47dfc4c08b4aaa56771116bfda350cfaa9cd9569b4ecf112a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b4f18fcd29afbc55e5ba72d7b58af26fa9cb1422baf95a13e07ded7de9db257
MD5 74fbf172442ecf2b0187fd65211a283a
BLAKE2b-256 dd8e48230403d7d2df3794b3c53520c562fbf80fd0c22c9fc0b65767fce66647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 311886814cde2a31c4b1e4ed905e82649cbfee4094757268013e5d3dab5f88a5
MD5 b4fa07df20b30f27efd42f710fb67a40
BLAKE2b-256 7d66d95f030e6e1365915a9132a250d07ac648746b819e2ae1f30e7feea64bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4edd8c51f8ef34cf817d05308498313d35b786130b6c3bf21567e934554abe27
MD5 57a2aac577e2129209601462dae8110e
BLAKE2b-256 8186fa2a630ce83e04c059a97a73a032d55a0a0abe1f7b1334542d04e3ad5c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e74d9b8faf2d25706862877ab36f391980d6ff2efef3ed0bb97c66620aa188e9
MD5 2047e387c8fbea0108954a3f6074f298
BLAKE2b-256 2f2b4d4765ed054e56c094a652f8f5cfafc766ff4286f3a06e5fe842c84c900c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ae56a53dd034aa44215f7ad791866541eabe7a5577d8dec78435670d4cc0244
MD5 c2e9c94c1c77d7929f7308eae1b92b29
BLAKE2b-256 d7eb133b29d1b68033961f0372efed9898c9a9d7845e55e3731ef0fce00b6943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f982b8f4854ff5274232857d815ed63777db9cd10e122a41d2c31eaa7ec55d1
MD5 70c1928cac9b9577aee27ddcfc71f03c
BLAKE2b-256 a94eb2a190887466bb3b6f10543f455ccadb3690f2d3ba0551523557e41d7bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 560892e4a1d487f645bd3f5c20655ba0d752ad5bb0023804dfcb7a804d7b1f3f
MD5 f8ae1134b9b8d4f4718134fc38a40668
BLAKE2b-256 af54d65bbe33f1b2ead3d3cc957e0454a18ed71b6633a29ab8cc407fe0c5d52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d74daaf6e2158c4be24bc795fd1f5e9c9be327fd6cdff0488bd3fa8252e7d4f8
MD5 d175f8d0ba0aaa3022a5cb5f60837e1a
BLAKE2b-256 f573cd5fda40cee76e557043d80d08b002bc44b8ff4f418f8a73b759e5f0b6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0f002bcc8d9e8ce0fbb628113296ce183a79ac07f9fab8c7b3bd6bae85135d1
MD5 84a34dec9f386fe1484a25eee8b79de8
BLAKE2b-256 f5570ea00f2a555b96c12e39eaf69e4e8d8cbfd6f2b8d88ba7ac9e3ee1bdfc5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5c4b145a5b61caf1cb9604cb5c136fd8372d22e14fb58ef51ea31fc55f5049c
MD5 5f773f7e2b329c926faf075dc7be6000
BLAKE2b-256 5c7e8f1786eaabe4a7ec9fbeff21c18f1857140b234a5c266506c7c28464a0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de7dd8eef59bb6dcc5ae92b4f34290b2579185c276c6ee3edfb80f71da343401
MD5 61f751bfc8d9e9947a9b055c021dc591
BLAKE2b-256 d933d50b51824a3eb907188339e29790b955a81367e9c01191f1ca3f305fd39a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 507.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.0a12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9157a9c5b91245c6a52ba1f734b9f72ea109ad947ade446539d99cf325e0f30c
MD5 e68090918187614158041361558d56a8
BLAKE2b-256 571dafedc32a2795eec70411ab8f0cbb673eec54b3714beba3885fd537062f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 522.0 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.0a12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c3c2be1aae80a955b9f10dcb3378a5ff12b2e5682e9026654abea9139722c86
MD5 9dcb50ecf65830c303aba682bb64c635
BLAKE2b-256 53593a663f7519100d82053f2c068d16f07ea566436d135137fb94e36ce0f898

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 504.3 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.0a12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3b175f9efc013a488376ff10d5648111f52dafe47508100631b02e3e4f04419
MD5 796276d43a783b7efa11c489eeaddf87
BLAKE2b-256 5afe24a0bb12d8f18a9f0fb21d5c61fa88d79b3df7204a0259dfcaaceefce5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b29f9069b436d060d333cade770e8d41e1782e703d0c65ad6a730927f085a686
MD5 3a9ff9b259b44fec50c71dedcf07bfc8
BLAKE2b-256 e384d606691f941851d038b81c676de26a66f892feab56690372346e02e441a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ef2a84e9d81951a35a591061289fe5e8d952c49caf2cdd2bcb45d51a268d3e3
MD5 e89f8f55158405e031c6d69e4ef48ba7
BLAKE2b-256 131894d21ef8e001a1971e511eae6b9790eb2262de2ef59cc5e84b2864ad057b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bc6e0b1e79f2991be9e542d1b93a12ed472765911090f82c8bca7d3a909d0c3
MD5 175e6f0891731668df0982183a67d5be
BLAKE2b-256 d3fc72382e07036c7ba47b7d1e52e8679a713417c0f8dd3e203efe40387d412f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed33b165f181322a9e677ce5950c012e5e8a703abd4fde8f3f1e95a154658aca
MD5 1891d8ce985969fa8c8bced59e080e7b
BLAKE2b-256 3325466eb5d6447c652c4c0c511fb2168f547016d974eb66ebd7a9f5b2a470ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb7da2d76550b67d58c6e89852b68edf8ab6c7337fd928ca9dd7f65308b8ab0b
MD5 8639f7ed2fd3ce35208b258f1a8e3295
BLAKE2b-256 9ca77543e485a2e2aff71d552f0d20933487939bcbc6b2e450a8a62a56bd52b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8cd107b081de3f2ff67bc5dfa2fe97fb90b51145bff1c915e50dc1974b3155b
MD5 f92cfe7942565f20859ae76d60d6b092
BLAKE2b-256 33fbc0fa173b49a445ccc28c78f2e974e06bc92eb4dd3075184206876128302d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 193a57105d32dc2f111e87fe36824e760f8d06d51e51470020fc4ce298babcb4
MD5 9ff768061e7809fea9077b218faa63b0
BLAKE2b-256 dc5256df640b87fd368280c96052279a209544269c4b34a0e9506dad52fb3b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab14ab7d77914dacc29319ec0209d29a6403b66f265b92fcaf77c4a067c6c3f6
MD5 fb9ed17028bee68f3d5b97446fd2fd4d
BLAKE2b-256 c6e2092ab5812457afb24ca70c1351d7c4812bdc577ef4df473fa5dfacf15721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e00573495c9654f2f321034e7d2c490f15b612f8ddfcaadd3eeadf07e709f9ca
MD5 11ffa63d00410e68f8b1aae0b185d06a
BLAKE2b-256 2db01600731e9ed0286412098a062d15439b88668c6b94f5ed2cb173540b76b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c486a592c97d3c6877a68db5eff226a061a0e2e9d483149b022c4e2879d0b9bd
MD5 1dbbba68fe198f5c8d5cec5e51ea50c6
BLAKE2b-256 e739cfe3fbe73656b9852dcebe41632235b0ea7157059c70e67a4bb72671afc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fcdb820c2582de055eddcd3f87de527140fd0e18b29854a2abfd0f9f7266183
MD5 92cc79e6049e0eafbf64138a60c9ba69
BLAKE2b-256 2fca61eb214eab15450172f6978fe2f2b8b8f6bf5e8d0fec0acc8369d5341cec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57e21f220f7a898804efcdbcbb15922a1dd971c8e6a8b7923513d76108f1b0c2
MD5 81c92295a7a307bd4f12e492fa7403af
BLAKE2b-256 a9a029a1425f3315c2a7fbc82178401f881369f5123a7774bd3eb5c0e3afb1fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 507.9 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.0a12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 11a35d40f3fee50296c1938db117f6f7bdbc156340684727d70ce2f446d5095f
MD5 05c977505d540c3cb597878bb9f6efbe
BLAKE2b-256 2954e8e5ee6553028cbc81e3febdc8f84225ed209ddeeaaaf89524eda927b26c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 522.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.0a12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2b118b54a2068ae2239bc6bc86f0bae41cf1369b3e994a7e8e39a386ef73d44
MD5 00fff7c771f01095bb360a226fc04aba
BLAKE2b-256 55cb2cc51bde648645ddf66ce6954b1473e0b161f241bef7258a50da155696a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ca20195d442bd791726fba399c92ae87700ab29f07c9a89b2111bacab424095
MD5 4341d0e7ca7f61dde094e6861ba30834
BLAKE2b-256 7f301c6857792a8145da8131f676e1e053d0c770c9366831db29f08eef0015df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd96d02e0542b136ac7e4678e8dc8b48fae9b8e43def0be5d63051a4035e098c
MD5 fa296f2214da6f114a1beb3b2dc62412
BLAKE2b-256 ba0b0db546d45102ea1e303d7467c8d8770c5fa2565c4f651125289241101907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a747e2f76fae32cafbc4248a15641d87cadf8f2bc22db578fa7433300ae342fb
MD5 d7cb14b5e27da9fc2582d233f30d7ea7
BLAKE2b-256 0da75c6fa6c854730d04fd6b7868b3cc43b516e990147f57643dc6550092ccb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6132169a21755d52c74a049c01b261200f6d6adbfe154f0655444cd1f385748d
MD5 235f10263a5554bada727b667ea7b86a
BLAKE2b-256 1e20b84919b0ecbc83b84e1a192b373bbc26cbc9ff9aa861a607bdd7c3890143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d3247bce620679a3fdf1a977865aa8e48cc2cdf23daf4ac7ea984ccaabf224c
MD5 479d670c247beb6e285c1429cc3ce484
BLAKE2b-256 493fd31e17f62439b591795ab491261302006c92bb37a7face729d50ffbbba2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2937fb57b72d4d73cd0ce4c211b735652f2fb440151c6998baa497dd47059ef2
MD5 5df83de22d091c984cd87bb230e71b6e
BLAKE2b-256 0bd425447b884b96de04fd1a326665ed1f7248393070c40933441a7e6e542035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d4334b7f61c4334314d49178e8b6e0ad60db17b2861d83c1defe215f7a73f3e
MD5 09c3d3f9f306baf370745349f3cabfce
BLAKE2b-256 7749ecd2e9fca6b353bd90834f1f44105767e5233d723056f76584865bc3e6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3c93f79155c2fa9023feb851be6dd93e81669e79b09ab98bc7ed2dd93b2a328
MD5 8b2a59ee489c26655704e05108e9a10f
BLAKE2b-256 642bc6da3ce99827314ab730e39996480b89338b8b474b18b2c48c22dbb6ae2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc5c97df3089679629ca07df6a6c4c77d064cbb3cba1d8a061d6a65bb789721e
MD5 65f4098b33594edc34edda66385942c5
BLAKE2b-256 0a81f2fdb7d614c54a97317851f01739a21d81a298e97f469da7848b325494ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3de23bd7a28e7190d621913ebf316140b0ce0bbd2f8afc2a116dfb0281d0a3c2
MD5 86e88da89fd21200bd25d218651e5a07
BLAKE2b-256 68df10229ac4767809e935eab36739f7abd18847111a45b7bdad3da9ab79461e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b3c57a33ef0d8cda1c822c564a23d40d4a9b6693d739c76207d0f4c777a2156
MD5 135472bf7452a04411473998478eac36
BLAKE2b-256 0c409aba06b4b0ef26c26e0f3374cbac315d04746e0afdfa0596af09e6ca0513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6964a40f2a776955001c0289cb483ee4eb2ee3119eb52fc833b48d07083d2c5a
MD5 bdd91b4654d9c7c4f32009ad385780a1
BLAKE2b-256 49f5f555d086a5300f71d0e4d79a18f23185c73fd02eb664206049d786c09edd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 526.1 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.0a12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d59608f2c0d0aa76549eca982297a5e7904dad802458dbd9e63986fa7d800d7f
MD5 4d23a81f20943eba9f32f19ecc48e754
BLAKE2b-256 f1292fcf1fd07e689175298971407a1f44f0979b240645f44b988ae76d6c624e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f11c27131cd3913672095ce40eebd70e7ccb0ebc19733bf44d4fb4be23331cbd
MD5 f826c9def3b8e4618c22e2aafe0d69a0
BLAKE2b-256 c02527377184b1069ec6a4305c71124f3c18d18435b35cb717ad95130ce567d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 393d1f7c1e6013f71857d84106d6a5167729d3d7493fc186a511659eefdf01b0
MD5 07220386dce3339784cc93aaa9092b64
BLAKE2b-256 ee2e19882e991f6b457453a37cf05fa4fe9d917a88f0c750193f4c580ce74677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e8cbc36448f1018ae25d7f07781ab0e5df33d51ad5bb48707503205f263bb0a
MD5 b4290212619ecd852654cedef477f0d0
BLAKE2b-256 8242c9c9ff4b0bafdebad82d960ad5b08fd1b2ae4bc9372605f1a2d6abd2678b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40a56ede9fa60ff9f5cee8e9d4a5ba5ba2889ed14983ff9073df834cd3f951c6
MD5 e12fddf2fe38c58a64167d9feed87bb4
BLAKE2b-256 9e265bae6d0a17a8225da842f7a6d7ce8ceb76f8ebd35cd98d98bb2c93055ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 010958a06e57f228408cf28c76c55698ebea37f54af7ca1ce114b6aa979108e5
MD5 3ddf35eed89b2394dc23973bc5d0484e
BLAKE2b-256 d5789de947723d159317364c78e89ea83b5d4b25bc93120775e8c55e9dd5f239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3f756783da238a9be0a7d01d82c394f46afb5b8bfca0ce7d6ca6b378a4a2578
MD5 f202aefb95312129078edae89fc6e32e
BLAKE2b-256 95e1dd2e9c58e3b6749d787e52cd84274224c4287b38eb85082180ff6a7800d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd71c211552a3b9c2ea8c728f421cf38292f56fdd2a3e68a79161310e81ebcff
MD5 fcbc33385e5a270b1e83312ea86e0522
BLAKE2b-256 b246812339659a4f18af75add4564c2034665713e44258e95464a21cc4d09792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b1e34a869c37d93f33eae1b71ba572a8cfa75c653baa5f5d8835ce6089ce758
MD5 4ba01bc2deea999eef96e1673f113a42
BLAKE2b-256 08324926b044b1acd28d3b1f1f719f1ae388007ed25df78c735e07e7fc499a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab6343419e87acbf3cae3ef9c5bc7954df097cd4ad113c3d7b33674025f6372a
MD5 2fda824bdcea93bc89d81d717936461a
BLAKE2b-256 bbe50f3b9aad3e5f3d1895da3a16c81aac241edebf2a74c8769c746da63daa96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 409b2e0c49fee07cfe11545b2a5c3acd982b4068c517d4967ccac7294073443f
MD5 bfe8b4db3c943da850709c39bbddae03
BLAKE2b-256 f2dd77055617986535158cdab56831059e1e186a85771c498f2d9cc4857e098d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 147fdbe3a8c14bab53a2487b6235ff2ae9d7885ff16d938f58b59bc23f2d2897
MD5 5b87fb5be7f0e9865c3a9aa2bceda97b
BLAKE2b-256 8169e9ffd7dbdc1deb27805a3fc0937cb994ffac482e4ae0841804a6f7330b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76c54be3fce23b3c9d2abe6cf5a13f08b078088ae4af2d13bd2579637ef4f090
MD5 38413f2d8ac282a3b87ef84c7d9d3f67
BLAKE2b-256 4b45070e42f781dd355048d1f331fe29338e78e04dbac714307b3eee6f59ad53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 526.1 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.0a12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2ea8083f9bcc2be44305d060d1749ddb21259f06ed2e41dc3cfc0f4888607d2
MD5 30092a478edca0a07fc279975385061f
BLAKE2b-256 3d156e2b82b6efc9f5268e62fdb4df879df1660cc192a720268145d6207c0949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55ed966b5cce5ab49a390b560bd8d48a15109689d324126ac13c3cea4bb24397
MD5 034ba0fa570293f89052e46990e620da
BLAKE2b-256 3af5d3ed7332ca7b4a4abc9b2c5c140b90ad2445427dd23c2e914cfd56b2c321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 488f23bd1bcdbcd3142407da35eaaa93708ad45e521b53139a593323590bab84
MD5 fd4c110650bda6be9b07b4282fa36955
BLAKE2b-256 b4045c524804f722e763fffe15b9d96d02a158d7821bb05d6c8638b2356b7bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c357bb6acb90362f52f312c744cfeff9ae531f471f763f35c88066a34364917d
MD5 4e0da8a473f892b3969577669b322fb4
BLAKE2b-256 5e6d408998fe7facd05ad004c1d17feb4bec283fe061fa48a3c97ccab25e3f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f3f1f2ad7cfbd1709420ce9f5f413382df5cb09b6fdaa7bac1ab2c0bbc3be6a
MD5 3122f49476cb2f43704486df0c6e07f7
BLAKE2b-256 007972099857d081cf9d6e8522cc4d05e3da7f5c4cf8b0b999f6989132d0a62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1e7e9581e80f084ec9573961512d384b46cacc772ea93c3a81b9b63d9b859bc
MD5 c9d467e3e5063e690b482623c5c691c9
BLAKE2b-256 16e5e82d89b11e30b0858305faddf376be151ebf2502841bda9426061d9c2c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6713d1cd14e8fce4cff2f66723803826171fb218b4f86481c5a7e08b83a47434
MD5 0b908f19a656c36fc478969e71e3c1e1
BLAKE2b-256 21b2e9272a12fe43b51f3107a3603c4152a1383dbd65073ef3b637f611d5af40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36a5bcc6491fa07441a00e722eaab46dbc781cfa8b4a9f15ce612d32e5a89972
MD5 7bd2492b63363a914a5ad2c9b3ce3194
BLAKE2b-256 1bfb5609f9f179644f71f6fb363cd4224cb7276d3b4dbb6f7fda271137c5516d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a47b62ab2ed0bd68a9d0c669399d54b1a52024de3decbde45b88d6dc3effca5
MD5 3154f7b0e80395c2e1fba928e2c162f6
BLAKE2b-256 6c86464ffb19416ab4b33a07ae428694acd99e1d0155371602b60644ab595151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c84b29165383fcf4a072b9fc48321b1801b58bfd20468d0ee3943d9425f8918
MD5 c6e1657974f7b6e3c60aefafbc32ff28
BLAKE2b-256 09dd254224093c635bdd69a419ad54f9522834010760537751442db16a6ae017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a13ab57a39dcb9e28a28cb3e96e05fd4e2ecab2ec18a02fab8387291e073e8f1
MD5 04b67004156728f0f366139cdd418523
BLAKE2b-256 e570ec2c5cd9a11a836a07b7d7415013d3b7d91e34ef467d8acb08197d8590db

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