Skip to main content

pluot

pluots

blog post  ✦  docs  ✦  example  ✦  crate  ✦  pypi  ✦  npm  ✦  paper

Implement a data visualization once, then render it in multiple contexts (across languages, static or interactive, bitmap or vector).

Rust, Python, R, and JavaScript (including in a web browser) are currently supported.

🧪 Pluot is new and experimental.

Features

  • Small: The bundle size (i.e., the WASM binary size) is small (currently less than 5MB) to make it feasible to integrate into web applications.
  • Scalable: Scales to out-of-memory dataset sizes using partial reads of arrays/columns and data tiling/aggregation strategies (currently using Zarr via zarrs to achieve this).
  • Language bindings: Usable from multiple languages, including JavaScript/TypeScript (via WASM), Python (via PyO3/maturin bindings), and R (via extendr bindings).
  • Bitmap or Vector Outputs: Plotting functions can implement bitmap and vector equivalent drawing logic, to support publication-quality graphics export.
  • Layer-based API: Compose the built-in layers to create complex plots, or build your own layers with full control over the WebGPU shaders, buffers, and draw calls. Usage of WebGPU compute (GPGPU) operations prior to each layer's draw call is also supported (regardless of whether bitmap or vector output format).

⚠️ Currently focusing on 2D, before eventually supporting polar, ternary, and 3D.

Examples

Static or interactive plots
Bitmap or vector graphics

Static plots
Web-based plots
Scalable to millions of points

Web-based plots

Open example
Python notebooks
Render static plots or use Jupyter widget built with Anywidget

Python notebooks

View source
React component
Use React or plain JS

React component

Open example
Rust-based GUIs
Examples with Slint and Egui; Framework-agnostic

Rust GUIs

View source
Scientific data formats
Support for OME-Zarr and AnnData

AnnData example

Open example

How it works

Pluot uses Rust 🦀 and WebGPU via wgpu to quickly render plots to an array of pixels (or an SVG string), decoupled from any windowing system or interpreted language runtime. On each "frame" of an interaction or animation, we re-render with updated plotting parameters.

When the language bindings are used, you can think of this as a form of "remote rendering", which is actually happening locally; rather than the "remote" being a far-away server, it is just across the language binding boundary.

Why would I want to use this? Why not just use JS+WebGPU directly?

The main reasons are:

  • Portability: render plots from multiple languages, without the overhead of an interpreted programming language runtime
  • Reproducibility: explore data using an interactive tool (e.g., web or desktop GUI) to identify plotting parameters of interest, and then use the same parameter values in a scripting language to reproduce the visualization as a static plot (e.g., a Python script in a Snakemake pipeline)

Using WebGPU via JavaScript would couple things to JavaScript, which we do not want for a library that should be usable in multiple languages, including without a JS runtime. Our approach enables our CPU-based operations to benefit from the performance characteristics of Rust (or, in web contexts, at least those of Rust-via-WASM).

You can likely achieve better performance by using WebGPU directly via JavaScript. The question is whether the performance of this Rust-based approach is good enough, and whether the benefits are worth the potential performance tradeoffs for your use case.

Development

Further developer documentation, including troubleshooting tips, can be found in dev-docs.

Set up environment

After cloning the repository, pull down the submodule containing font files.

git submodule update --init --recursive
cd bindings-js/core && pnpm run copy-fonts && cd -

Install Rust tools with Rustup.

# Install rustup
cargo install wasm-pack
cargo install cargo-edit
cargo build

# Install pnpm
# may need to run `wasm-pack build crates/pluot --target web` first
pnpm install

# Install uv

# Generate/download sample data
# See data/README.md

uv sync --extra dev

Build for WASM

# Install nightly version of wasm-bindgen CLI (potentially not needed anymore)
# Reference: https://github.com/wasm-bindgen/wasm-bindgen/issues/4446#issuecomment-3172624621
cargo install --git https://github.com/rustwasm/wasm-bindgen --rev b766ac3e206a8efab2c7cf91923cd502b2bc77a5 wasm-bindgen-cli

wasm-pack build crates/pluot --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --dev --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --release --target web && pnpm run start-demo

Test in Headless Browsers with wasm-pack test

wasm-pack test --headless --chrome crates/pluot
# or
wasm-pack test --headless --chrome crates/pluot -- --nocapture
# or
wasm-pack test --chrome crates/pluot
# or
wasm-pack test --firefox crates/pluot

