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.

:test_tube: 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 :crab: 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.

Related work

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

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.17
File Size Uploaded
pluot-0.1.17.tar.gz 421.4 kB Details

Built distributions (wheels)

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

Total release size: 481.0 MB

Release files / pluot-0.1.17.tar.gz

Download URL pluot-0.1.17.tar.gz
Size 421.4 kB
Tags Source
SHA-256 checksum
How to use checksums
d541e2b2ecea8b0cfe42337f99bdfbb479c6093787da2979546b0b0bc5687a40
BLAKE2b-256 checksum
How to use checksums
1927d460bc5b89a40f52ea828a52b11d7d9f83b448db5999610c7046d7971bfe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
3d8355ddd9ceb42fa8077efe8bbabd6a455e3fd4d622449b93836e078f8fcce4
BLAKE2b-256 checksum
How to use checksums
935b21c6b405ea952af4ffeaa99733a0bec39214022d4cd8a01911a153f5b968
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp315-cp315t-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp315-cp315t-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3b5eac691632544980461a92882af6aa36289f79a36cbd183d321416cf2473e5
BLAKE2b-256 checksum
How to use checksums
2f5a1445d00f308566b9f1bb558b6fae63cb7842efb213f373cab73b5c600e1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
9d4b0c143ca33b28b6599af2a7214e88fdd141178aa7707c775b1caaf0e97f71
BLAKE2b-256 checksum
How to use checksums
f5a3f1da259132ed2887e60112c9b0efbf44048db6e1c66c20f5c11143516b83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp315-cp315-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp315-cp315-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
9bc4fb17e8fceca2789963e494ac7321381c6016d97d620a47f6bff295d386d1
BLAKE2b-256 checksum
How to use checksums
51a48da24da2d6dac5695226391661df8d9f9b97e35120da4cf06a3e42387b97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
54f39dabb57b5f3c4ecdbc24246ab46ea9befad643328f8732630d54577afbe2
BLAKE2b-256 checksum
How to use checksums
3541887df757060b60fb8e4337ff27c91629ab024aeb0ab09484e39aebebbfd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-musllinux_1_2_i686.whl

Download URL pluot-0.1.17-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
5f830fb690a4685a10f9dca52c526f48bc92312621f3f5cbd2d99850fe34ed92
BLAKE2b-256 checksum
How to use checksums
046d7e57ddaf823ca5e5048320fa3c120f6e33d810dc5466a2b12f5df467218c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.17-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
79fa0ed1edf0efa2e5601c12a231b160acd7f699de9257154318b30744fdb5a5
BLAKE2b-256 checksum
How to use checksums
0578a7012cea04486018cab409909cd02bc9b31c3a61d35c6f4259a87624f9af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c07b52ef72d8812c6953ae6dd9f974ecb591963ddba587ed95360fa7cca9f3d8
BLAKE2b-256 checksum
How to use checksums
86e6959724247e9e2724cf46f57ad3613cebddd04e147f6fca7762135b7ca095
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
44c44d160d5ab2993d760c0958fabf2f723823573225775aa804e8d6185b7f41
BLAKE2b-256 checksum
How to use checksums
b1b2e08926e8a18b4648ea02b177e37aef02c076ae66a4005266659f4e8d6571
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.17-cp314-cp314t-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
e4eedc4c3ed08bde8fe0cff29c0405d75535112bfeefc07db06f631f1b95e2d3
BLAKE2b-256 checksum
How to use checksums
6a092f08c7aedd9787a20bd82c225f55e011977681d7931c337480f55607db34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.17-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2cef0b7e0e457532baece5459bb50368481472cfc26550fd077a333a8760032f
BLAKE2b-256 checksum
How to use checksums
36ff3e6affd93adbd92fe1aabdb095ac49e80dbacd3a7af76ed5c5f8b15e68bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp314-cp314t-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3294d59aff2b3a60992e7431f0f1edd31e2c1a9218ac2dc74b9d78a39a695c1d
BLAKE2b-256 checksum
How to use checksums
4c7465b748b8cd2e564062a004157f2a75d67aa5528c5285f3853d5149d62579
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.17-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
f00cf097488c875f517d1f494123b4c6440276a8587ada4ea54630e7b36268f3
BLAKE2b-256 checksum
How to use checksums
5dbce784fa53241b66f66ddf6b903ad4fe4eb01160a744d7966b3bd9870eeba5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.17-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2105c415a1a1158d03b2a2b9a367eb153900320cacd4d300350109cc5a84c44b
BLAKE2b-256 checksum
How to use checksums
30a3fcadaef158d8755e7c94a95f4a17c04c8aaf890b117e1d0115520ffcf8d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.17-cp314-cp314-win_arm64.whl
Size 6.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
e8473d39679abb847b9f7f6dd97cdc7ed3ce333aa0c16895ee64739a1c74bf91
BLAKE2b-256 checksum
How to use checksums
55523a35ae6de3890f8534f33213c9a4b924f9f93634b8d2972d9efaa6e7fdbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-win_amd64.whl

