Skip to main content

pulp

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.12 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]
python -m pip install pulp[glpk]
If you want to install all open source solvers (scip, highs, cbc, glpk), 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):

stats = prob.solve()

If you want to try another solver to solve the problem:

stats = prob.solve(GLPK(msg = 0))

GLPK uses GLPK’s command-line tool (glpsol) and requires it to be on your PATH. To use GLPK’s python API instead, install python -m pip install pulp[glpk] and use PYGLPK:

status = prob.solve(PYGLPK(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
stats = prob.solve(CPSAT(msg=False))

Display the status of the solution:

stats.status_str
> '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.12 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!

Release files for PuLP 4.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for PuLP 4.0.0
File Size Uploaded
pulp-4.0.0.tar.gz 162.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for PuLP 4.0.0
File
pulp-4.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pulp-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
pulp-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
pulp-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pulp-4.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
pulp-4.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
pulp-4.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
pulp-4.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
pulp-4.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
pulp-4.0.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pulp-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pulp-4.0.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
pulp-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
pulp-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pulp-4.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
pulp-4.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
pulp-4.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
pulp-4.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
pulp-4.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pulp-4.0.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
pulp-4.0.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
pulp-4.0.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pulp-4.0.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pulp-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pulp-4.0.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
pulp-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
pulp-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pulp-4.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
pulp-4.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
pulp-4.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
pulp-4.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
pulp-4.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pulp-4.0.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
pulp-4.0.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
pulp-4.0.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pulp-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pulp-4.0.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
pulp-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
pulp-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pulp-4.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pulp-4.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
pulp-4.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
pulp-4.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
pulp-4.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pulp-4.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
pulp-4.0.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pulp-4.0.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details

Total release size: 42.8 MB

Release files / pulp-4.0.0.tar.gz

Download URL pulp-4.0.0.tar.gz
Size 162.4 kB
Tags Source
SHA-256 checksum
How to use checksums
0f7fa97ae524ba724baa32d23390345df50ae80d42d6dbdc4d4b0f57dae8187c
BLAKE2b-256 checksum
How to use checksums
24ea7cc2de7e3d6ca3f943c8e4b4c831831bbf61e08123dc6958c19c9ea5a1ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1c5cf03fb280b786f75d75e3c4d910247600292486fb82ea7cfbecd23f19e689
BLAKE2b-256 checksum
How to use checksums
970f6da2f17e0a84cc04b3ac09c4217d70e4e2b2b470c349ccf84144baf52524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Size 733.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
12e406a71eae3069d9455c5b2e70467f59ff33b39e21ef8c105b915956ab74c0
BLAKE2b-256 checksum
How to use checksums
07eac05eda6bdfb0e1d85e1e0a6bd312cb7300706eddf805e85bd6cf7fe7ccd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.8 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8f0788880d1d6318e015fb8113beea0e587ad07d0863a8efa0b99a1da40acedd
BLAKE2b-256 checksum
How to use checksums
057616b5556787c3ca5682d3f984c5c4e00aededf835ecabe2242e19eee93392
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Size 735.0 kB
Tags CPython 3.15 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1c61dea906f8968ba82c52b7bb182a90cb93db910bef81d92ef7ea27dce438d8
BLAKE2b-256 checksum
How to use checksums
7a3b6823813eb8bf82de0717efdb2a900b62277b5312d85df1de6e2c3646cf33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pulp-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 903.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c8c4ad6964b23e484646930d455f903f1bf7b526ae4816cd0c80698e9c6cbb46
BLAKE2b-256 checksum
How to use checksums
241be24a696b134755ddd2cff4af41af2174120ba7829f3fecd2f85e1ba796ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl

Download URL pulp-4.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Size 938.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3bd46d6c9f1ae6a927c2afababe35db0d5c2cd642b183c446df8ec5015fbafdd
BLAKE2b-256 checksum
How to use checksums
edb4d804ba84ce81efe56e971e65739a7aa23926bdce45d1020a9a08d47c3045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pulp-4.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 975.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
79ed24da7a5599b1dc72976212330ee15f2d626e9c25218cf85f6b6def2811c3
BLAKE2b-256 checksum
How to use checksums
27359af31977fe9c12a75e621cba8ad7042f734ac3eae0e5d3a197790486462d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pulp-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 867.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e6fa98233f12c368a8e233379588cded0fc9072be1864a2fbf22af46fc12f101
BLAKE2b-256 checksum
How to use checksums
0f03e0d6d6b6aa60cb37e1d6e876a577aebd2e8a41fef96c6bdd619304b94733
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
02212d5f2179beb2bf50cf9a8fdc4403051549aca0a69c2b4eaa6007ca2cba65
BLAKE2b-256 checksum
How to use checksums
7b6165d59c4d96c5254e35d80fb5a56c9ed7552949d89f36a9e809c88e0d9436
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 722.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
39db973740ecc0ea3c8693321bca7f8ac77401c8abe68bfc081369cd9f887cfb
BLAKE2b-256 checksum
How to use checksums
444013009dfd1ebfd9014801d421c60d4098791b0c6aebb0ce7a187f35d30e57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 817.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
245937e9b4f5b5006d02c7af3aeb4edff504d6e410b1bd5a982ef564685cc8b5
BLAKE2b-256 checksum
How to use checksums
0cdc3126f1852775118ab504dd3ea30a99f3e0c9bc995271f4d3c859f870f659
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 698.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c9dec5a6a146deeae2860ee45a3e52e405a27b4aaa2380f223d2b32c61a99441
BLAKE2b-256 checksum
How to use checksums
04464ee592f8cb20c58c6dea7c6a20b5d2113974e86172e42eb739f14afc5913
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 689.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
291c4fb4875e6c0a25274fecd461991daf662915f9977237b6bd2cdb021b224e
BLAKE2b-256 checksum
How to use checksums
bab719d038937ba1df8c651b757afb129b2e97e155d3d59729e740175e6c1114
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Size 733.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f8fe7dae4b7d484dd4652912c4cbcb9a9bb73e3915588e8c51de435d8c6564e1
BLAKE2b-256 checksum
How to use checksums
e3c26755f0e5414d1bc862add6ed5456e2a7e2a55e418156d4e55b1f4bc6c6f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-win_arm64.whl

Download URL pulp-4.0.0-cp314-cp314-win_arm64.whl
Size 526.6 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
90db117777d8ab23e99e469cb7006053721e2207da1c2fb755cf475cda1d9715
BLAKE2b-256 checksum
How to use checksums
4b25e70b35b6db80f78eb11d338350e48e8d36546483c335e2c7581e21562d2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-win_amd64.whl

Download URL pulp-4.0.0-cp314-cp314-win_amd64.whl
Size 542.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
f252f2b73d9229fcaee7399509c95fe2445ed2c9a405aff8f8939b11c196dba9
BLAKE2b-256 checksum
How to use checksums
e31fce17e411194f100d45fde8d411304497a35edec48d97e6a8544852f13670
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pulp-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 903.5 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
da104a684b98ab825c4b6e6e51700ef58bd26cdd395402dea5289c71559803e2
BLAKE2b-256 checksum
How to use checksums
77a9d1e84d17496be8e57c9852556a51dd254da9609c47cc3461eb0f48b4d86f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL pulp-4.0.0-cp314-cp314-musllinux_1_2_i686.whl
Size 939.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
35b0de7b396ddec6c1a00e039730c55bb201ff6e20b40b38d336b8c1f0e1912d
BLAKE2b-256 checksum
How to use checksums
e2bf02fd7eebbd53f50d7edbb6c5374c9931e0000e9c81326ce15ae649013aa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pulp-4.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 978.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0aef1eace94a9f154081f3a45670e53529299c901d21d129e40be4feb9691e67
BLAKE2b-256 checksum
How to use checksums
43e05fe68db9ccca686021677ce1df8f1d0c132474d6ad54af057b01a07d7df2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pulp-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 869.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1e4f97acab06281969655854d9e69021b3ead0302af8988650497c45cff9c1ce
BLAKE2b-256 checksum
How to use checksums
1b88d01d39355e0ccebb1ae90818566167284e1a4c070b563ec25fa97d828547
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
10ebc3a003842cadd15f3baa0ccbdc0210dba4206b3cd7eae7ea78442121437c
BLAKE2b-256 checksum
How to use checksums
a06eb1ae35c5b763dd39908238284e886e59a6c35b14988bc2dc38e8f9fc36a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 723.8 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3a4c135da514e03916c92e5db44d36b6f49ef60344778e1284910fc7cb6d51ae
BLAKE2b-256 checksum
How to use checksums
af42d4ce241d7dd255fb3c19b1bf109e43342c578238ea749e7b1180ed2e1035
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 817.4 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4fb7737759ada05a0132b2e09d25bbff4b52a0e2c7fd8025e2b89f3b5c35441a
BLAKE2b-256 checksum
How to use checksums
52d2e172f3beddffe1de5060b63540b374c9c5cf44e1321a1cb96f4838c5d70b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 701.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a09d8badcd60e9c25720db3a0063b75acc93bf930ea1cc2c0f3e32a0079668f1
BLAKE2b-256 checksum
How to use checksums
b58255928680dceb77504925a059ba7f708169013fdce002ef2f6c550f15041a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 690.9 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a873a9fab2264e0d66bb41603058a6d0718afb7bf6eee6704fed3f3731913215
BLAKE2b-256 checksum
How to use checksums
16185939883c945ab4de040af49acd33b89c797fc9f7b100764e3eca5970f10b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 734.1 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0a3e6bc7a23e011e96453f0f7dc28600e3cb00e308ea5ddae4e9a15dc4a5efdc
BLAKE2b-256 checksum
How to use checksums
79690815bb74e57356d5cc97413c2aba498b5b2ecb384063cd6dcd5bb28cd71d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL pulp-4.0.0-cp314-cp314-macosx_11_0_arm64.whl
Size 643.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
495c3bd0d8b3def5008e6f7de36c90312d7f5cd7113e01be4040f3fdc97f69e2
BLAKE2b-256 checksum
How to use checksums
f45708a6b168041561c0e12fad7fa58eade592868a2168d6d64739e5a84d9bc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL pulp-4.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 654.2 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
72758ed35bf888ff22207a66624b23358e7f2009eff24d2ff87b18f2012ad753
BLAKE2b-256 checksum
How to use checksums
ed99d7091c5cd9ff03e2c7f3b893ad1905a1b308eefd0e985459b21b7207a674
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-win_arm64.whl

Download URL pulp-4.0.0-cp313-cp313-win_arm64.whl
Size 525.9 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
6e16bf606dc556ff37f6868fadb4505dda2f08bfd8f8b5b7ae863011502b3db7
BLAKE2b-256 checksum
How to use checksums
4929938ea74a3d49cbc2ef4badd25c9c5060382b2074db6c8196869680fcc80a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-win_amd64.whl

Download URL pulp-4.0.0-cp313-cp313-win_amd64.whl
Size 541.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c09472196a7304c442a6387e06e1f208e21e18be74a524c0d385f38569c5b9b5
BLAKE2b-256 checksum
How to use checksums
243c810bf99e9238acb579b6d297623d76477b03b11861e25b0170eafb44c67a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-win32.whl

Download URL pulp-4.0.0-cp313-cp313-win32.whl
Size 525.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
454b43e2a337ce3af39280cae2663e11dc06440f05d3383b0f6b9a70487550a2
BLAKE2b-256 checksum
How to use checksums
141275f57eb056ec4321f439d147ec277cb47d72e145f1524a67dc5a13264eaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pulp-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 903.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2cb8d26bf71d52acf962ed0d17f27f1fa8ed015a3d47b9a1c2a5b6bbbcdb0a63
BLAKE2b-256 checksum
How to use checksums
6699678b05aacdde2a365ed8f25d468b7eafee8b29fa0805e4eb6b57b84bacb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL pulp-4.0.0-cp313-cp313-musllinux_1_2_i686.whl
Size 939.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1413ff0cddf4d2c0fd359929af4d911b92983831cb9456802e5a7bd3ffd6ee2a
BLAKE2b-256 checksum
How to use checksums
6d13460000ec4418da3327ae98cb79869615d7d55701a5eb8593190001c254dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pulp-4.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 978.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
60f2109a1b18e9e1d00e9711fd1bc42463ae2a0ddd5b1cb60d3cb78f808a1448
BLAKE2b-256 checksum
How to use checksums
46a80a61d6a66b24b92b3c122f7e5012aa485f5d54a88f29f781c612ba376c03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pulp-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 869.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
24b1d3dfdfad58a1a68c368201a0466e80728c25fa49363e6b1078f1141acd36
BLAKE2b-256 checksum
How to use checksums
968f84359102093a77f19bd80bac4596c5bd49d792eaf49dda2aeb3bfa16d7ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e75b1ddaae4f3e91bfed734dc99382a8c66fb22c4eb599c0213bad09a067f6ed
BLAKE2b-256 checksum
How to use checksums
63cfec91eeccbd9952dee5bc07b4a8475e295e6b8a99ab47662ae6e59dca9e55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 724.5 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
588b2d40b5d414cbbdc33d03488b4eb3b4ab959b92de8e6c6ee92d892cff07d4
BLAKE2b-256 checksum
How to use checksums
de5cc0ec8db4f4e541b20674aae28c573ef321d2fc1e9ec0535c09bc7199e6bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 817.5 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
20251a0c69d5c0d507419888876ac32fb6346d172c87164e3b62a4abd3ee6a55
BLAKE2b-256 checksum
How to use checksums
192ef41e3d5c920c649401e046f6fd6a10125210438aab44e5cbd4de1d9c7d95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 702.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f79d9222f9180a47d66b86f8a1853f2903104117120ab9f0fbac6191ccf24276
BLAKE2b-256 checksum
How to use checksums
375b155c5950456ce67d5c66f9e946110eeaa69595cf4c4c8c5237249a2b666a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 690.8 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6bd139d4640ec78ead2ed769a1ca3df2b8fcdd9547eadcc49972654112292497
BLAKE2b-256 checksum
How to use checksums
28da393e92928027e5203c18b9b78fb6042655699bd8f1465bdbb102182b8118
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 733.4 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7f4a48e0b771b6012cf34738dbf0937bbca6267986e421376eae458e6e475270
BLAKE2b-256 checksum
How to use checksums
95a5c66e998e601e240485075088de3601693f7d591acb9af3f6b4fcc02c93d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL pulp-4.0.0-cp313-cp313-macosx_11_0_arm64.whl
Size 641.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6bcf66da6fb7d9d76ff8e84cb1bd8a1b3f1e3fb91287a018eb59d9f4000444ca
BLAKE2b-256 checksum
How to use checksums
dd5fb555a789c986c929f32209e0a71dd673d093fee3c22fe6da1b6444d57aaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pulp-4.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 652.7 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3935d8fec4daa645defa406c5f6ea5591ddde2083ddfc3a3edfb59dd48f9100c
BLAKE2b-256 checksum
How to use checksums
d3913ef5d6ba7a8622861d485c07c1ea38d19ad5193dd8743c9e43093f8511e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-win_arm64.whl

Download URL pulp-4.0.0-cp312-cp312-win_arm64.whl
Size 526.2 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
b95c51523a17e5ac0d8e6567a650c957f8c6c0f9b47709b9694e7fddb02469b5
BLAKE2b-256 checksum
How to use checksums
8ef1a42516ed7dbc05ed318f5513f0fea2277f4b5f8c04e38b15174e5bca8aad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-win_amd64.whl

Download URL pulp-4.0.0-cp312-cp312-win_amd64.whl
Size 541.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7a7b3f96930c51496ec02d8c4f81b88a4733be3ac6614b49705111bc2bd8f2b1
BLAKE2b-256 checksum
How to use checksums
ab03dfdb5fe6130bdaa71ba22b20b520722582f70d99e634bcbb4a2fd9044c5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pulp-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 903.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
257d9a5db799de61fb782284a0a9e528a4218af69ad5e841bd1f3761a2f39e4a
BLAKE2b-256 checksum
How to use checksums
5f3bf3c5bc8b74e1e84abf8e8ddde5803bb22167618dabcf55fa3605a39fc466
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL pulp-4.0.0-cp312-cp312-musllinux_1_2_i686.whl
Size 939.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5a3198c9aaf984d0cf503d49c775d57a221868364b3b602fb0aa38df6c74f0ae
BLAKE2b-256 checksum
How to use checksums
59134b7df3b1ec96e3b1f7bca57f7c595dee6fd6a9a9b4fd6770dbaf86d97cf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pulp-4.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 978.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
90cb2d532ab8ced400514c71849ef199908a176a4e8a6ecbba4426be6a13babf
BLAKE2b-256 checksum
How to use checksums
81a6c2bfe481d96e22d0a1b7affe98bcc30bf015f53755a5eb6082f00a0340a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pulp-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 869.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
40414f08cd538ddf2914f4156e35df8305ea83741dd277862566d5d9c3e8ddc6
BLAKE2b-256 checksum
How to use checksums
4e325ef0cb9477e26bea0d7df7901c0f2e4143990452d63d2df98dc280cb08bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 692.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
39128e6902ba7e14f6044e39b2957861dcac3cf8478035df6c9ff5ff64f5a6c8
BLAKE2b-256 checksum
How to use checksums
fc282b3d7e0f0b87ab02c3d009706e4318c7fe459d90cef6dfb29d6fb88610f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 724.1 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1a65622ad7dfda6eaa13af8e72d5cdaee2613eedff12edd2995746c4ab6521d8
BLAKE2b-256 checksum
How to use checksums
306efd1184f6e34b53d769cef451b0da45d96bc125ff8fad3963ec3feea7eeb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 817.2 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
768e56313c3372564e4ce22481eda9412cc8e5f57de9a463c49ee265a858ef69
BLAKE2b-256 checksum
How to use checksums
eed5aea5042150f2c437bd7beca95b02077f306cc8fb9a11f638d6d724a51065
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 702.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
1f634183a0146cd6b08ca71578a602c67f0bc26b8c0277ad4c4d0c495395de1a
BLAKE2b-256 checksum
How to use checksums
d2775353856010ebd07b25f30263f4e1a216935feca150eae64c284df4c937c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 691.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
56095751444683f048841309cebc5287dd92d60ae1b6adec1b81a7cd677548eb
BLAKE2b-256 checksum
How to use checksums
3eeddccda090b51ab55dac4d4703750e2597135f3b72a60e761a18250195a737
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pulp-4.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 733.4 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
65e2006bbdf9b72298cbe1fd47dd6840b7916381d4c7f37f5fcc1ef9e64ee607
BLAKE2b-256 checksum
How to use checksums
7212a59ed8dd9ceaced5a1971007844d9ea0f558e28d3e7f31b4792b1ec57c06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL pulp-4.0.0-cp312-cp312-macosx_11_0_arm64.whl
Size 642.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
361052ea1a308cbb934284bf2f0d03a490acaa263a9536ac0053c2e695b56aec
BLAKE2b-256 checksum
How to use checksums
7dc4972f829a5fc1088b76b5c2b7ee9db222e2b1fc49a7cdbfa7c77f58d2410d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / pulp-4.0.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pulp-4.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 653.5 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
735763d5a8d17511249dd2ed42797ffd23ccd73836186d39ab694a031cd3b67a
BLAKE2b-256 checksum
How to use checksums
7f88043c0c2d6bc8cfe845e869f017ba66a63c98cb3ea9407e625034847bf889
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

4.0.0 This release

58 release files

3.3.2

2 release files

3.3.1

2 release files

3.3.0

2 release files

3.2.2

2 release files

3.2.1

2 release files

3.2.0

2 release files

3.1.1

2 release files

3.0.2

2 release files

3.0.1

2 release files

3.0.0

2 release files

2.9.0

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.0

2 release files

2.5.1

2 release files

2.5.0

2 release files

2.4

2 release files

2.3.1

2 release files

2.3

2 release files

2.2

2 release files

2.1

2 release files

2.0

2 release files

1.6.10

1 release file

1.6.9

1 release file

1.6.8

1 release file

1.6.7

1 release file

1.6.6

1 release file

1.6.5

1 release file

1.6.4

1 release file

1.6.3

1.6.2

1 release file

1.6.1

1 release file

1.6.0

1 release file

1.5.9

1 release file

1.5.8

1 release file

1.5.7

1 release file

1.5.6

1 release file

1.5.4

1 release file

1.5.3

2 release files

1.5.2

2 release files

1.5.1

2 release files

1.5.0

1 release file

1.4.9

2 release files

1.4.8

2 release files

1.4.7

2 release files

1.4.6

1 release file

1.4.5

1 release file

1.4.4

1 release file

1.4.3

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page