Build for Python

uv sync --extra dev --extra widget

Build:

uv run maturin develop --features python

Run tests:

uv run pytest

Use in REPL:

uv run python -m asyncio
>>> from pluot import render_py
>>> await render_py(width=100, height=100, plotId="test", plotType="triangle", storeName="test")

Try in Marimo notebook:

uv run marimo edit

Try in Jupyter notebook:

uv run jupyter lab --notebook-dir bindings-python/notebooks

Build for plain Rust

cargo build

Run tests

cargo test
# or
cargo test --features lacks_gpu
# or, run a specific test file
cargo test -p pluot_core --test test_positioning

Lint with clippy

cargo clippy
cargo clippy --fix

Generate crate docs locally

cargo doc --no-deps
open target/doc/pluot/index.html

Build for R

With R and RStudio installed:

open bindings-r/pluotr.Rproj
devtools::install()

devtools::load_all()
# and/or
devtools::test()

Or, entirely via the command-line:

R CMD build bindings-r --no-build-vignettes
R CMD check pluotr_1.2.3.tar.gz --no-vignettes --no-build-vignettes --ignore-vignettes --no-manual

Inspired by

This work has been informed by my experiences in contributing to projects including vitessce, use-coordination, viv, cistrome-explorer, deck-to-svg, higlass, vueplotlib, and easy_vitessce.

It is also inspired by many other projects such as deck.gl, deck.gl-native, jupyter-scatter, gosling, napari-spatialdata, spatialdata-plot, and scanpy.

See awesome-rust-vis for a list of crates related to data visualization and plotting.

About the name

A pluot is a plum-apricot hybrid. The fruit's pit is to its flesh as the Rust core of this project is to its non-Rust bindings.

Rust learning resources

Citation

If you found this useful, please cite our preprint:

@article{keller2026pluot,
  title = {{Pluot: Towards 'write once, run everywhere' visualization software}},
  author = {Keller, Mark S. and Gehlenborg, Nils},
  journal = {arXiv},
  year = {2026},
  doi = {10.48550/arXiv.2605.14118}
}

License

See LICENSE and NOTICE.

Release files for pluot 0.1.20

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

Source distribution (sdist)

Source distribution for pluot 0.1.20
File Size Uploaded
pluot-0.1.20.tar.gz 431.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pluot 0.1.20
File
pluot-0.1.20-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp315-cp315t-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp315-cp315-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pluot-0.1.20-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
pluot-0.1.20-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
pluot-0.1.20-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l Details
pluot-0.1.20-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
pluot-0.1.20-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
pluot-0.1.20-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pluot-0.1.20-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
pluot-0.1.20-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pluot-0.1.20-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
pluot-0.1.20-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
pluot-0.1.20-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.20-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
pluot-0.1.20-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pluot-0.1.20-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
pluot-0.1.20-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
pluot-0.1.20-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pluot-0.1.20-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pluot-0.1.20-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
pluot-0.1.20-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
pluot-0.1.20-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.20-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
pluot-0.1.20-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pluot-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
pluot-0.1.20-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
pluot-0.1.20-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pluot-0.1.20-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pluot-0.1.20-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
pluot-0.1.20-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
pluot-0.1.20-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32 Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.20-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
pluot-0.1.20-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pluot-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details

Total release size: 483.1 MB

Release files / pluot-0.1.20.tar.gz

Download URL pluot-0.1.20.tar.gz
Size 431.0 kB
Tags Source
SHA-256 checksum
How to use checksums
2bd525f708e6c2b965298e5fea30e7c28ead83fc0e40ae9cd722debcb84a9dfd
BLAKE2b-256 checksum
How to use checksums
acb6f9a7eeb39831169415c8535be242e8aec74b35464b95748b2644c9ccabc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d1b75dfcf57c8915c3ae5bb057c2efcc1ddc049cde6fab62f206946516c67f4d
BLAKE2b-256 checksum
How to use checksums
93875e360f94ba470aa7b1b3eb6d33548d506bc432d4fbf8fbe4d98d2d533ee4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp315-cp315t-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp315-cp315t-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3418423a41bbfc76116ecb2bd64224d94973103a549693eccc566cabcf3c51f9
BLAKE2b-256 checksum
How to use checksums
aa97def5b3e0c9d4668fabcc684bbaedd2fdd2444750dc4789a8459e2b83e50b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp315-cp315-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7689f09a9e916500064e2264c81b393debddfa36da880116455d48945ff74526
BLAKE2b-256 checksum
How to use checksums
bc876d1b46b16aef2552befb20c4d47f61ab5848d058323b4fb83189c597f4f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp315-cp315-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp315-cp315-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
9d2918906656431e90c80383d62276302dffcc3d5e5e155f942136a13dc312a1
BLAKE2b-256 checksum
How to use checksums
180f5f0b344679fd382de842e91836809d202474d89a0be1d962646ffcd8faff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
809d7e13c54ce1a7f98f2840c7ec8de7c1f4451a37defe173b74af2c7faea2e4
BLAKE2b-256 checksum
How to use checksums
be54f475fcc0c8370e8d376f364345b9693d990d7d08b700aebf5c52054d8f2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-musllinux_1_2_i686.whl

