Skip to main content

PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.

Project description

https://travis-ci.org/coin-or/pulp.svg?branch=master PyPI PyPI - Downloads

PuLP is an linear and mixed integer programming modeler written in Python. With PuLP, it is simple to create MILP optimisation problems and solve them with the latest open-source (or proprietary) solvers. PuLP can generate MPS or LP files and call solvers such as GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, HiGHS, SCIP/FSCIP.

The documentation for PuLP can be found here.

PuLP is part of the COIN-OR project.

Installation

PuLP requires Python 3.9 or newer.

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

python -m pip install pulp

Otherwise follow the download instructions on the PyPi page.

Installing solvers

PuLP can use a variety of solvers. The default solver is the COIN-OR CBC solver, which is included with PuLP. If you want to use other solvers, PuLP offers a quick way to install most solvers via their pypi package (some require a commercial license for running or for running large models):

python -m pip install pulp[gurobi]
python -m pip install pulp[cplex]
python -m pip install pulp[xpress]
python -m pip install pulp[scip]
python -m pip install pulp[highs]
python -m pip install pulp[copt]
python -m pip install pulp[mosek]
python -m pip install pulp[cylp]
If you want to install all open source solvers (scip, highs, cylp), you can use the shortcut::

python -m pip install pulp[open_py]

For more information on how to install solvers, see the guide on configuring solvers.

Quickstart

Use LpProblem to create a problem, then add variables with add_variable. Create a problem called “myProblem” and a variable x with 0 ≤ x ≤ 3:

from pulp import *
prob = LpProblem("myProblem", LpMinimize)
x = prob.add_variable("x", 0, 3)

To create a binary variable y (values 0 or 1):

y = prob.add_variable("y", cat="Binary")

Combine variables to create expressions and constraints and add them to the problem:

prob += x + y <= 2

An expression is a constraint without a right-hand side (RHS) sense (one of =, <= or >=). If you add an expression to a problem, it will become the objective:

prob += -4*x + y

To solve the problem with the default included solver:

status = prob.solve()

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

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

Display the status of the solution:

LpStatus[status]
> 'Optimal'

You can get the value of the variables using value. ex:

value(x)
> 2.0

Essential Classes

  • LpProblem – Container class for a Linear or Integer programming problem

  • LpVariable – Variables that are added into constraints in the LP problem

  • LpConstraint – Constraints of the general form

    a1x1 + a2x2 + … + anxn (<=, =, >=) b

Useful Functions

  • value() – Finds the value of a variable or expression

  • lpSum() – Given a list of the form [a1*x1, a2*x2, …, an*xn] will construct a linear expression to be used as a constraint or variable

  • lpDot() – Given two lists of the form [a1, a2, …, an] and [x1, x2, …, xn] will construct a linear expression to be used as a constraint or variable

More Examples

Several tutorial are given in documentation and pure code examples are available in examples/ directory .

The examples use the default solver (CBC). To use other solvers they must be available (installed and accessible). For more information on how to do that, see the guide on configuring solvers.

For Developers

If you want to install the latest version from GitHub you can run:

python -m pip install -U git+https://github.com/coin-or/pulp

Building from source

This version of PuLP includes a Rust extension (pulp._rustcore) that provides the core model, variables, constraints, and expressions. The build uses maturin and requires a Rust toolchain in addition to Python.

Requirements

  • Python 3.9 or newer

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

  • uv (recommended for install and dev). Install with: curl -LsSf https://astral.sh/uv/install.sh | sh (Linux/macOS) or powershell -c "irm https://astral.sh/uv/install.ps1 | iex" (Windows)

  • OS: Windows, macOS (x86_64, arm64), or Linux (x86_64, arm64). The Rust extension is built for the host platform.

Build steps

From the PuLP root directory, create a virtual environment and install the package in editable mode with dev dependencies:

uv venv
uv pip install --group dev -e .

Or with plain pip (maturin will be used automatically by the build backend):

python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
python -m pip install --upgrade pip
pip install --group dev -e .

Running tests

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

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

sudo pulptest

Building the documentation

The PuLP documentation is built with Sphinx. Use a virtual environment and the dev install above, then:

cd doc
make html

A folder named html will be created inside doc/build/. Open doc/build/html/index.html in a browser.

Contributing to PuLP

Instructions for making your first contribution to PuLP are given here.