Download URL pluot-0.1.17-cp314-cp314-win_amd64.whl
Size 6.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
3fe3a406498c88fb71be19991b0480ec94ad1a4c949e0a6221a90d5592f3783e
BLAKE2b-256 checksum
How to use checksums
8a047456659e73f73d04f4755c3858423e092fe88129814d78b954749aeed12a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-win32.whl

Download URL pluot-0.1.17-cp314-cp314-win32.whl
Size 6.1 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
5b427c4924b9d75a942f3d6b3760d57061d46f4921140081ee72905de7daf48c
BLAKE2b-256 checksum
How to use checksums
f783338f0ee637a3ebf717c82545e398f4ce2489bdda4879fd065d216d3cf34e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.17-cp314-cp314-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f045bbf0dc2381ea3b260b668bb40917177bfcb69c13cf4b5c1677f465e3ddf
BLAKE2b-256 checksum
How to use checksums
8e9906848385cdb71096a157f57f75c1783c5cf076c531d19f7357e55346cf41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-musllinux_1_2_i686.whl

Download URL pluot-0.1.17-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
742d6c78f98bbfac1de6442742c038c6d57c83d9d7ee1a7652f9a65b862ba9ca
BLAKE2b-256 checksum
How to use checksums
8b6705f7ee886ac07d2626fb339d33bea41370611bd31e042dcc2851e3fbaff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.17-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
59ab745fa3fd2322d3ba641454c871bd02fc93b762ba632c2896e8690ab91f30
BLAKE2b-256 checksum
How to use checksums
1ebc712cd60430b78cda96860c19e162de549ce49758a747bc37dc2352f2ad4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.17-cp314-cp314-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
196b8046bb18b50eb0f1595d0b187597534a7b80bb4b6714ab25c0565f79ffbf
BLAKE2b-256 checksum
How to use checksums
171b351c17b18c69d885ec4774e80203d03afec06f3cce233b326d00d6751bc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
1c79726ae3ed405f0c50850025e246cf636bb739e759038a9d79f19ab3292e76
BLAKE2b-256 checksum
How to use checksums
179046f80a17d2266b12b56b234cbbf2e48c8613a0bd6cad0ff0d4e2a3191074
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.17-cp314-cp314-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
63d2b854292e1293e25d115c9f2171aa4bc96fbb6755fe26e7201c02eca93619
BLAKE2b-256 checksum
How to use checksums
1f5cd76992b6e40939334bffe93c16a07efc5ffa3cc8b57c4193cf55afa6e561
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.17-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fab87f2fd83e82c56f8c2049cd2b258dcab5fc66d3e5f4147e658cc15d0cc545
BLAKE2b-256 checksum
How to use checksums
386c330551fbe2734e6d01d5ea521b7af5ca09443a4c726d57b4291161603f90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp314-cp314-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
e17b1f91ec0d227315c7e7d6b61373ac3cdee716da4a655113c53308cf1f8950
BLAKE2b-256 checksum
How to use checksums
52ce03cf6e03f8de0a6a12d04c1181652bb0800c5a549d9508723db54ccedc72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.17-cp314-cp314-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
1c3d22656312c3f8c376930c7f9dd9152f26c378340575bc04a7bec323a9129d
BLAKE2b-256 checksum
How to use checksums
423e8cb2111359febaaf5e81772c226400c9e04d16adfd3d8134a44fad9079aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.17-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
a00d71dd0b895164e8e22137415d146fb56a623c9d1bac5a75ae6b7fcf5f19f8
BLAKE2b-256 checksum
How to use checksums
74fd1f134a9cb98acab82f49ca1878946f396c927d7ca80483c4bae7fe3cf0a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-macosx_11_0_arm64.whl

Download URL pluot-0.1.17-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
27e72ebecb1b20f0407200bd34a4c6eaf7c3410f6179bb5c5d50c79ef836c0ef
BLAKE2b-256 checksum
How to use checksums
0da92ea0eb837f3b2d8c7bae2655629c0c64db16b2560e1011c7a4e3752c4f45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp314-cp314-macosx_10_12_x86_64.whl