Download URL pluot-0.1.20-cp314-cp314t-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
40fab6760b70aec3d2d94cc51f207338f7c02c487ce877c55455cd80ced6ca61
BLAKE2b-256 checksum
How to use checksums
e68c1da072b260967daf656f74f77309ea1332729c1b3ed70500a40435e6c668
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.20-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
11fa77db39d7340e1592ff0de436ada1955a8229b63ed2caa4de0de6b83b73cb
BLAKE2b-256 checksum
How to use checksums
cb24804a8f21d3cb9bc9f4d71a65edf764f4071b02bf96ba768ba24266fd6f18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.20-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 13.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
72a52b898426e106d17bb298ae2a7f8f3ae60ff395eca9f7da97d84a7ed4e750
BLAKE2b-256 checksum
How to use checksums
f9fbef0f360fd8fa43f4f0a941193056933efb574c624dc6d069d7a8c38bf949
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
17e26968d6037c9105a3ffa32cd6166693d909dc50decf9f40ed761d2761dbf8
BLAKE2b-256 checksum
How to use checksums
0299ac3a103bf5a5b78dd2170a514e61dc63feb2f1c5ef00fc6a4692298a5456
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_s390x.whl
Size 6.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
b0d12be78cbc03bd8e1b23f52403de4f2b0bee9349183ecee1b4dbfbb0a57c4b
BLAKE2b-256 checksum
How to use checksums
9a98557e5385e47e1780a69cafba50e57138c611ab9a2cd01c8ffc874d37540d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 7.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7887a9857a2ff3e58c606703bdfdf08b7bb08aa95efa17f57035e8ee1ad699b7
BLAKE2b-256 checksum
How to use checksums
177a57b65d95a9866c57d3b5c28bca5da819e7cda7daca38feab4fab6eea6134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
2dc8c81a3757a1c54b735903b150fb2099f2e8ce41e04f58d90bd2e651c0d6ab
BLAKE2b-256 checksum
How to use checksums
c5c218b2ff0aa7cb182f361c0a457b5eed0011674a0dfe3d996bcccfe89dadca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
92619f8d1c58c4bc07ffae369e1c6ce0e0da8c468b8cf547847274a4957ebd6d
BLAKE2b-256 checksum
How to use checksums
e8511576784fc273397ea9caf967a857d89d8cc5502eb4a3cbf75721a092bdd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.20-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cea4cf33e5944142aba048a18e9b057d9e6e1c9bd630ea9a4912dfb1aa52ea11
BLAKE2b-256 checksum
How to use checksums
a08c9441e1cfa96458e80192cc7d4751e20ac3be0f718d7b499c6c473e234a61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.20-cp314-cp314-win_arm64.whl
Size 6.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
d389521e0c8cb91f25f774cf7a0d9b5cb59d511df229e2019fecd54db4491ff6
BLAKE2b-256 checksum
How to use checksums
be040d17929d6c9e87c3c31be29d49c958a3d071a2cb2657983530199338ab21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-win_amd64.whl

Download URL pluot-0.1.20-cp314-cp314-win_amd64.whl
Size 6.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b34556db09d40328055248bb3f421ea6ec7c08a4bf6a69b8f43cf9ec5a2d86d9
BLAKE2b-256 checksum
How to use checksums
d000a6bf552255a49e2980e8ec73ced9545b9754f8aa9a6ffcbaac73717f9617
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-win32.whl