Comments, bug reports, patches and suggestions are very welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pulp-0.1.0.tar.gz (32.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file pulp-0.1.0.tar.gz.

File metadata

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

File hashes

Hashes for pulp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 505398f817613a0479657fbf0aa0bf9b290e321f49c1fb5fa6bbaadc1bcb28c0
MD5 43fd6b471b8316dcf954f679e5a25885
BLAKE2b-256 c2e133c5519612fda37fd71edc42aeee63962fe0ebdb50f20fc7e6c9443977c5

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aefd1bfd6893360cb62ea0944f5afe713e55829939ae4066b116d13eb61731b5
MD5 407a7bd36de52d487b827a26e00cae33
BLAKE2b-256 ed56d3cb8e14b74f66122cf65e22209a1fc502ddc513f919d587e01c61398251

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c56886d5ebeaf1d496e2b2267928e99b6cc54ffc4e3360edfc0c2cc158a52176
MD5 289430169e3d3ddd45b9dd55b6e43f20
BLAKE2b-256 7c9b6e621464a4732164f0bdeb249062c92f5510f99c1ba380eef0e887b2df64

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62a7e08d60f202fceda4eba9b238d12c9365e5803c0d4c04a5da8aed62d0205b
MD5 b4feddf64a71a0bea42a0d173a5985ec
BLAKE2b-256 a6a18f8f24d36fb843e65a3616d7a9ff6b2403da929e38fd469457b69ad33f11

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33960d0fdcd7941f2042f1e535a2fdc50135fe98cd505f5c96d46c694536f8f0
MD5 893ff25e9647dbb7b3d0b34ffc73b7ed
BLAKE2b-256 90eb0697403fda948971e93d887a251f3f0fe42472f3163045a86860968d424e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8db1a95b3a625241bb4e28641a0606202eb7827d7730d3e56da1ec658130db67
MD5 49470c5c6210a9fa8e37acaa69615875
BLAKE2b-256 49379f92e06eb5b4435944c9046cf8eb8cad0637c618e389d3dd8aef2719d78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc49300e33da3ddccc467ec86ccfb221e36157f1c78ffd38729e1d775a90de78
MD5 a812b9c3cff13b5e01fb481acda99f36
BLAKE2b-256 5587184dfd15472f295bf128de2eabd4b282a6f20417865f98fb39ad8bca0953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b44a1aa78fea0df0f67a5e7b66c1a0a8458316b85a4495bd3a2059b3f525b83d
MD5 e8ec6b1e05484687f81d2f2eee4f3018
BLAKE2b-256 c9debb67dee8629aa2ee4850edb511f56d4e6655cb976d9dd4e79451dcb1b321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 198da209c978eee6350dae38a1e4565d6ca4a7ccdfce2c472ae200e7972cb6c1
MD5 43bf9f1734b93d09a69f8b7f3872b319
BLAKE2b-256 0be8ad1a87c19957048819a4a7d868c8bcc06c3d483dc5e0b83327277eca9965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d748c99c6c2dade3d090e0da6a2dd8cd931a296cd5d6611c276b9d56c2eca68
MD5 b120114eb3dfe832020a03a6507c41fa
BLAKE2b-256 150532ce20073574ec1c713bbe9be06ac49b1fdc247ce84de7eda434aa554ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8123c517cd6dd9bc4188102ea85d18ee0543f0bc629a23f1bd159fc3decb9a4b
MD5 cbf13c5b1a5b976c3ac8143b7c514b0b
BLAKE2b-256 1728ac5556bec8949c137ca00fb240a09aa568ba49f6c6c241604ba3ed8cf0bf

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad8f227bfc3302814436a1cd0e5360856dbe17e3c4940688db9dd2768c81d787
MD5 0b7dde2845ff4bc133569006eb3507dc
BLAKE2b-256 6783d7ecc5b9f0b8206ba978ffdb803380d581c2cbbefa9262c1b40dcfc4bbdc

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d330055a515147c4e1419849dcb23872e70ca67c1a1e6d01e3e6c723160ccf60
MD5 a17a368f2233eed4abdc726208af398c
BLAKE2b-256 62dbb0ee2dd2c6c5419439a02e78c7330bd4a820ccc3299c7c4bc15c44703f5e

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a09d8ac943fc6b50b677d2fbcf4c4dd92fb9d5231f11fe6f02f9872d2f3af59
MD5 163d4848092b9b40f0c33599e23d417a
BLAKE2b-256 9cdceeeb15edb4dc17beda7c13368e6a8b6067122acb867f74dad87852b97729

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1054c102a51395578753874e09525cd6a32c3a1575010b47b59db8c2f7e2ddfb
MD5 5568f0c783505e59cdb9d84c1ff5daec
BLAKE2b-256 9cb680a91fcbc3934f3f844e2ee2b98c3e43337a71c454ab9db1e66702f224b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4d0ceed50d73ed7682381698f752846b34c95cce93e5900dee97cf628969fdc
MD5 cbddb5217f59f367d6dd73bbe4c702b5
BLAKE2b-256 62c6d7700bb690c7f55411ab0724ec341255dd00c1ed5d98d3a6ab00a6c5dbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ef3c01c988e9e247a4fafb7f56fdc7ec7068a5b51307b7e4ca4ded16229be98
MD5 81e738da0c4b40366f1acbdd02cdf5fd
BLAKE2b-256 172811a57a3b046d979ae381bdf226d2789e28a20a43d3a05340fd777a43b40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e66bf6be87e581fed7c2f3df15408fa0e6880384be640c892cad2c9715f1ceea
MD5 8c4da6bf8cf1d962c143bb47f94e02bd
BLAKE2b-256 807ad9f2ffacde5e4cb55c3b0a9e845ef9e117598113b75b7ab154bd7bf41f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 343416ce3233aea3321966be44a73176d71e09e2ec8a104e8b26105e7b95734c
MD5 bfaa496726b790451f9365d80c04271d
BLAKE2b-256 444f076a25e3f12b0cedf0af64701b7f69dba59a4a671abcbc5aaf1515f2f544

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 24c4480848e1c09cdb6de55763bab67ed7b2e0bcfcce81c85c5a3df7fa75d194
MD5 bf2d7e6ae31b910d8ec6efdabe789159
BLAKE2b-256 a42d64881ae0adc4b3ce95dfce6a7325398223f717b4947ad4667fcad3350222

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 38b08149003d321b008897376077f9775fa6914cdff675f83c8e90354a977908
MD5 4a55434a8c6542095b14c3e7ae552bdc
BLAKE2b-256 357cef2b58acb1c3aaa8aaee1e509cfb58e7b00643c9bbefdbdcc39a903a7de2

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fa7793ad305315ecb920294028f43766196380fb4e8b03bffe702acd7b8ca35
MD5 2b1171ee7e5e53a6818e7ede19594bd5
BLAKE2b-256 f61a438e8924023ff6cce76b3041b4e319110430d1cc6fd00976692aa517f4d3

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f869596677c134f487cbdd639ef154738f5b8ff7a565fa9dba4fa1ad21ec3a61
MD5 be57b7218668333485280eb80f517fbf
BLAKE2b-256 e0759e19165c388f9b6f5e9fe0f430869ebf447543fc756d5c9a77ac8d6ca0a9

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b248d4050cf826e14547dd19e663f0d4e0603b56fe6de930d8d036b91ed5f9f3
MD5 2b42a1d5eb9ca415632497379b54e818
BLAKE2b-256 c51056dc3a2c554cebf845210eca4ad2622d387cae76400f9f4ba74db6a85890

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f1e980a13247ae349029aca8725aac1e2cd8b4c994112315919da2f1542dd9f
MD5 622c6bd882ae54b632d7a8baba01eaf2
BLAKE2b-256 7639bc8e1ff993bf66236993f3b324c9c821b4bbbc13e21961a59bb9a0b5ea4b

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16ffb88b3397abada4f4c651b0ee104eb3697cf97faf1bfbbf02800e9bf13a8d
MD5 be481b6211255c7a0770836a827833cc
BLAKE2b-256 3a616ee255ede06a50e98d6fbb58b2c51301352402dbb329ea2f4fa2d307d19a

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18dcc05b14b922eb127aadd8671bc0cbd8ef4277891e7094d953bea73a3455a3
MD5 b1d4e6987a5a7f4f78a67fce125da9c2
BLAKE2b-256 199a0f591cd1bb9117c4476140f1f5f47f9637c1ebca4292eedcdb05f5054659

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bef0448879141e73fc883481998adb9a32b3e649dd9384e5ced481bc4d7910f5
MD5 5015c8a18b82c6e32f8f3f6f7359fc66
BLAKE2b-256 ec4cf1b9da198a6bb04deaeee1916b1494ecf22d03652e0a00e1d52f31e36b9e

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7ce99048150a8d98a313e8495e245e6756d585277025cca5dce776c1226f36e
MD5 b5c55ec37a4438ff3ab3b009ea055578
BLAKE2b-256 1b4a66b37b945f04a8713ac4d4775d45805e51678331151a3ee507fe4196ba62

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e36b84afb411959f136898eab8e5ea14b5ffbe5dbf53246f28351b7d0213505
MD5 ed501ab81bad9c9408a6f7ffd1724671
BLAKE2b-256 55991e2eb2dd0b90134d02c7936dee25be223e7c92957d7873c21b32463f01ec

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 faf87593f756614de209789e9ed24924a5813a65af9776f84f035663ed7ad20d
MD5 00ab4176ca9f36a9ed952a166a02d402
BLAKE2b-256 be6cc34f97cfe939567e527dd89e6835a38db270230895eafafca8b792ab587d

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1bd12e7ba6ee5bf28114fe1e0de4709dc7ce6d31eb5fef24457417c958aac64
MD5 93af5e776c82e3c42765830c1f4ae0e2
BLAKE2b-256 99174f5fc82f84be7b00dd5ff5b755e70c365dbe3371923571884d0a0f5fd29a

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1874b908fe0b989f415c27b87f8a7dd4ea0a9a7fa9851ad5c5b391fe475ebca
MD5 244d45c70aa6240ebb73082dd346ee29
BLAKE2b-256 070eac6d60ff14c3ed5db6c26807f8e1027a36e70bcdb9a8df02fae84eab442c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c07ec5ecda247c72543125f3e749b81e2a6090f736c2758dd64c8048f7fbb234
MD5 6b52bf878b6a63c0d57d62bb97b29027
BLAKE2b-256 18510dcf032eb39e3b5ecd7412b3901179b03ed779febe80d68443d7b2272ae1

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b3379008f04c04d4e56b424fe2fc437effa7c187d2bab2118459e7587cb6f92
MD5 7893df259fa029666205d299e16e9138
BLAKE2b-256 d41257ee55748d07f866e2ceaff02d8df09cda35522b9af22d79b22cc634e4ed

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df310d4c9056abaa8f227ae149dbd729b1e2e38d33121368b324dd8deb2aeea3
MD5 e256f1b470b0f21cfa58247be229c305
BLAKE2b-256 2518dec522586df5e16dc36d01e898543f61798930fc2b6bb1eb704737a1a9ea

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 910af48662eca05c443cbddef1421853a4404e4ab94b14d68beae21269494789
MD5 38f0b20aac36b399e6b478861f3b2ddf
BLAKE2b-256 6220e399a0a25ee7e9dd61b3ac183da24a53420e49723bf3bedcc852f10aab74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea1c30acb9bdd642c6dc3e05eaa2d9b99a436be0b93ca3554bd78a137443bbbe
MD5 37f0b7c88814eab24541d86760277583
BLAKE2b-256 8c94a08fb1440964baf93e70b76a9c3ed088f290911100b3ae114126496e4a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7be653a993f4a8e33825b5088e4bbd3563fc2739dc510ebee473193f250ef558
MD5 50b05ab28b16933578b5dd93eb743467
BLAKE2b-256 2f0c80e7f0432f99f2a9e2aa257bd7979acf22955523fdba55bdbe68fd49ac2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b2e3863d82ac34951a2ccfecff6b4ca0f5101209889288b644a509dfb43d7be
MD5 755044bbb7817069d79ea0189daf2fc2
BLAKE2b-256 38fae17effd51b0af9552465a1069826c2f5c981f4d695f40242264b859448e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2727aa99a96a4c860c15e71d58f7670e9a6cd97ea5cece35faba04018d2340d
MD5 70a656f4cd7dc3dfc8743d8c47973115
BLAKE2b-256 fc38d8713a8dd253da2c6d5df0491c407f8535a41b5d93dc563c67fc00b89ee6

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 732ae86139e2e7b48a1858e6a8342e88b0972ff0f477bfc8f723ceddb524aacf
MD5 25b46a9d0e7228c47e4e766edccc8b76
BLAKE2b-256 1f2418a3a8fd5ed0191cf21afa080be14820373de0a6c9485067ad26f1017f52

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a422013514492be40b59388995bdc9b5a8a625d2b4c1cf39d34e17f7052999b2
MD5 e84a3c1ce952b80496ba0f429ede2552
BLAKE2b-256 776d546d48c83287f132065e2c12851b240cc16f3eadc3fe49b21509177542f2

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6de4bbf904bc5c764a97d33b99bc2b0b7650ea6a57ffcaefb7835a85f7c4388b
MD5 376b31cd85f01431bee7ba9b05d4e455
BLAKE2b-256 fe833bcff1fb3781d4df8ab6760274650162b0be89dee4bd571e0b3d3bb25f1b

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8188b8c36f0762665bba6aab0b6cface1020bdde0300337738cb5424ba917ea
MD5 f70bd72baab711208162a3aa5ae0164f
BLAKE2b-256 d50704395f314b8331b068c1ccc3ac7dd845119b5e5d3b5efe0181ecb57503da

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0b49d68de4751e22d8d82c91e0b160b6df4e1fe525455158bc225103897effd
MD5 398ebf054d3e7d92905f8545e483cc3b
BLAKE2b-256 de155cfb751b26748b954e1b033cd86f7f58925dbccc173675b7948d39221f2a

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8d11d9d93089fa996f4f609105f74671fda3b2ccd5d1f1262f7189e160a55a5
MD5 6bb2e6ba1d8842dbe97b877d76110c78
BLAKE2b-256 1b1cf2c2f2d6815c7ffd1b650900ea8584ce294446d8c8d4a55d878ddf27cfbf

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72a97ae769639721af92a7b35ab400724a64834c9c16cf53d35657eaa581a93b
MD5 3ce5e2a8f8186ca94759fa2cf1606eac
BLAKE2b-256 7fcb378de2e13c355405b5791bca8f3b2de379e388620fba6f7cdf2e3b9dbd58

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeaea61244e8a3d60141945af033dace6e33136574d52689134d1e5bf645405c
MD5 ab1da32c747467a6636d58653ca604cd
BLAKE2b-256 6ed201172f660785cd651ac18e5fb875090055f3f98152e2ae0a51816d5f04f5

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd5d9773a6bec3f721b293004b6c42e71f10c2db3ee550e565883d786518e6cd
MD5 b523b3a03795aa6c4134c6705e7de588
BLAKE2b-256 560c379d5756900bec31d7dac227d0a4af949b2afc53cf893d28496ed7c5e91c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20d190a56d6d7bb09e4290ac94b596a9945104461f61bed9a1241576386fedf0
MD5 8d347a2aa96bbd6213ff07c8417f7f8f
BLAKE2b-256 58727c4c1a86350fb86b433df6b825b08fd0b6e45727f12e7dc6bd93e218ce0e

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08457d53750d29ece2efebe9654da513ca642cec992f5d852ae65315cb59efa9
MD5 821ae6e5df926068627776c09cc7eee3
BLAKE2b-256 bc22d01ca550c3fc13b0704acab9f50a90587d6a392335661faeab7c6b12147d

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abd967e5fb66bd7f4e31a991c3089e0e5def21d49bdd8ca25b648b934a7d7946
MD5 fef5783355f30a5d2bf076ea0692294d
BLAKE2b-256 17fbff654b7ded84bccf4feb643e173f26295581043fd37e19b92be0b2e9f8db

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45376510cfc8d8e8e8fe47e02e83b2309f6ecfebea2eb4d08b5386ec3a4bc53e
MD5 620583566d7a2bd6cd8bb491f60d196c
BLAKE2b-256 b10daeffefe44ccfad779ca621295d1edeb3df40a286ebd814e5863eab381e35

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 984e173445ea5b30fc3ddbfc77f779019fbc08a41bf642ca58f392636cabe38c
MD5 bd801b723070a66bab8ef3715867b279
BLAKE2b-256 b446dd9743a990a7fc57180acfa49feb354c08327dd3fb95403f47f26cb2016a

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a94fe085002f15d4f69a402a0440e0a1e6e20257faa26a099be4e87903204b7
MD5 e8744855d1339808d6ec111d1a6f4f2c
BLAKE2b-256 509144ecf81b08da28bd74854e6990052594fc6d170b3f7f865a47bc39dbe7a8

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2e8b54d93131164159b79111b22c2e33ce38c2be22096b41f874d6d70d959612
MD5 a67006bdef0ea2e299ced90858cfffaf
BLAKE2b-256 704dca2fed270e59f2993d97fa3d9769a20e5e2565ecdcdc4d941cc64d7485ca

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e65f478670ceb57df77a6bda5d8a9d3c00eef4700633b4d174111d6452c5e4dd
MD5 3512739d115fc751289e9fba0e950ab3
BLAKE2b-256 b009097d0ce2ca73ec74b9f76f15243d31279ae9030ee51a7f3a128a3469c7ac

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 800ad1602a9efda8fd0387788ab43650008bb03f4f7527ce9a60bc19e1246a7e
MD5 060ecf3e474fd2617bd8c966f215d7ed
BLAKE2b-256 4ad363f96e57e593dabe429c978a86c708f2c17e473c67f48b5a4090fed2c9ac

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ad5644b9514290eefb3c0f8c5121ce06a43879de5b2c186cdb2db91d511d936
MD5 8d2ae99ab41de68f8494477902c033ab
BLAKE2b-256 895749e1a8993409411c0be60565a0566d22c781066b1e8989e51a04abbab2d8

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1db2b1a535584aa4b5208e72453b8c5ef16f29486779be964792fea3ad1532bb
MD5 a44b11525bdf266b2bfe0b9e687aac4e
BLAKE2b-256 e9fdab625c7f49fe50f26a0b73bb1ff9e66f98b60d2b65076eebff72803fbefd

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2741a48437eb044a029a0d27edbfabc14c77fb0ef1e9e17aeec1b0bd7f5f21c
MD5 28ec7b264d5e17d68fe3c4068dd2b9b9
BLAKE2b-256 6e9e81221e1a522e20cbd26af665478ae947392c31465378d4605656be1f0cfe

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 395c094775dffa645dfc4e94c7fcbeb51b1dafce1a62f7c8470f292c63abc770
MD5 1f3f24f45e0bb7446ded0fff03ff7320
BLAKE2b-256 3de5c85baba4aa41c072e95a009a2192ea42ac61ccc826fe6b4cc20b6b5e2e2e

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31be2b8bd8626c1b3fe1d4924d75f8b96ae2773ac56a4361dac5a94cc34d9285
MD5 6d2ea2bbf469f9e7b12397cc521c7f36
BLAKE2b-256 6a996e470341c1f6a8960b678b24830994cb5c844f4f7eb3bb6f82528634f560

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76e54418b8b76d13b153c2734084ded4508b11d4133bbaaaf4a5d1450e0ffcce
MD5 74935b39d6c9f03dd914b783a0dac84c
BLAKE2b-256 113360a264b6e6ad8f12ae2136463c6c9edfe29c588c73c7f40ec452d4bd8593

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51edfd8a9f4421f8a4d4c157ce5d56ca1a50cca93ff5c62cabec2f427056b3b0
MD5 adbfaf6018a9aed4bcde06c8f2695647
BLAKE2b-256 3de68341ec5bbe8937312713acdd697da9413c99ff232d36b5a50e2c3ea2278c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a36514b73130ad4407f427efb49126ccae1b09fab3c34d68d9596644d7219e7f
MD5 449646a35c450bfa3dc05eb9d357502d
BLAKE2b-256 d301779bfdb30b60029b372afe66a78addfd26ca2724265412ed5b3dab4585da

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0eee16acf1098a23a2eec1385d00058de239e5489e6cb37aa49695a404f36e2d
MD5 94e4fd5bc062c94b77555c95cd438eff
BLAKE2b-256 7c2542082b9f3925b732b727baa60845f295ecd5c220ed6ad717856d4b05fd33

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13a609dfa924a71c58f18e99445d68146be46c2255a8d5656ac8a24a2786ebc
MD5 612147cc5072c5cf195cb1c62b9f68ab
BLAKE2b-256 1e6955a9b5ed48c3d741507bf9e39188c20311af1d541122aac548f01304b7b4

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cf68d46b1f1a55c2929547b2b27bcd7ab4783705ca66b711755923d05427472
MD5 67bb1af50e2bec3f8c0e6457bce1d0db
BLAKE2b-256 59d3cd249c48fea67f390cc2260ec5ed2b58b8980f77853c7080d912ba3c7b34

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a1cdd05c156913426a2f5e8357be8f9154c7c4543f64e855b0dbbc8089b998c
MD5 1a0d8bacbe913ee8d2934974b6b11ab9
BLAKE2b-256 35566f22e5a0877a159fcbccbe66cc68c54e79def101e886f095509e7e4f4579

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9bb8c2c0e5721b0cc8f85cb1f64b6ba74ca5301e7d8a5ec173355fe8b9f2257
MD5 842c7b5f7f193dbc143b08f0b062bf70
BLAKE2b-256 1b80b21b18f9700ceeecc812fcd71d6fefcb8fc5b3d9ea76f0c77c4245eb13c5

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d58d40c6bebf5c51b35ce2ec97e721ef16e3ca684daecf3a25bc2d5ed821f010
MD5 aed71a9063d8c30dd013acc7e712aa4b
BLAKE2b-256 e2e7bf6258c011f62d5c8c537b457969487a1faebb03b491152c98ea52b99d99

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b0d5868813310fb914e079aec952f1035dc90605aad5c529c51e4047213da45
MD5 ca329248a6b82446f8673f2b653cdb43
BLAKE2b-256 5e60cc3d1c25d6091532d7d472032178e39a203a94c819545973b8a4d8f1830f

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 997950aeeb2d4d2b8bd868cf1247563d28867055ff91156f180f036062440c5e
MD5 70bfb47ed866bef7aaba03ee43761b1a
BLAKE2b-256 2fb4bf88d0d5aa1004447af2e77677c7376aa1088015cfe9ae8847cb921f56df

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8cae6636389cff93b44bcf9fe2f0a45270f7f9e73c5bd3ede22e5a67958e5e9
MD5 718aa77e0d8304e9b97e62ac5e1d8131
BLAKE2b-256 702be2d678fe438ffb3bd5af16ed5dfce132ece1b9a42f624d387495e9ded069

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c924a187546363e0813dc6c8ef303797cf1e569f2556beaa192c6c30810998aa
MD5 da90a013ad27eeaebb460f1fc32af8c9
BLAKE2b-256 425758c5abde34d277564d48398780fbb20318731d9e39279263635b67b98af2

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74335a9d1cadcd00f76ac8232e648253419dc39112145b73075ed272f2ee4d91
MD5 5915ea7292dfc11470ff76f6afacfa45
BLAKE2b-256 85a622f055bafe258cb6d689dd7beefce665e025f90489c2cd153158dbd2ad70

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d726bf7372865f98ce27d21a80e426b1823d5efcce8bb57551e89ac96794ad8a
MD5 0d55714451c8cbaeff6e62638f81e232
BLAKE2b-256 1bf8d4529ef22bb78485abb3a5a513fbbd57e97b06c910ba5776b74007a494b3

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04153434e2855e0a281e0f8124932731bc24d0f7f9846f2bec437f3abaed7cd2
MD5 6a1c4613ea5dd40fc116ec9affacc6c3
BLAKE2b-256 220f106329ee6c99055612925819e3bf29d67aea00ec1e8b719221e7ed3f857b

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 402b52852d238edb485e6de6d940625e4882a51e7da69afbaf53e03e1b9f8664
MD5 2db0c43a374c6b2361509539f05a40f1
BLAKE2b-256 6c1bd4eef435e4bb7cbddd0fa23ef7e7961a0f027cd4aba7fa2d9b2ab0e55ac5

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05da62854c42bb884155dfeebc8bbd78dbb94be2499a9af6e617d1790f969c2b
MD5 2161468826aa1d85e9d71be6e1c0b898
BLAKE2b-256 2afab47cd3c6af2d7444a741513b33b309fe5b3181f0bf5e75ad983b76c50e19

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd823019d480ded1c20d39c0ca17182080373c5503e6110e8b02bdad4b640009
MD5 14ac2f7e1de62cb5f81e4c28a33e5cd2
BLAKE2b-256 1b36591e3a72be1367df939687a73813071bddfcba4849b2de7e784d19dab706

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for pulp-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f292fcd0974149a238947151d8930d940f4ba8d2eccb122f7c70a9bc334c0b5
MD5 648d147b28a0e10d281b0d17ffdf68b8
BLAKE2b-256 4579164a1b2972ab45b121b3ce2ad1deb9687f528955cafe844803b308d9eda3

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42715388fc056dca1e3defa1f2350ead3009b13abfdb0f7669ff820131c660a1
MD5 1dc6d3c4a7533f0d654a270191837227
BLAKE2b-256 d5ab8cc09ed8176313660e151423dd740f89265f6a85dce7250aab9d0dde96e2

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ebd5b7e3041fe6c79f0826c69d5cc7ca95906a98e0530af4c1533431fdb6ed3
MD5 e41c9f9f79c1df443be47dceb41c36c0
BLAKE2b-256 fdc7056a3ca592ac6f6a000ec7030c3169cb6431ce9c659d77d510aeb98b9db9

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93152abc2f31ce5bda9b76b154056881f57828783467c2c1c4817b43048dc8ae
MD5 ce3261cf0ad89fae40724532aa74d376
BLAKE2b-256 23830dff0a3b45db9733e1fdfc23c7d7d86cd148b0cde1882aab60517340714c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7adf5f3032e3b3c5de255e227f26ade5208627556650f3fb14bde34795ec8b96
MD5 14cdf10438fa5a285540a9e01a6ec918
BLAKE2b-256 1631ea130689bc007058eb9ecfd5cc07037a87c049b46239d0f2e80db9be4b1c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57bdf849d7d1d1f3e374b751d37858985ef80e4d8c663755fb8dc5aea8b90a28
MD5 afc1a9258f88557cf62872069ddeff18
BLAKE2b-256 3df100b103a80a39f034f1a9f2cdbaf2100dd18d99928f4bf574837e79f284c7

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0068fbfe2a1bf9a7c9d5f5094f52a40ae785d63670cc2cd83c2f7a9726162fe5
MD5 109e04bd3e02900400ae7fc92ca24c9f
BLAKE2b-256 4d039ae2ab9e4f239742746962d288d342fe64c147033d070affbf4fa00d3c92

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fd4a64d6a1d55a8caaf4c405d2b3dc6ed96fce7d778d8179c749b68f4fc3588
MD5 8037770baae67763f013ef9b15d42e1e
BLAKE2b-256 d6671095566ecf1b43d5f639fa2f0c37da84587ad2f96d38658445efc525c060

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9bfa0bd88442d3f548e3dc26bb3b0ec445480eddd49663a75c052da9b2d49e5
MD5 5e800d4e2ece8c7e0b55cede0c7c3fbc
BLAKE2b-256 615f9f7456e0c4052cc0669117b965dbb35e1ff77f348a66c22d4eb26d257e4e

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f68ee0cf3867d99b91e2c5464de0019bb982bcad051840abcde22ea698fcf3dc
MD5 a4ecda7c2d37853594fb4869bc05e7d0
BLAKE2b-256 b7d9b55ce7d1f209a4002f3c06bfb7bee484f94e8cfac566039b343718f720ed

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d51e8af516bc70fcdccbb918373134351edaf23b42c92b46ee8b90d251b7df09
MD5 22bbe8035332bb988749350aee4c0cda
BLAKE2b-256 2558cae9674b495c1d25e9fcb439c99596ad31b8850ca4a48e87a6f1e0644c69

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pulp-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 18.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89826b52170c2b80040cc9141ae0231796a2090111933915919671181af073d4
MD5 42543c92861482444b09285646b94cf8
BLAKE2b-256 ef0ae7478f78b6e755f306bae574e4769edd0752babca69bcc274a356dda18fd

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pulp-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8409967a6cf80f6395f39a428b87a4d684200a714c9f2ef0316751bb1829d0c2
MD5 044e1493f800ea63536b5e789ec7cb45
BLAKE2b-256 025c9c750893b137a156cb55316f6e072fbf4f4f87631b007f3288451854e037

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pulp-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 18.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pulp-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caa4a31d084478199907d34add9c72a127b0a70096819801ca9a28281f997561
MD5 f07caf77cddb97c272c4ea31f0ddc6fc
BLAKE2b-256 c3b80e8af20f1f7b9d19ed496f5609cf7058016205ccefea94140c51b107cfcf

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49f2dd75663534001f743968b462d8980f5201e6c538dc94d57645f8c6d03dbc
MD5 4202faac2fd3af92f2e25208412ffe5c
BLAKE2b-256 760a3516924de7a3843c82f31fefcd36354d544c6a85eb3048d8de6347ff5fc0

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2118af09ad9e1e105ed118742d7550717e70b2b028f69486647d8da831bf3486
MD5 21095ec5b40405c62989bdeba6d3ba49
BLAKE2b-256 c0f64e6b6af90a307f7128d0077de54837fbbf3dec99a255c145ccaf0839e51c

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95ce7ce762526b8b975159db255191d622c8f583ec742a56486dbcb1f9632c9a
MD5 e9a69e4dc537406df11ea9eba0ad262c
BLAKE2b-256 b6ea05bbb32d2f3785bb2f99a5598efbc98e9c85381d9814f508cca0fbee6099

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b79ecf69535ae60466549dd5cfdac42fbc8c681dc532aea035e6c7aa1088454
MD5 5901b4ca618eb270d0bb8df5f358f73c
BLAKE2b-256 2e1a678c6b2f62e80805cefce1658fbe306918705a4f42ea228ef6d46927b4a1

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50d84f45d6e9d54871eecb4b81286b100e1ca618769c7f6c8d3d94f6399f7a5f
MD5 de9045277e18ca21f81b3cb4c7918423
BLAKE2b-256 4ce4b6723adfde8726b77557ec0472c0486e8b99a337e15782329ea244a11cbb

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31eb4276c7d0c5e4287d1b68a601d2dc74d9a4c0c7f7645d9c12c986149bbfa1
MD5 20bd811f6e5b04659e32c44b271e44ed
BLAKE2b-256 3c5e05e45cf1c8e0abc5869652442cffcb551b288762447e895fbfa3ac837403

See more details on using hashes here.

File details

Details for the file pulp-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pulp-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 614e5655cd03b91deffec134b6458173aa96c61454427bcafeaa4dfb7b934d29
MD5 d86842dc1b57832b974782afcdf8489b
BLAKE2b-256 ac78b3cdacdedbfe52fc639f5b5da82b55bb3a0ed43f46af9c958d1e9fb88b95

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