Download URL pluot-0.1.17-cp314-cp314-macosx_10_12_x86_64.whl
Size 6.3 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bac1c2d3d9e0c012e755586374024f6758143c4da3a9407da5022cd59356f8b5
BLAKE2b-256 checksum
How to use checksums
4cdf0f14a0f9c6354bd6177b6dde8abbfca7a6921d03bc30be8495d7ad9887a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-win_arm64.whl

Download URL pluot-0.1.17-cp313-cp313-win_arm64.whl
Size 6.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
84c8085f2251c1ac50170b0aa9fe19c82773cdc44860c07f6364fd69bca434c5
BLAKE2b-256 checksum
How to use checksums
7076457c99654ed133e00b22a3575b6f4b02c608867a96783ecf69277e7b1da4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-win_amd64.whl

Download URL pluot-0.1.17-cp313-cp313-win_amd64.whl
Size 6.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
8020f04e6ddbcdd08c8e13a47e5493e047a42bfbd71c399ea533cdd312fd645e
BLAKE2b-256 checksum
How to use checksums
687928943a6319b374d35ca9d13bc0e2a1e0a0da59ee26840bc0aa1aa771ceaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.17-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cd4b30088afc1f6c6b765f8f5a3cfa90c5e0a11898816892c60188e35b201c11
BLAKE2b-256 checksum
How to use checksums
66911ebda655b5c6cab446f0bdfaed206c621f0c825e7ad7e078dad1eba1af80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-musllinux_1_2_i686.whl

Download URL pluot-0.1.17-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
0bd1057e283560277960af4a2e90985f2f79cfb4e4dc1baeeccb61d6496610b9
BLAKE2b-256 checksum
How to use checksums
a7b967b56fa6240c2dbb3b445d89693a2d2821862d9fd49e25c80d117181a16d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.17-cp313-cp313-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
07d9a124bc5e32fcc08f69262fbbd4b0c30d50a3070d4377800dd265e1cbdc3a
BLAKE2b-256 checksum
How to use checksums
69d15af51264452d9362b96c0f1cd6a2d69247941416e676b661ed35a0c6f28b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.17-cp313-cp313-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
684c5e788f179b46578dcfa048a4e89f5433fe96238b4c0251156faba765bcf8
BLAKE2b-256 checksum
How to use checksums
e7f3792c3299cdf0284a68ddfd09b822d09bce273ae85a790f52ad3407e6c6c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
9436591ab7ef3cc1c0bdbc35162e25fc7c0bf920efa9afc8a2fc71c6624feabf
BLAKE2b-256 checksum
How to use checksums
571d51d93a772d295c28cc74e5f80b327f02b621ec057fde68820e4d71629d22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.17-cp313-cp313-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
8e4763fb5bd6e2bc7e85d3c898212357969763223d3c0f81ab828f03987c5eb1
BLAKE2b-256 checksum
How to use checksums
5667610e223a775c4befe67c79c1d46d91bf9f2ce60ad8b2e8cf3be8a0df9a96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.17-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
da6f22e4559892ad67fab2a01e0dc842036b9c06f0debeab452a0d2f0b8187c7
BLAKE2b-256 checksum
How to use checksums
45b9a04bcd8f61ce124a910533c0f5a8120582692dc344e1c52b38348ffc5d6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp313-cp313-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
dca4e0d5383e4e320a444f8a1a527b70f428c5da159bb75f19cd15db677d1fab
BLAKE2b-256 checksum
How to use checksums
df7887056c26ae99bd09c8809b26e49c5b10199ad133a953ac80c6911b583969
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.17-cp313-cp313-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
240acb2f1f7ab2ad54f547d581e889c800759acdac22da2cca7198400cb206ce
BLAKE2b-256 checksum
How to use checksums
9e833721cf5f6863e5191042bbd6bd6b94beef3acd46a976c1d6efa824c93380
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.17-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
082b78e62266686d7368ff09ec020e68144ebb18f2c95366e4eb5c09be8ac72f
BLAKE2b-256 checksum
How to use checksums
bcae82cb7a9e60e5fea3898502bdef6dda6702803de2b12615e1419a1e513680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-macosx_11_0_arm64.whl

Download URL pluot-0.1.17-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
645c6327fa93440b016ed664228e5d932c30ace78846a54fc6eb6df6ddab150c
BLAKE2b-256 checksum
How to use checksums
938eafa1a3b7734af11d5dd9b9f4bd5b07d6e4470015835892dc2085292ba425
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pluot-0.1.17-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.3 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
69b081245cb71926864125c1af8efdb022f9130bbfb071f76585ded2433fae83
BLAKE2b-256 checksum
How to use checksums
65a3caf5be68ab80b42b55e43089eb42867c79a67a8fc16c415fe38f36c9d40c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-win_arm64.whl