Download URL pluot-0.1.20-cp314-cp314-win32.whl
Size 6.2 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
60eb8ce9c604898c73ef91fc848e73205ce9aba2ef9262d2e80a98b17c4ef122
BLAKE2b-256 checksum
How to use checksums
6bedc8f567d29387b705f81325e1040a06d868a733de69745cdb6d89253076eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.20-cp314-cp314-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5a08d5eee60f74d31e9c179db86b831eb4c8551a39de8a2be89a7444b4f6d117
BLAKE2b-256 checksum
How to use checksums
b7a97be2fd934825a27fa0629b64155a30fd8f527cb89a326505c972a4627d7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-musllinux_1_2_i686.whl

Download URL pluot-0.1.20-cp314-cp314-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
020653c3f194c5fa49496e4e7ab535552b4a30cf8e140c8cc194d63c77da1dbb
BLAKE2b-256 checksum
How to use checksums
2cda78e33c1d85d21b084e8c9beb03a4c244b89914f1311af014a1b0e8767c4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.20-cp314-cp314-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9185ed8a1fe20de101bb9a3d9e979e1d0dcba3b8359e3540e82f7a0bbf281a17
BLAKE2b-256 checksum
How to use checksums
7500b56c221154946f4cab500c89b7de127b8d48307c5dbaabfdc9fe20a7c7d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.20-cp314-cp314-musllinux_1_2_aarch64.whl
Size 13.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
330f9299024135637807c513408f95216cb3621aaa8f10c8a4cc944c052be370
BLAKE2b-256 checksum
How to use checksums
fdeb5cf0650b2b9515a11c45b8515d13744c5297a1250a5235fefdb9dc9be113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0d37f657cd4c8bfdcb4f31338a68108443190baa0b3c4abaa431da2997167574
BLAKE2b-256 checksum
How to use checksums
50189f055f90005f72ffe3da965852e30811a8adad07594fe8bba77f03c2c8b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_s390x.whl
Size 6.8 MB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
c24d4b4aaa1ef572526a28a21ee5ff61129c5fecd262b6d20648675f768f9f8a
BLAKE2b-256 checksum
How to use checksums
f5f83e31b9cd15c2b13dcea26af0912479b6ed5a64019870df951e0f95911f07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 7.0 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6eaf83fa8cc058a6eb3c3860f389778d8a90713fedfbf0fc8eb9cc16f0f875e0
BLAKE2b-256 checksum
How to use checksums
bb03fa4323bddacc794e193d04fa33857dbe454e6215b39b2781781eebefb101
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
dca3971953c61bfa9eaaa0b0bf7db17fc03074bf2b581d851454d3b369518a74
BLAKE2b-256 checksum
How to use checksums
20650c1ee550266bed752823be6317f7b14c1a07b5d840fc7161f4330158d886
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
e17a033af2b11716a442ec6143e7b8611dd0c2a14e9c09ee305b2a457316a115
BLAKE2b-256 checksum
How to use checksums
5d1c866cb7e5a2cf7934ac0ba2c96bb7a027d5eb74ac736fe8aede6f3d0e05ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.20-cp314-cp314-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
41e0a66c5803c80b9472ca08da1ce0a9370170e20d60b7bf665f30f616c95fa5
BLAKE2b-256 checksum
How to use checksums
5e39794541209d07556490d286cba08161bbde5755a2a30eebfbe03d07f6fe73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-macosx_11_0_arm64.whl

Download URL pluot-0.1.20-cp314-cp314-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cb18f2e5b5bba19b979de36ea07691ba3821b54755c935ec5acbb8bb31813479
BLAKE2b-256 checksum
How to use checksums
718ecfe81e4c6c024325cf472628c76702138dc15a08f26d195bdabba961f619
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp314-cp314-macosx_10_12_x86_64.whl

Download URL pluot-0.1.20-cp314-cp314-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
45e87a1ab2f7d2b62cf174ec2e781fd459d6a59de35f3466eb409d5a7e81f9b8
BLAKE2b-256 checksum
How to use checksums
8813a9a5ef593f8fecaed5e863eaad5f81bdfdcebab1ac9f4791b4d3651b3c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-win_arm64.whl

Download URL pluot-0.1.20-cp313-cp313-win_arm64.whl
Size 6.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
03b439e95562dbd64e3677502751ede3f3889414f7321a2dbde54233ec299664
BLAKE2b-256 checksum
How to use checksums
f7c63f93083ba034b49f84b1dcf9bd12efb6f138823fc2df1792375916fde2be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-win_amd64.whl

