Skip to main content
PlaCo

Rhoban's Planning and Control library

QP-based task-space inverse kinematics and dynamics for robots.
Written in C++ for runtime performance, with Python bindings for fast prototyping.

Documentation PyPI Python versions Build arXiv License

Documentation  ·  Getting started  ·  Examples repository  ·  Build from source  ·  Paper

pip install placo

What is PlaCo?

PlaCo is Rhoban's planning and control library. It is built on top of pinocchio and the eiquadprog QP solver, and provides a high-level API to express whole-body control problems as a set of tasks and constraints, which are assembled into a quadratic program and solved for you.

Quadruped demo

Task-Space Inverse Kinematics

Specify tasks for constrained inverse kinematics (IK): frames, center of mass, joints, gears, wheels…

Documentation  ·  Examples gallery

Megabot demo

Task-Space Inverse Dynamics

Specify tasks for constrained inverse dynamics (ID), including contacts, torque and velocity limits.

Documentation  ·  Examples gallery

Installation

PlaCo is distributed as a wheel for Linux and macOS (x86-64 and arm64), and requires Python 3.10 or later:

pip install placo

It can also be built from sources, which is required to use the C++ API.

A first taste

import numpy as np
import placo

# Load a robot and create the kinematics solver
robot = placo.RobotWrapper("models/6axis/")
solver = placo.KinematicsSolver(robot)
solver.mask_fbase(True)  # the robot is anchored to the ground

# Ask the "effector" frame to reach a given pose
effector_task = solver.add_frame_task("effector", np.eye(4))
effector_task.configure("effector", "soft", 1.0, 1.0)

# Solve the IK, and integrate the result in the robot state
robot.update_kinematics()
solver.solve(True)

Head to the getting started guide for a walkthrough, or to the examples repository for runnable robots and scenarios.

Resources

  • Documentation — guides and full API reference
  • Examples repository — runnable demos, models and videos
  • Paper — PlaCo: a QP-based robot planning and control framework
  • Issues — bug reports and feature requests

Citation

If you use PlaCo in your research, please cite the following paper:

@misc{duclusaud2025placo,
      title={PlaCo: a QP-based robot planning and control framework},
      author={Marc Duclusaud and Grégoire Passault and Vincent Padois and Olivier Ly},
      year={2025},
      eprint={2511.06141},
      archivePrefix={arXiv},
      primaryClass={cs.RO},
      url={https://arxiv.org/abs/2511.06141},
}

License

PlaCo is released under the MIT License.

Release files for placo 0.9.24

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

Source distribution (sdist)

Source distribution for placo 0.9.24
File Size Uploaded
placo-0.9.24.tar.gz 140.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for placo 0.9.24
File
placo-0.9.24-0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
placo-0.9.24-0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
placo-0.9.24-0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
placo-0.9.24-0-cp314-cp314-macosx_10_9_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.9+ x86-64 Details
placo-0.9.24-0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
placo-0.9.24-0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
placo-0.9.24-0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
placo-0.9.24-0-cp313-cp313-macosx_10_9_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.9+ x86-64 Details
placo-0.9.24-0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
placo-0.9.24-0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
placo-0.9.24-0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
placo-0.9.24-0-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
placo-0.9.24-0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
placo-0.9.24-0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
placo-0.9.24-0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
placo-0.9.24-0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
placo-0.9.24-0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
placo-0.9.24-0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
placo-0.9.24-0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
placo-0.9.24-0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 38.5 MB

Release files / placo-0.9.24.tar.gz

Download URL placo-0.9.24.tar.gz
Size 140.9 kB
Tags Source
SHA-256 checksum
How to use checksums
40633867aeb3839b64fa004462c98f0353ea4b7c60faf08cf934a23a3359df18
BLAKE2b-256 checksum
How to use checksums
c253720f24534870f8dfd37c0a4013666d736576f3098b30a7bf5e4d912802c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL placo-0.9.24-0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
94872d48eda3d0a93c9ec3c203bac788df7201fe9748be3c180dc77b31b8828e
BLAKE2b-256 checksum
How to use checksums
3c86f245de7929f5837f55902b50b026902a23a5f590933871f295a9bae61751
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL placo-0.9.24-0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8193079af2c7df993a9716753e39696b2533ec654d61ebd6f305924d64dadb76
BLAKE2b-256 checksum
How to use checksums
3adc68ba6e23cd52464788e6433a4ffbb8e3daa7e7700032fc502004797e87b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp314-cp314-macosx_11_0_arm64.whl

Download URL placo-0.9.24-0-cp314-cp314-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9482d3840153618f3038bc2d85d284d510a23196dd8f7d339b3fa4a367d5da52
BLAKE2b-256 checksum
How to use checksums
ef614a569be199e4d0a2926a8ca21b1755d7ed95beab4b24b89c4ef5b3319805
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp314-cp314-macosx_10_9_x86_64.whl

Download URL placo-0.9.24-0-cp314-cp314-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.14 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a19b2f345d903364930af787555ecc8c4922364cafcdb402140d1d172a5c628f
BLAKE2b-256 checksum
How to use checksums
d6c08b17116a3f9b66e78e2374c85df2280a9475302093d531f690971d4c5c1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL placo-0.9.24-0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a318a47d25e122de4dccd6509c6f8d1e7efc352ed7e554c097eb8b5307a35921
BLAKE2b-256 checksum
How to use checksums
f367256ec9118ccbcb50eb61788334ed17d36fa6c3d937874c1312261bf0e471
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL placo-0.9.24-0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
51efc07e51b2d9a5906c21de049cebd3191e1a3f7da1c4356b58871674b90b44
BLAKE2b-256 checksum
How to use checksums
2c8455562ffee3871797fd82f4de0c21a260a2fe4b5f54b72b5573bc35745317
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp313-cp313-macosx_11_0_arm64.whl

Download URL placo-0.9.24-0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4814f85a358ad7de2306591725583a1c3213272b76e7a3e50cf0d281cdb77a3f
BLAKE2b-256 checksum
How to use checksums
fc2f5f9ab8325145c5b26fe0914d2344bbbd45c9088757962e40111b853f8035
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp313-cp313-macosx_10_9_x86_64.whl

Download URL placo-0.9.24-0-cp313-cp313-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9c75ac95628952bdcecb492ccbcf6f7446c692e1c9fce29516c386cefb4f494c
BLAKE2b-256 checksum
How to use checksums
4541eb88457c3bc6b360656a710b03814282ab17093cdfa3086a09e43e192409
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL placo-0.9.24-0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
01183bd91dc89756d0dc9d312b9d76bb67fa84acfc75f9bf6a94a39b8956c29c
BLAKE2b-256 checksum
How to use checksums
fde88e1a18e9440f73eb5340a43fec06536ff6e34e4ea45c362909057468d9c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL placo-0.9.24-0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3b3ae549b48807eda36c9155abf72ca019e47ac0a0952f4c3980e234ed7cc70c
BLAKE2b-256 checksum
How to use checksums
3a99e570efeac56812165286500b348371171e046a57fcc66cbeeb473ea68765
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp312-cp312-macosx_11_0_arm64.whl

Download URL placo-0.9.24-0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3018f485321270a55809de45a6a2cf98f05fe558807e9bf9f7ddb36d52943fa7
BLAKE2b-256 checksum
How to use checksums
4c766c000ef0f2fe102aa0b7732da7eb2bb3c2e7f32ac0407ad70f4d810fe680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp312-cp312-macosx_10_9_x86_64.whl

Download URL placo-0.9.24-0-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
eb5e7aa7baf21048da5b4d19d09484fdf1617330a459b84c45d0f4d4d0f18184
BLAKE2b-256 checksum
How to use checksums
225906ef23b9057858e6c3542e5442ebea8a6c8e09225e654d8885c36812642b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL placo-0.9.24-0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
af3f67765fc761f6250b2a87f0f7e55f5eae261a9ad3a85852cb3f5adfdf0f5b
BLAKE2b-256 checksum
How to use checksums
147473cc751edfe6e60c6e4dcadfa536d88a66868daafc0149f8fc211b652962
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL placo-0.9.24-0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d7aa2945baebafaba7b293ad8da746c2bd068805d7ba9235c168b3a61dd88ee9
BLAKE2b-256 checksum
How to use checksums
1206ae269244d5f368559cbf081954efc549c3a22d92a1ae57b1c622aa75a76f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp311-cp311-macosx_11_0_arm64.whl

Download URL placo-0.9.24-0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
84fb850a8fea587612952e11cf4899f4579d841b581abf372f4c32efb740d76b
BLAKE2b-256 checksum
How to use checksums
4d86ce68240f1fe0959b9022c66fd9a9b2fe387b83fba90296626722149b9b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL placo-0.9.24-0-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
70a5e37c7cf60de321835bf430e2f1a6de9ac4b26241fd1b546dc6065c749993
BLAKE2b-256 checksum
How to use checksums
b3abb5f68d9142c51d8785b4798d745ecac02ecd2de4f90005b3d353bcd764d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL placo-0.9.24-0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
32ab83421b9d30aa8af63aa122ee206c004c008c3f4cef98a9aa85f5ecbe772d
BLAKE2b-256 checksum
How to use checksums
75f9f2cca17505935987f27b9a60fe68f91fdcb8aa04eab3f0fcc0b6f0786fc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL placo-0.9.24-0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
41a24981fdc047cbc94b424bd66807be8d3a19421b1f80da24e5a8172d752122
BLAKE2b-256 checksum
How to use checksums
c6381aa98e1bba6a9b97fbd3ff0533b22e7b9e3feb7f077cbd5db37409db8289
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp310-cp310-macosx_11_0_arm64.whl

Download URL placo-0.9.24-0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ba643063037130e5d1c0b179059dff39b9a86fa189d636fd3f47ae52ea1c6660
BLAKE2b-256 checksum
How to use checksums
9b4e62c9dd5f813bd5135f9b555d9805798b74c0c1f10cded592c984e9ce52fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release files / placo-0.9.24-0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL placo-0.9.24-0-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
677e723d45d965b1f59dc22462e0c9ad519263023b1ff4f4ec5270b4d758225e
BLAKE2b-256 checksum
How to use checksums
8a4da4a81fe8611e015519e6113b38722b4c59bd8f6189c74c842980bdb4a56d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 26, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.9.24 This release

21 release files

0.9.9

21 release files

0.9.8

21 release files

0.9.7

21 release files

0.9.6

21 release files

0.9.5

21 release files

0.9.0

21 release files

0.8.9

21 release files

0.8.8

21 release files

0.8.7

21 release files

0.8.6

21 release files

0.8.5

21 release files

0.8.3

16 release files

0.8.0

16 release files

0.7.20

2 release files

0.7.17

2 release files

0.7.10

3 release files

0.7.6

2 release files

0.7.5

2 release files

0.7.4

2 release files

0.7.3

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.5

2 release files

0.6.4

2 release files

0.6.3

2 release files

0.6.2

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.9

2 release files

0.5.6

2 release files

0.5.5

2 release files

0.5.4

2 release files

0.5.2

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.4.9

2 release files

0.4.8

2 release files

0.4.7

2 release files

0.4.6

2 release files

0.4.5

2 release files

0.4.3

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.8

2 release files

0.3.7

2 release files

0.3.6

2 release files

0.3.5

2 release files

0.3.4

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.8

2 release files

0.2.7

1 release file

0.2.6

1 release file

0.2.5

1 release file

0.2.4

1 release file

0.2.2

1 release file

0.2.1

2 release files

0.2.0

2 release files

0.1.7

1 release file

0.1.6

1 release file

0.1.5

1 release file

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

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