Download URL pluot-0.1.17-cp312-cp312-win_arm64.whl
Size 6.3 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
5269ff64b02d4d3bff272dc9a9489f508195e59c12b3a076d9ff9516a4034744
BLAKE2b-256 checksum
How to use checksums
0fc7682beac981d8267603c0bd586388eef1d406ac529c1d1cf3fa14539b9f21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-win_amd64.whl

Download URL pluot-0.1.17-cp312-cp312-win_amd64.whl
Size 6.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
06ef76e9ad72c73c8d3ecb9e35cd83089223fd30adbcaf91bc68f89ed4694d41
BLAKE2b-256 checksum
How to use checksums
27047e21b8e4fcb5677c93c789bffd7090501fc9e91c61ef2a08b72f0c4d0a34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.17-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bedb0ce537e47c93d6fef1c8a54f3f06bfcf89a17b1238f1edf7db97ed28da02
BLAKE2b-256 checksum
How to use checksums
50ca96674d26646d5b28628b55f28be60e382b5404a7c80928cd9ca2986fed55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.17-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
e2a9c231ea51f72d2ac3a5b615185d6d6c866e6930111068593e0b7b9515149f
BLAKE2b-256 checksum
How to use checksums
0fd08be12330a0f7b020a7de073c87e9271d6498a34c3f46d16e951d778cda2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.17-cp312-cp312-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
9ab98dcc06344fd38432224cb879aa9f993053f227b106960ad7f10e5076ecde
BLAKE2b-256 checksum
How to use checksums
f12543455b9806fc8f823c2d52f52bcefdd5af19a0b550e17d640ae73114b56a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.17-cp312-cp312-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9f300574f206510811d90010360dc8a8add9675c450d3c3c2ff3fb8105a50beb
BLAKE2b-256 checksum
How to use checksums
564d3bc950cc8e37a848f72b47598c2c251ae16bca51e23cccd9620f77990d64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.17-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
1ac4101e3aa19190bedde6f12621ea7f46ec1633b93fa60e61a8b74c484d2d05
BLAKE2b-256 checksum
How to use checksums
f3a6cff82e4265e0cee2ea565df31416811364d385954cc0367485b494607835
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_s390x.whl

Download URL pluot-0.1.17-cp312-cp312-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
c2b5f94fbfc0d0230872692f0ed312fb0cd34ec3ee77a727769c94320fafbb13
BLAKE2b-256 checksum
How to use checksums
72b77222419eabc2fb3fe2ff71f6a8b6009a6ffe15d2f30ee0d82456a35e1b2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.17-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
87405eb8d15e630d0f498e960f5efc5384d2ba62ed057d521bdcb49492d95a74
BLAKE2b-256 checksum
How to use checksums
b6003932c43d5e0612812561fb1202d61475bc78eef7ecae5a24dffdd5f4f19b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_i686.whl

Download URL pluot-0.1.17-cp312-cp312-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
f03f9482ff93b0057337737dbac44384ddc7b9fcf4cdf59cf9ca5d3b608e83a4
BLAKE2b-256 checksum
How to use checksums
814f80259805ece7b2efa0e975cafa2d0e6730efdaccbfd12f66fd63cff36b15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.17-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
1fd766d1d741285a588e4511bf8ae19c170be656d6e5798c1f10af732cae9a1e
BLAKE2b-256 checksum
How to use checksums
f4f472204d69016377328dc9accc702dc24f63ef7437f585e4bf4022f53f3b34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.17-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
61b67b22c8c0878900f01acf73608cf2598b88c5fc4dd51426314a397a1c11e1
BLAKE2b-256 checksum
How to use checksums
6deb400fc843452fb7b80c06ca2d6687e86194b241c02261e8feef03c72f168e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-macosx_11_0_arm64.whl

Download URL pluot-0.1.17-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
399c9f1ca1d23a3344d8be0d1ecda2639e2299641d6766b63d30e0fa0d72e6b8
BLAKE2b-256 checksum
How to use checksums
ac488e7ee36a3e1522b4fb4ac9ee185dc01e97787f743369047b9970da3f2a71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.17-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.3 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
07224b0c7adf17f1988aa111623a5fe395e00c0fd3869ca52785471a40a8b845
BLAKE2b-256 checksum
How to use checksums
106913c44a23ae8080e15a50d9131569db1f9c829540daa19d80f91de69b3111
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","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.17 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