Download URL pluot-0.1.20-cp313-cp313-win_amd64.whl
Size 6.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
496828ba4eee7ca830ebd000736066cc3a61cd0795655e9af6de0ffe35715590
BLAKE2b-256 checksum
How to use checksums
74b26d023641c4182ecd0a08e0a2422165570871a3f2baf6fc59f2392334268d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.20-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0b2ec97a00845ca5e2ec2968910c40c270df23503fdcdc3da2913f8a03ad80c1
BLAKE2b-256 checksum
How to use checksums
eb8ab3c2fd02548463535f56701deddcbf16f1c997d4efd5b0733d85f4268aab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-musllinux_1_2_i686.whl

Download URL pluot-0.1.20-cp313-cp313-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
299219d45efc20d49d10506caed0893854d86c63b67623b5a2dc6ac97f020122
BLAKE2b-256 checksum
How to use checksums
69aceee634820b88b5eb4f36cb1083da611bed975b3ce27b2ffd8d0d02598179
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.20-cp313-cp313-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1b613138ec2ce5f51dc3457f4eeb2461b85cadafab313e339ae830d14e86564a
BLAKE2b-256 checksum
How to use checksums
c8c076a373bdf6fc922453730cc13f9df9fed2a592fc394b892aacf000a1a0d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.20-cp313-cp313-musllinux_1_2_aarch64.whl
Size 13.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bab7657243068b1d6970905e5959f8936fa1885f252e8f3cc569542a78c30f4f
BLAKE2b-256 checksum
How to use checksums
c550634d37cead2c2855f1234fb999e48745e8e55c5edfe44c11355375fed04e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b49d2dd60ddc41f12b9baf433df1fb99e06b6fd5df449d9785d1f8465cfd7f2d
BLAKE2b-256 checksum
How to use checksums
6680f88061bf21b874859af944bdeda691a5c55c91d7cf3744d5b7d6d41b8296
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_s390x.whl
Size 6.8 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
747bb0be0f8b80e440aa1fed209ca10a6d04d849af570e341103ba8eaab4a789
BLAKE2b-256 checksum
How to use checksums
d9e2a8fcae1cfb30706f6c73d18cd0809d441536440e52cc9cef10ab16119f7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 7.0 MB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e27cac31fa336aeadfa402a2e4dc8b1b47dcba78f4ed3bca01d498bbbd4ad6a9
BLAKE2b-256 checksum
How to use checksums
55b63b4693230a0c582a164056ad2bdf696e3e61c22c7a109fcf35000ff6acb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
27cbfa08fd17328d443dc2c643db64d95947f8fbd0102fe78ffb7ea2f074dc45
BLAKE2b-256 checksum
How to use checksums
80f4921b88751a2a7ed68caa58fc0d68e8d6b5b1b4ecb17a5429a8f2c4e4bcba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
d6cbdfe522c62703d8b8b41ff6bfc83af2cb8d52bb4526de618a532f7adb509f
BLAKE2b-256 checksum
How to use checksums
96320cf94700803303948ec6de4c136ff9e30c5b9d723d6ff61d871770486eed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.20-cp313-cp313-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fbf366f4ffc595bdeb79fa20a80705be13191ace87844c004c32cca2350fda19
BLAKE2b-256 checksum
How to use checksums
bf6a2012b8e47ac5de092f69e49fff4bb8d3b76ff199787162dc5b17e4a8392b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-macosx_11_0_arm64.whl

Download URL pluot-0.1.20-cp313-cp313-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
870795630e5140dd4ce6980f5c96e79a099fb2e856d64453259db1bb4a5ac267
BLAKE2b-256 checksum
How to use checksums
a4c531274e49480bf61fe66d51f4ef5fe472cefd4576f407ae473872a65be074
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pluot-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
cffc532ca8e0065f74104e0f90003afeab36cc7c6aaaa4c6c7b0e263d48bd6d3
BLAKE2b-256 checksum
How to use checksums
0f7eb06883d0500440a09915ba103ad798e9f95109b5e2d21cfe28f5d754221e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-win_arm64.whl

