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.26

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.26
File Size Uploaded
placo-0.9.26.tar.gz 141.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for placo 0.9.26
File
placo-0.9.26-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.26-0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
placo-0.9.26-0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
placo-0.9.26-0-cp314-cp314-macosx_10_9_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.9+ x86-64 Details
placo-0.9.26-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.26-0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
placo-0.9.26-0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
placo-0.9.26-0-cp313-cp313-macosx_10_9_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.9+ x86-64 Details
placo-0.9.26-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.26-0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
placo-0.9.26-0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
placo-0.9.26-0-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
placo-0.9.26-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.26-0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
placo-0.9.26-0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
placo-0.9.26-0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
placo-0.9.26-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.26-0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
placo-0.9.26-0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
placo-0.9.26-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.6 MB

Release files / placo-0.9.26.tar.gz

Download URL placo-0.9.26.tar.gz
Size 141.1 kB
Tags Source
SHA-256 checksum
How to use checksums
8eeedaf3fa0389ffeb13690a1a06198f29da764a768c0fc0dd8dce680c280870
BLAKE2b-256 checksum
How to use checksums
a33b27ebf9e22b62be9eeea6dfd09892077c8838d1a7eb8cbbed5e516a1fbf21
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
675f350e81c4f251a0fd7acaf47d0c9c6474a6444564337cffd23f460c09059c
BLAKE2b-256 checksum
How to use checksums
f510a0c40c4c26e348b6a817db39aaf9a84d53201e40287c5d1b1e9e5993ddf0
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
ed57c9c719d44e5e66772152773130af641e43e870be4eda1c5549cd843fbdc4
BLAKE2b-256 checksum
How to use checksums
f6660080f4c90e903151be0af27a469422bf41cd9ce915cd019f499547beb5b1
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
9862ba465e24fc4a8bd18a12979f6745fed7e3a3b62df62406b60c74806cd33c
BLAKE2b-256 checksum
How to use checksums
c00e2547caf184c97857d8c098fa3ca8c41127dbc1ad3033e83afe8930a9db7b
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
ddbc680fc9d19aa72960c54f94b1255e14f3480df6bf6bf94aa301c0ef317c04
BLAKE2b-256 checksum
How to use checksums
3b60bea69abca944fe3ab5645ac2ba59ad05ff0ab34f8086be61be5d6bda6189
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
41dc31f3208f252b6e6b233feb27340d4382b966588b693459510861fa54d419
BLAKE2b-256 checksum
How to use checksums
b477dbcf55e4505d20de166e514717332b57f0289b015b47d2e44002921ec94c
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
f9fe377240f6b9c7dbd109b7d4106869ccb87a1d6d563921253c92af20158d9d
BLAKE2b-256 checksum
How to use checksums
cd8ac34bcd7dbb01186bbed9c00f112be84203d3246ed26f14e5f4e8cf3507a4
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
9493aeb3390c558dff999c4b9f739d90130f4c2b40799149624a41ea1f7a0c69
BLAKE2b-256 checksum
How to use checksums
8c0707d667aebdc6d7f37b53c5c64fda3b81ef7a22aa802e32a4c5735e0b9114
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
a42c176a766ca0fe5a62e5c57c73cede14ecd9a3a47c2c6a3878519b33265b7d
BLAKE2b-256 checksum
How to use checksums
a5e62e7f1a8c868b5039657f8fa2439f2c22329d6c66b7a64bbf49be43c32784
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
06969ab5ff5fb633e2f060dd3f5a67449353e6f9fa3f1cb8937ccf7127ad89db
BLAKE2b-256 checksum
How to use checksums
1e0f0ad4d30779734c5a512772c1927d9dbaa3bd7e9aeb8875d6544945645bc8
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
231c5f0e74cd0bca2ec122056e8eb73a8e398e707840229d9c47811d4e27a9cb
BLAKE2b-256 checksum
How to use checksums
de5097a03ea10cc816ed824cd5b6fa6f7a699af7f98fdc5c88068bfb406cc9f7
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
fb7c4b86a30b75e7f43fcdcc756c832d1a1c718a711875b5241e24579cec0d6a
BLAKE2b-256 checksum
How to use checksums
173248970aa8138683ebed1bff8631d2fadff6ddbfddc3aeefc7bc78f7a3ee24
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
23deeba8ca423a790951c2f32081a81f0b34de2ca14d16a16a93b79cbec4f7fe
BLAKE2b-256 checksum
How to use checksums
9355368936131a9327171222a0b5b2129a96081759b38692dcb0b7ddcda56655
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9ce94dba2c19d627b69b2b983e57f17f4f8596952e8b53d7d214a31ff478ba19
BLAKE2b-256 checksum
How to use checksums
cfcee21abdad637354a171271452b4fc75b13f86ac7f9de766422c2757d6eaf7
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
7b52598e019da0ecea62a6f9a48f3d62dad7654b63b464bf242f2badaba192fa
BLAKE2b-256 checksum
How to use checksums
8330dde913c5d1aab337f8acf7f36b966cba13f463d2b5d4adf29c237fa11d6b
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
51ebe89c9d14bb8781301fbac6c8a891bfde649f2253c13a3d77d887de24ef2b
BLAKE2b-256 checksum
How to use checksums
e202f22e9ed02bc7f6270908cb9905c8adc65d4383875264c419be4b9fe6bcc7
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
8d9f5ac6a5dc8563590104a37d23063a789096e4378db8c0c72a52330d4d6cbf
BLAKE2b-256 checksum
How to use checksums
b331265842a97930a41ed8def66dcc25c7b4fbae269fbcd4e47a375909cf6bea
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a875bef68be711b4b57a9060e3472d55debbfd055a5a2e5c75b00b0b1aaaa122
BLAKE2b-256 checksum
How to use checksums
5a979c8426667b83469dc12f8708735ad2b4e0289178c0ae66e41e95b2108920
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
34a8fa9d259c894ff9f1158119a13c8c3c150424063f64842ab30ce4339c68d8
BLAKE2b-256 checksum
How to use checksums
38f23e9072ec00705763a1b2bc9835490efbf7bf96d09064615fe9d846b2c74e
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
2060d9d52f27e1401fc7b2cf3ff0b9e54a753be4566577da0b0697edd0e855af
BLAKE2b-256 checksum
How to use checksums
fe3fb917eaff183e401db85f8968256ae804fb375c1f7eeec022b8744f1747e7
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 Sep 24, 2026.

Transparency log

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

Download URL placo-0.9.26-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
98a91e44a50f24aa40a2e009ab21e4951fda016e2a833a7f8a144aa4180174e7
BLAKE2b-256 checksum
How to use checksums
5fa1cb28d0d5af1691cec08ce7b2d7e15ddc01d9552d7dd5316183752f8c7efe
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 Sep 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.9.26 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