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.0a10.tar.gz (146.1 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.0a10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (895.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (933.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (964.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (859.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (684.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (714.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (810.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (689.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (683.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (728.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (677.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (716.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (715.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_x86_64.whl (884.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_i686.whl (921.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_armv7l.whl (954.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_aarch64.whl (848.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (679.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (715.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp314-cp314-win_arm64.whl (507.5 kB view details)

Uploaded CPython 3.14Windows ARM64

pulp-4.0.0a10-cp314-cp314-win_amd64.whl (521.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pulp-4.0.0a10-cp314-cp314-musllinux_1_2_x86_64.whl (883.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp314-cp314-musllinux_1_2_i686.whl (921.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pulp-4.0.0a10-cp314-cp314-musllinux_1_2_armv7l.whl (955.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp314-cp314-musllinux_1_2_aarch64.whl (849.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (673.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (715.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp314-cp314-macosx_11_0_arm64.whl (628.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pulp-4.0.0a10-cp314-cp314-macosx_10_12_x86_64.whl (641.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pulp-4.0.0a10-cp313-cp313-win_arm64.whl (506.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pulp-4.0.0a10-cp313-cp313-win_amd64.whl (521.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pulp-4.0.0a10-cp313-cp313-win32.whl (503.6 kB view details)

Uploaded CPython 3.13Windows x86

pulp-4.0.0a10-cp313-cp313-musllinux_1_2_x86_64.whl (883.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp313-cp313-musllinux_1_2_i686.whl (920.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pulp-4.0.0a10-cp313-cp313-musllinux_1_2_armv7l.whl (956.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp313-cp313-musllinux_1_2_aarch64.whl (848.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (799.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (714.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp313-cp313-macosx_11_0_arm64.whl (624.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pulp-4.0.0a10-cp313-cp313-macosx_10_12_x86_64.whl (637.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pulp-4.0.0a10-cp312-cp312-win_arm64.whl (507.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pulp-4.0.0a10-cp312-cp312-win_amd64.whl (522.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pulp-4.0.0a10-cp312-cp312-musllinux_1_2_x86_64.whl (883.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp312-cp312-musllinux_1_2_i686.whl (921.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pulp-4.0.0a10-cp312-cp312-musllinux_1_2_armv7l.whl (955.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp312-cp312-musllinux_1_2_aarch64.whl (848.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (704.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (799.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (681.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (715.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp312-cp312-macosx_11_0_arm64.whl (625.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pulp-4.0.0a10-cp312-cp312-macosx_10_12_x86_64.whl (638.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pulp-4.0.0a10-cp311-cp311-win_amd64.whl (525.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pulp-4.0.0a10-cp311-cp311-musllinux_1_2_x86_64.whl (890.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp311-cp311-musllinux_1_2_i686.whl (928.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pulp-4.0.0a10-cp311-cp311-musllinux_1_2_armv7l.whl (961.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp311-cp311-musllinux_1_2_aarch64.whl (853.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (680.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (710.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (808.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (678.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (721.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pulp-4.0.0a10-cp311-cp311-macosx_11_0_arm64.whl (637.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pulp-4.0.0a10-cp311-cp311-macosx_10_12_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pulp-4.0.0a10-cp310-cp310-win_amd64.whl (525.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pulp-4.0.0a10-cp310-cp310-musllinux_1_2_x86_64.whl (890.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pulp-4.0.0a10-cp310-cp310-musllinux_1_2_i686.whl (928.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pulp-4.0.0a10-cp310-cp310-musllinux_1_2_armv7l.whl (961.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pulp-4.0.0a10-cp310-cp310-musllinux_1_2_aarch64.whl (854.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pulp-4.0.0a10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (680.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pulp-4.0.0a10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (710.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pulp-4.0.0a10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (805.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pulp-4.0.0a10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (686.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pulp-4.0.0a10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (679.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pulp-4.0.0a10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (722.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: pulp-4.0.0a10.tar.gz
  • Upload date:
  • Size: 146.1 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.0a10.tar.gz
Algorithm Hash digest
SHA256 9ad292af845dd3eee342c0b1902fbb5b9600c312c1dbeee38e233446425885a6
MD5 cdb149e8f40044a8f4ac860d32d6daa4
BLAKE2b-256 01c71ee42a39c999fa43723028cc0ff2f2746e86da6ba4dad0b8a1296981816d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a59e042d63338a2e1f3242d68b3c1f70363718aee6baf78e14f9a24b3778bbb3
MD5 0a749ceefcfd949a15a3c6f1188b9f38
BLAKE2b-256 02a9c52d2e3e5c5f7f9c396075e850c7cc3f350fb28e9335205eda3024669671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d46658dc8c88614a80d320606d0a10dfd157a3431c219f6a57ddc97dbdc6a004
MD5 4d4e673cf039758278ce82e9db8dc3e7
BLAKE2b-256 3dbda8f83bb8d5be5d866f232f0c8aa9e4c8610c8f8b91f1ef4b56e559caa10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87fe7c7a5748676baff70e75aea7b5e91b994719a0df7071b5bca35c6b685a4e
MD5 81b6c3a53239d7862f9f9d214ed994e1
BLAKE2b-256 5e5707f66dea726c95edef609fe10d21f14e38b1d22c52884f2a66d2b188a054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27dd8ed5454a7f666b82846ecf424ec74ee09fe08f3000ab9ef5902663150a1d
MD5 c3434fab40391b9e1163589ad4284272
BLAKE2b-256 c9e1491d843ab46d142741d1fb3174bdf55f6be6707fe60c4846d07be4d12cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8deda7d4a929e6f9ed1c21318a3a41d3bce6ae3619c9783006dc48a871764cc0
MD5 b90de07313cd473a964ad8253a0dfd72
BLAKE2b-256 c331942fc91a90626b0568cb8a60d2b8229c2766bbbe90fcae114232c09adea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bde7217cdb792796bc099cb836826eee57984ed6f1a603e074819793ff219ab
MD5 38f3296afb6ca2d07d7d50706fc7659c
BLAKE2b-256 b4b0a4f0375b2eb84de797ce4e80530d6f1d99097ebf08b29efef5fee2e04927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b786143000f9b39a3e6cdcff2d8e23a5eea972e22dbaf0295ab9c0180e24770
MD5 9f3af4f1aa0a5e3bf6e549bf1f2df85d
BLAKE2b-256 4db581533463949493d4e0f502013f398e8b719405736f389344fb5b051047fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 539ff1996fab06fbd11f98a8d1152dc99a7168b6c2fadde504b9c2e6c4fd2b3e
MD5 fd5617f928a88388e135301cd631bf32
BLAKE2b-256 edd83b279884160a001eb00b4b462361a2a124ca677c3027ef4926f28ddff6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fef7d2aa8a70bfa11acf599fa4f45bd59cbd76a9681210d7d4b353f1f4fc3322
MD5 e63094c1d4542363d484cd0c6c64531b
BLAKE2b-256 f2b889466bf6c98560c459dcb77b4913f3499fbab326b79ed380ac6724e261e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 727050c5ba656115ce81b5bb4ce18fa3a6847c0b1098f127cad9df14caa4be03
MD5 97842e3a628aeb243fb2a63fa3d3979e
BLAKE2b-256 0f1a2b418874d82ae2344ec502f3b42793343dba41915955feaef61b75ae23b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea574087c26fb2160805f2affa28a7381e3763f94f0b589a0ae949be9c3cfcaa
MD5 0cff64f7310be15bb3206ad5d814cf5b
BLAKE2b-256 1e63732dc3a65fb0f5af8ddc5e3ed52f8c619c344d5cf5fd1395ae72fb3a140f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08dce254bcfd6b491bc9497495b37573b16e72340ca5258c7097574a99bb6ad1
MD5 30186b6af0a44d8d6e97bf8957d4c434
BLAKE2b-256 a639d5129a29da5a7ab63f4d68cad1f1df5d07e8ec6eba12776dfc42aa783f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c6a34ac26007928fab5845a0698a0db5c9ff0a0ca20e278ce77aef94141e8b
MD5 9d28422f09a1bae2115e45cfba633b47
BLAKE2b-256 d15d7c1067deb5b371262e87dc8cc8f86674c97b9366072380a8c11ead4ad7c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2486116f6e347d4f46d152b26f0fed8d5958af1cc1730ca6aed9834776607a57
MD5 2733fffc51077531461ceafd5c4a516d
BLAKE2b-256 7d8d452e5c40cc4e939071f9a9f02e25554584492d4de3438fb50ef2c580919f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9762f7023934b67602a8a180fd0cdde1140d95cf055dab9fd1ea6ac5dc1d11d4
MD5 dbb53da10a12365ca46cdda921bc57b0
BLAKE2b-256 07445b7ca7ab1ff3ff74b68f09c081698e3d240d70d3020f0885b90c7c1f3adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d4ab0e71d5df7ff2cb4a79c4939919fb9f935df0873d8f741c3d6ea9eebd239
MD5 11477dddaccfcd0a388f2cc45cc52543
BLAKE2b-256 4143ce0dcf257b9be6cc5b1775cb0b008ecfb69d7cf338dab895148549d96a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4cfa552b6e556f98019fd4a79d9152cf2486e3a06f435030d106a670b17e2906
MD5 7695a467bd5dc3b924a83b458bee936a
BLAKE2b-256 5fbae9e00f17ed8ef827ea2a6dbcfbe433bc4dd088a45475ff28a8bc987c7515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9466e6f989c62a36a2efbf42b2e77c3ee785c9873435ff9a3150c564eab7d4df
MD5 fd336adb7dc6ec552b3bd6734544afdf
BLAKE2b-256 a46f5a27377ec45d388656886c6363ec47bc7d8ae585659a2f7673580ae4c927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1015924c98fd32711c2b44a73ab2021c23c02de488405ebcab9a26f329cfbe90
MD5 e84b2f4ee6c9f9e6d276cddbc89b5968
BLAKE2b-256 a11e69f7aab624238f604fcfdae62d45dcd33bea07434f4c8ff8cc0da715c560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e25211564bda7705db77c26b6a7d5e4a5cb416400b9c3998ede945e890b9e31a
MD5 f3b5bf3a82fbd45be9236f5c81ea1a1a
BLAKE2b-256 844d86364e83f54a9776f540933a306bc81b6535422f12b9b5aca1096e83dd25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1f01b17a49dabe986819874ef854822d4841d2db72d4a171e243b1e0ce16e29
MD5 0a32ad6847109c27cd1ae02ec9ab6fba
BLAKE2b-256 9d46d927c4cbac51b22b705a46d0b0c97902a7d4567acc36285ebc2c7c9759bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a42c551cfdbbf50425e004671b37dcae08cc60c9fa5c0f4b77166ebd682b548a
MD5 8326c31940f52def82c6434abdecc8e5
BLAKE2b-256 0280435be3cfe843af1e611a0dc0597c67a2d982d7e8cb43797bb2b68d488621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c110441bb113d9b2fe7fd899227fed2da8bc59b42d4ffa435825abeac10d6888
MD5 948f50f029961f42813a7f98b03122bf
BLAKE2b-256 d3042b482903800e7b18ca2a8361a12ce12bc7fe71492659e05532087bb440c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36a2325a690b7d1723a432c8f6bf53c02488b53b27440463f8d3cb50a3e89e45
MD5 219b8da1694593346c9f23af0cf5c7a9
BLAKE2b-256 6a1d1430ae8e90836e13c029e92c472bdd0523f3c7059e62f5e3d8bd6ef38278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a10-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 507.5 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.0a10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ab34774c003056182cafe96b7047d84d91a0625e15d67666bd043f0c7a2c4e55
MD5 c266c71662e0de1c60ce98955eb06ee6
BLAKE2b-256 5ab9953d610661469c8c3be4c2981d43deba67ecb7c38e6c812024c591b2496e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a10-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 521.9 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.0a10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 104377800db73aa2f5e86fda0cb34dcffdc54aebda12a6825f6a68ab75180e8d
MD5 48f612e06e0bb3cf96af320d6d2d6ec9
BLAKE2b-256 3d3cbe77f3328025f819d9a1801cf4cce014de95ce2209adea386fe2e9beb829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d81475babd06273892f0ae320d22045ee39901dceabf8e35edc58aa0deaf3c2
MD5 e01447406f4aad324aca9ad2c9fc5d9f
BLAKE2b-256 15e40bb0c9db0f427636da36ea322a7986e2984eb669e8c7614ec9f165cb5675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a92f7bcb01830ca508927d0924265d9221dfaf1eed1b888d9d9dd4965d9ecd1
MD5 90638983b63dacdf5e6ccd98015ad907
BLAKE2b-256 62c3b6b23a04cea810bca226146348384dcd8817f34af163085fcde80026dd32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 632392f949892e935387e7434e1340aa7ea6527675469a9b18ed93012828960e
MD5 630a777e732926acef6fc1166162393e
BLAKE2b-256 921874052a4c2122856b7e6c0088f923196a3b8a291deaad4a0acc443a8ba58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8abde72bdde070f173d576342793755e5835decd946f746a63aeaa6d018c59d9
MD5 fdc5314dfa5947134843a2239849b652
BLAKE2b-256 832eee696cf46affcecfa1af3b7e0c46fa76bd992645030dd4734d5150932bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 576b787697944b4d7cf3585109570553deb0ab544ad13e382af3bc25450731d0
MD5 d68402f9a3022e19b7dfb71e4e7659d0
BLAKE2b-256 39ef772cff2c05515f748fb8657bc08ca4bd3ff0f1b364bfae447641a7f38b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2f2b96620a753224b40ac97603592bc5270da4f827e4ef21d2c73e798413763
MD5 2a60d8ee1b7708892a95c2e43f04222e
BLAKE2b-256 59992b44516da89fa603016f30b02d1601aacf7c4002ffa506657c9a82b4eadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24e9b1dce33d6830f942150748e1136c2127e921525b0fff2b6aff5ca0208a9d
MD5 27473a2679321fee7da8aa8d78ab6578
BLAKE2b-256 23c01a7782e60b47e660b2f6373156a50777885c78767b02b00efb7c123b2a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c34e3b8568d72612309aa7ce310f1e1379e5b138ba7aeae506f9276b78f45b81
MD5 15a6e371c79a233ef58d6b57cb5ade4d
BLAKE2b-256 0429fa15d6303feb20c666fbb5529c9cad24b32f02c9d72d9d59bd4ecc7b3283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc16b4022da5a5c175b85d6d30db111163facfc206678f5ecbc3b56d3eddf038
MD5 4d339acb72b1cd21604920e8d7cf7144
BLAKE2b-256 d47fa0faaa1e2eb14c32bb26db5dc9f1b9f77ffce1aa904ccb5f6fc6aa726082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 897f0b7cdfac7048e8b07e4d749f85e88036dad7a675e1ca7b5e6df7758a503f
MD5 96566cb818291ba7b8bbc9c808da9687
BLAKE2b-256 c5900eda010f54670dd82ea74ba3daab7bab3acaf52435555bc9a2155bc4e033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 576d0a3eb3af9ec64981c08b478da863305af3718840d36f9f24b85039458801
MD5 e2f22ec9d6fffd53d7764380ee2f8947
BLAKE2b-256 9151e030f0cdc2d1e1962abdf0d19a4575603007e2a403c354cb967dee2c0d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 812bf17b058e7ac5966f9b0a5e916a872ab2cb0a43e43159a7457bfab1bff03f
MD5 a1062dffa169c874819e60e25c15174e
BLAKE2b-256 4c0f60b597fc85938d3606e3231a9a435fb5e5a308b638bf8fda62d0149541be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a10-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 506.3 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.0a10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 463902616f880d5699ddf4e0bf6ef86ac8b1e66b2e477607535846df6a34dd6d
MD5 eb4647ed80fa6dbcac2ee5bce5b30cdd
BLAKE2b-256 9d312b91a234c4da90ec6c0063c90001a224bc199d5edeacb7650bb2dfd83ac2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 daf8ee398cbd5a3ebbbf0b758835be1c1e9b712fd8c883835fc5e9a450ad07e1
MD5 5e76809fdd629f5ddfe58c6179c7ba13
BLAKE2b-256 617aa22165a3712482d003e802890103a36cd7a6cd86380470d42dd23e3a2622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pulp-4.0.0a10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 503.6 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.0a10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e839e413dfbfa6f87a1c5d7809ec7ba3644a7920c468af85c6df4c4400c9f794
MD5 b3b364893e1143bad8657bedb57140a1
BLAKE2b-256 eb10f2feebc2783da7a172bb03aa9c4ae7d45320ab99afaeb0616ba42d11ef24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90286ffc2fd68fe40dbfbb4ee6c9ddff57347e692855a2cc0609d76df3fd657f
MD5 e05725142dc2d3fa49323859d6c6dec7
BLAKE2b-256 c0fac65121afda8823edb84475255f8415d9402d7494dd9052ebde7b5683d9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76bb498752f69d733d7cb7b8ce73436b3b938034c387452c0db5ec303fdc9c55
MD5 f3138d397a9c6f76daa06e5e2b3dff2e
BLAKE2b-256 95450efe0b71af3bcc07f48b52052881b320addd821f507c73ea16912658bab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0aedd96fdbdc445d7a54346fdca42c5f8008b9a669535ecffc846f8c9d70013e
MD5 17acf0f83aed6a7f3a80c8dffb7b3ce3
BLAKE2b-256 febe943ddf2a34c484e44e699569dd0b3bb1ca6d1800dbbd2258e00191c9c736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 340ccbcddc9413d250cbf35b31169541277dee15651b068f0c8f0aa05ee493a9
MD5 be4cbde0d85d8eafdc6023408c2ba086
BLAKE2b-256 bf9d3c84b6fdeab231574aed975009503b7277b187aaf436ebdd67ab23d4e396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fc8243f456dd885cae9be9195de4af7c874ad6cbf9f608ca8ba8b00c8f43dc5
MD5 e11cb9da2c6b0dac21a1c846942e8852
BLAKE2b-256 0a04d579026c675ca9054dc5ec58ab90a29c0f963223a03a1fdf8c9289ebe394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c25647718c190417b531ff37d31e3b47930e0c2cda3244acdc524719e67d68d
MD5 f09ce962f5e4ba5b615f7c7fbf103b8c
BLAKE2b-256 533a87bacca6d25ce46772b37d10e87847d12fad4dc17c429621325da3151e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d00d81ef3287b4b21fd7571e1f394cd37cedb2a93d5e9626cf65b48a65ea053d
MD5 7da95d01a93673c7843ce2e2ff845b8c
BLAKE2b-256 ad34c16df9da83b07efd2f1a377d0b50088665db10eb2091c6e9e98ef042a94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 724fd48cbe7602e47a9f108f0e564c15231d157e677aae2b3fe72547341c7ded
MD5 cab2d2d18f9d3aca6de422e112529710
BLAKE2b-256 530bfb366b38ed539ae013bd8a9bbcf8f01f456805ee0cb95c0a373f5e78798d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 468b7f7309da59332e19e734096e4ac370d6a88ba45fa2bf34a4ec3e7cbae859
MD5 b82a380e83a4e16c103e58c95d225f4c
BLAKE2b-256 79f2b6d99bc55417d795503fe1f3823d38357c8636061fc240523464703db8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a24bdd54fd883a8a4fb29ddab467815fbe2b80bf0344adc68d58ede7a2c9788e
MD5 d28bc98ea486a46a81e8531c2ed07609
BLAKE2b-256 26a41a7241da3a7fc795ff845c64a8aed7d43e87bf6e5f5d2956edc453fd12d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d93bfd0f5aeb7b0810cc4342eacc337ead2b6ae58f896e86da1d240fa7bb69f
MD5 a3a0afabf51d36d89993776544bb6ad9
BLAKE2b-256 b72062252145913f39f7a475d0888f652fda880d9408afbbfa4bc45e98ec6d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 782ac3a05c4d558705f67c51a60bfda3d9e94ecf2ddf6191d8c5d0acba2d6532
MD5 209162ac6f0ea67dae5f47526b63ec98
BLAKE2b-256 79f22e636aa0d94e18bfcdbb888b026d8787f342eaead2e8ba050254b2be6414

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8005449628fa9acfe29df471799a6da95ebadc484c4b29b6a236a39d5148aa4a
MD5 97571de7f45076decf3559a8bfec2e91
BLAKE2b-256 f15f9e0e048a31aa6d0bed794be3fd64dc457e91d145b68c120aff078854c42d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ccdd24e67901f46c7ad1dd3241c6843c46038cffc9a57506285b8a6910e0589
MD5 18ef4435d6986571e9f3993ea42b59e0
BLAKE2b-256 70d77acdb4b1c7b27a2b3841a1422fb1c64eee3e151b8ebc4bf30464bb38398f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fefa0d4cc69f12d418e9daf2f8fc40c55cb145d67276e3a9f7710790498e6e83
MD5 e2efa2870ae60e85ecfc57d92b180a0a
BLAKE2b-256 bfeb19ce9a762ed0e2743f1183796ae427287fcd514da83f76751db3a2cdc0a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5aef317a1bb96b40b12eb0c3504415343bc90105f4cda1a92d0eac5203f1951
MD5 bb8cc6b12c0af7d815aae5c1865fafdf
BLAKE2b-256 dfdddcbf2acc95fb2f1ea8c317a14f17fbccaec778d995f1e5138c98d6fd5bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59c9f7de99a8028c15ebf4e82337dd3d78794dd04dbc81776433f1cdd189b973
MD5 9e3f52c1e54a226ec4659c148af258b8
BLAKE2b-256 396c767af73a32825afbbddc23990f43691af7e307b15f184fdacad00175ccad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3b0e1f910a474c83a12a4c2e903541ea9ae453e62820fd99c4eed25ec4aa095
MD5 b8a183daab46ae694c2cde4f0595ab37
BLAKE2b-256 a093a20caa60b5c5f502cb389c53138e2f5e9935da00a76c44e4d836b8e8b440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbef4765c18db3bfaa241a4ad3e542972fa651241d963e2a3f398d427b8599d0
MD5 4a50e0505eafaef17ef25bf6586ee182
BLAKE2b-256 0ba9fe61a574f44675aef70d4ddca8c7977085e1a97825a808370f56c52cef18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df368cfadb815fad0ec010ccb793493b4ea9ad285de6b60c57e00d3f76ca98a3
MD5 03351de1ae58bef46bfd0f0c339e9cb3
BLAKE2b-256 1dd5e5d7b61bffbf8e71b11cb7224b0317a24d98a6d7b36a09bd74e2f2585c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de170288cb5b8872f124516c041d0e8bc076a36ac50ffe0d4562eeb047fb7e82
MD5 3212cce40948ea12b3f3b80d7e1ed3dd
BLAKE2b-256 fab26c0d5c4a9cb4786c53d284a4522e0d43e02ea92c69b5a6d3cba81ddc9f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6495f304e50c10e3c77a951cb3dbc3fb57fe6f23a1a8727cc29ac5e162f14353
MD5 644d59a53accf39cdf3671e978c12bad
BLAKE2b-256 13dbd82cb0dceddebf82d917f05bd3698f4a9e5df8eb2ce7481b3fe2466a23ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da82dae4eec4fb2ff56fcc16d7db219eaed556b29457b4efe17aac5b3b4ed47a
MD5 aca4fd8e420355c7b7ae78aa4cbe2ffc
BLAKE2b-256 25fb82f7b814596ddff652191ab583879b04a125277274b06871998aa66b88c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3cbbdcfbf7e7398a747b41c4bd67797bf9c598f1650a0c523390afddb1b4714e
MD5 faad1bec781976b49957ad30d3a26d47
BLAKE2b-256 74672878f912d13d5a3c285ca83535bfdefe6c8c69880923cb500e379438d4ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebfbc71df0c185a0d78ad2dd90647f38babc6fe8f010e348348bbec6d2bf5edf
MD5 f5c793707abe00eb7227d71746c286ea
BLAKE2b-256 c020c7630081e5d468662c395e3428f06ee2ab633f51987c7916dfec6004cfca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17ec2a3d2abcaacc0e40270c648b0920871b226b0003a008f9d754699b4140da
MD5 5ed49d1fc24601f8f14062e017ebe736
BLAKE2b-256 fb9c59f74dc01cd4a8844ef41de16b38a2d3bea85fa804d1933e461ff4eb1354

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c5900d7f40f40381b4653dd68bdf546157261fec081acf585ef6c4485d6621e3
MD5 8bd6476b2cd9d791a33f6ea8a0d41a59
BLAKE2b-256 f4c1718c6e8a566847f94f6547c69aa0cd7aa47811686beb5db2b89ad583543b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaccccb52b7518453030fef58299420400c7ae1b5d05d4673496b74162cbc881
MD5 feb81439821d766d36c1699830809eee
BLAKE2b-256 59d060eba3c0f3f8f02459339df98d44db0bb04ec8f4b87b8dba9d61937e67bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eabda550edbc989eb4d864eaba97078f60ab12e0af6f00b0d4628398a4a9f614
MD5 ba47b5092226ae342c6d7b663bac469e
BLAKE2b-256 04a88c9e2de85c618b5bd0b689e359013267687e5659bfe496dd7740b09b30b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b08239b9615cd27c2c8ff0e25a538dc739131fef61cdd7ad2bbfd0c2d1bacad4
MD5 ec57ebb1abc5dd688dc544c7247b2997
BLAKE2b-256 28b0a49c69fda5c479607f6ed5a0295d4d4daf9bae7da4a3015e73cf100ed785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b229d76897f08d342d851dfcec29f3103114066a4c7ff7330076422733577c0
MD5 1c620d505a9e3a84f150e3731fb65dbf
BLAKE2b-256 589e86a72d01df5b065eb1d21ef32e0b05114fb7a63d216dd0afd100dc548c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2921fef7d3057f3847a9c5d30999d372d6259c6007586ac6de14747b6654969d
MD5 3727ecbcc9e361bd3d8a22adefffc9e3
BLAKE2b-256 91a0f28d4f4558ccb778e4aea2265a2c926d4abf7abd530c81b7477e5111dc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fd4d0ee38d221debe2ce2211d6cd7045ef52ec82941da2f6f80f6cb8e39c1ab
MD5 cddfecc002619c555d57877f72e29686
BLAKE2b-256 ad3df353128eeea949743d7f2a06c0ebd436bd437fee0d93483df18ad4fa28af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec784c953655a5036ae0acee1f86bea412445fa73593d0cac6aef70301187227
MD5 87bbf975bd88447cfd604270857ac1d3
BLAKE2b-256 048ae26cd8ab364cc8f71bc5cd2a46672b03b4274ca78c21125a311b97bbedcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcfd5374f8de7e5225bfccfc6e3e7d1940097d0aaf12df78d2a53b0bf76ced44
MD5 3e1a9840d85bc2a0f13c24a6a41a1f3b
BLAKE2b-256 00564336a91523853f681f3525010de0e21af4ec5e2902464db85ff6db57135c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37c042ae4a3684cc8c0eb72620e578cd0d57836580513b644577e372a0555157
MD5 26f57d469961ecc3a134ef337a2ff133
BLAKE2b-256 4dc0b99fc640ab89a0ee03179852c0f1fde3e8a3bdbd6844257c8eee78190056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33a4b5f3e97e773ffa13b780adb0cc7ef8376d708f865c67d1028c834470749f
MD5 1642a37cd200dcbd72272f7ceab31e3c
BLAKE2b-256 5a498b31559c237924de27affaa29f47c971588527887169a89a6b0acda699da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dce4d83bb4baa4ed884c918ac1a5f9c3d975f5cb7118c0faeaf65d7d1907e74a
MD5 8a90dab56ac38ed5bb5669696f9eb6fb
BLAKE2b-256 f8ea507efe84b75bd739ea7451ee743491fcef8430e4db96e9c7b83979cb1b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0732d0270c3329358682b4ebc254d21b6f9e7d7e496ada26affaab16586b52fb
MD5 e62463a8660cc3808e45b231fab5cba0
BLAKE2b-256 0dce0a1e0576e589d8644bed728a0d99e41450c77fc2347d8f49f747f10dbd80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c3a9d690fed0d1c2ab0dbf8f11b34327d9e48ff625d3df822481fb59b41bb21
MD5 27aa2a7793a071f4079c92c876fa6097
BLAKE2b-256 63780ec21a0fb5244348fc73d2afd7eb21dd2e361f35c060afdfda85e6495241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18cd4c31270808474f997adc42dbed4e4d0f8f0993c8ec9042b490c10437ce96
MD5 897b325a1e4109a2982b0167de82d08f
BLAKE2b-256 f56739f0f9328772949c6625e5ec51c35b75a440969e8fa9d0c71dc5a675a399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c902cc82d091449a7cd06dac662853c62b63c9c3c4259da46984ba8a971d9d2
MD5 5d6af73de735af7be1d2b160a616bd34
BLAKE2b-256 89d9a8c2c9d7680ce4e498de0f4e5ec94a3c28ab1aed0194d25961ceee6a985c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf2cc3008ea2aacd1de32a92a5850586fc5df763e9d2815c8a77eff169400c18
MD5 5cad8275fff3e0d1f1dac058a84cbfb4
BLAKE2b-256 8f207d7e6153c4cfa1a76b3fa062ab33c51465d5356750d9e4ec9c5ea6df6e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0344cdbed28d18ec4e397e92601569fb471e6a32908de69d98af146d64931de6
MD5 40c234fa07765c056ee7263c87d597d4
BLAKE2b-256 18b8f681539a8c0c12c9ef7b99024dfd144d19bf3750a8b73e093a73262caa5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cec6ec3ef3f7559d8947b57b36127f501b888c7e097e13c1fe471458532a6f75
MD5 0658329d9ecba9afaeeb763731cfed85
BLAKE2b-256 79151c43aaa8b36af4d085fadc5d220e1b6539c27519c6ec2b03b749ebf27593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9cea292e2bfe2ede4d7e7c77436d5262af68e0ce7a70108ac0295587610df0c
MD5 ba627ac623614746431460017fc3dbf7
BLAKE2b-256 990a24061133a4fc64f744927ccda6a716b84bbaa89ce7f34cddd1e4fe6047ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4955153b745f11d99bb5f67826831deb077d0a046523948f8f09709bb371d88d
MD5 ac3ace4c553819ca494c61828b592140
BLAKE2b-256 08b21ec36786f6052039bde6e2f02c3933e1a09422f2031f5c5a8998c9fdd145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 244f36cb900e4f7d65699e6c9c7342355bf3bd735932235428d4608cbdbffe23
MD5 57a9e632f2ecb5b7f6efaf00ea5df2e9
BLAKE2b-256 882e22564b9b333e4e903c3f022e9c0696bb45825f5ce6fc04563f187c31ff99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b51143af5579549571ed1e16cd5ae3c63aac7bd2158091dc37b78b043833cc28
MD5 5f9e157c4f72935d5e99f293df4a9680
BLAKE2b-256 2f969405cbdbb316e9f9f0f7832d39a22f5eae6474e0b6633355afe9bc5ccfd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-4.0.0a10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0087205815833144134216f54be39a37659ea4cf3278c63cad1a04ae2e931fcd
MD5 df0918820788ceee87cb1f14bf85196b
BLAKE2b-256 56672184653fd2d954b1c67b60c314b5f2a64f2ddae938c663f31b094ff30dff

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