Download URL pluot-0.1.20-cp312-cp312-win_arm64.whl
Size 6.3 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
7b6b07871fa2717371b049507734f4bacea369752625b564e488690eb4d6212c
BLAKE2b-256 checksum
How to use checksums
ca05abd12248d0e0eb8b0cc28f7896b7675b58cafe0d685566f5b8c24bb29698
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-win_amd64.whl

Download URL pluot-0.1.20-cp312-cp312-win_amd64.whl
Size 6.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f59d7fb7ac79a5661c19891ee579d967050ef77242f568e777a49542893793e6
BLAKE2b-256 checksum
How to use checksums
335059f6a53f0af806cde46c0b133b5c5f62d615433204a795ae6150c3aad9d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.20-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bd064ac316d7ec1a191646d3f307a011b834405facc1b6082632f4f17725ffc9
BLAKE2b-256 checksum
How to use checksums
2416f173e8a49d64cb5db001ff870d31208b5cc8112589c6b5eb8427f7f9dcce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.20-cp312-cp312-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3b620e67867ff9b4eba0bbd0147852dd130d95c5247c925e6f136ad6df0a7ea8
BLAKE2b-256 checksum
How to use checksums
635d9e712b6f8bacc8a00dff5b229515772feb80eff99af34613418e0e4c4a50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.20-cp312-cp312-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
24b72ee73d02c79cf3137baeca16a989bc68111b3adabc520cf0810675417363
BLAKE2b-256 checksum
How to use checksums
0bee9ccc5755a53481550a3024b29b41808c186940f63e7db8a89a1a1e1c14c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.20-cp312-cp312-musllinux_1_2_aarch64.whl
Size 13.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
96dd08ef5fbb691ef995d3f51b904fc585e4a06725e714b3611668bb85563928
BLAKE2b-256 checksum
How to use checksums
17d1b745c492a956179be603c1175bb6afbd5d5d5d9eaae4d5b00bc8aafbde3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ec4f970b63ada751a66dd859efdaaa2e9ee98fe51881716134275b533a9613d3
BLAKE2b-256 checksum
How to use checksums
54408265d2d82022a786ad414fec5a8b08d003bffcdac3614357c12802613a8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_s390x.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_s390x.whl
Size 6.8 MB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
4e8da4a3852c46b473b5705a586f6da672b2289e23427357aba8d4bb32e95415
BLAKE2b-256 checksum
How to use checksums
24ad65386d3cbde32c8404135ec40dce138e8d29e49b9bb8a740081e9ac2b48d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 7.0 MB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
dbda582180cc99d9ba80a328640d68056d6ca55e11deba0e1dd359dde3a4b734
BLAKE2b-256 checksum
How to use checksums
c56da58173708e03a9e314dfa660e72ca5408279e1697da203c50e9292ba400d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_i686.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
06c20eed40b771be9cbf2968007a51c2b01d7d6c2285bbcde7bfb4bf396b891f
BLAKE2b-256 checksum
How to use checksums
8fa72c4ad2e41964563257966dabaa79007f364d5f5c5fe9b5c5887acd5cf0ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
d0ab81641246dabecd4e74b2de94f07ae415de8062b6484bfd8976f7704f3809
BLAKE2b-256 checksum
How to use checksums
e50e6b18a3bd4ef45c19316eda15a4af79321d708573dd635328f200152766d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.20-cp312-cp312-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
524b02a555a20ce3f6b9270a2854cef170bdcb3ad2cf8d46068b1da5609eaf98
BLAKE2b-256 checksum
How to use checksums
0e743358114cc5cf681a8c28779aae051347d11d8b26d71c83219956963fb01c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-macosx_11_0_arm64.whl

Download URL pluot-0.1.20-cp312-cp312-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
761ffb43b2ca26231151ceff55149a1ce54c3b8ac49ef2c4549576f0089bc25b
BLAKE2b-256 checksum
How to use checksums
474bab6927d8e831080fc891eee4363f7e679a75ed3ad70e6f3e6fbf9974e102
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d6fe33f7ed869b9ed76c2c313779d3ae5aff2b362493641c9ed163889c02dc5a
BLAKE2b-256 checksum
How to use checksums
f80b4355c10c154c9e0df4f842c7999898012e8070fd1c3d184c5a1388d249e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.18 {"installer":{"name":"uv","version":"0.12.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.1.20 This release

58 release files

0.1.9

58 release files

0.1.7

1 release file

0.1.6

1 release file

0.1.0

2 release files

0.0.1

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