Skip to main content

pluot

Crates.io Link and Latest Version Info Documentation on docs.rs

pluots

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.

Youtube thumbnail for Pluot talk at Scientific Computing in Rust 2026

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}
}

Features

  • Small: The bundle size (i.e., the WASM binary size) is small (currently less than 4MB) 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 plotting.

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. See my blog post for more on the motivations.

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

License

See LICENSE and NOTICE.

Download files

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

Source Distribution

pluot-0.1.12.tar.gz (331.0 kB view details)

Uploaded Source

Built Distributions

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

pluot-0.1.12-cp315-cp315t-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp315-cp315t-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

pluot-0.1.12-cp315-cp315-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp315-cp315-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

pluot-0.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pluot-0.1.12-cp314-cp314t-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pluot-0.1.12-cp314-cp314t-musllinux_1_2_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pluot-0.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pluot-0.1.12-cp314-cp314t-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp314-cp314t-manylinux_2_28_s390x.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pluot-0.1.12-cp314-cp314t-manylinux_2_28_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pluot-0.1.12-cp314-cp314t-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pluot-0.1.12-cp314-cp314t-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pluot-0.1.12-cp314-cp314t-manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pluot-0.1.12-cp314-cp314-win_arm64.whl (6.1 MB view details)

Uploaded CPython 3.14Windows ARM64

pluot-0.1.12-cp314-cp314-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pluot-0.1.12-cp314-cp314-win32.whl (5.9 MB view details)

Uploaded CPython 3.14Windows x86

pluot-0.1.12-cp314-cp314-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pluot-0.1.12-cp314-cp314-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pluot-0.1.12-cp314-cp314-musllinux_1_2_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pluot-0.1.12-cp314-cp314-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pluot-0.1.12-cp314-cp314-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp314-cp314-manylinux_2_28_s390x.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pluot-0.1.12-cp314-cp314-manylinux_2_28_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pluot-0.1.12-cp314-cp314-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pluot-0.1.12-cp314-cp314-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pluot-0.1.12-cp314-cp314-manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pluot-0.1.12-cp314-cp314-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pluot-0.1.12-cp314-cp314-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pluot-0.1.12-cp313-cp313-win_arm64.whl (6.1 MB view details)

Uploaded CPython 3.13Windows ARM64

pluot-0.1.12-cp313-cp313-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pluot-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pluot-0.1.12-cp313-cp313-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pluot-0.1.12-cp313-cp313-musllinux_1_2_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pluot-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pluot-0.1.12-cp313-cp313-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp313-cp313-manylinux_2_28_s390x.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pluot-0.1.12-cp313-cp313-manylinux_2_28_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pluot-0.1.12-cp313-cp313-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pluot-0.1.12-cp313-cp313-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pluot-0.1.12-cp313-cp313-manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pluot-0.1.12-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pluot-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pluot-0.1.12-cp312-cp312-win_arm64.whl (6.1 MB view details)

Uploaded CPython 3.12Windows ARM64

pluot-0.1.12-cp312-cp312-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pluot-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pluot-0.1.12-cp312-cp312-musllinux_1_2_i686.whl (13.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pluot-0.1.12-cp312-cp312-musllinux_1_2_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pluot-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pluot-0.1.12-cp312-cp312-manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pluot-0.1.12-cp312-cp312-manylinux_2_28_s390x.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pluot-0.1.12-cp312-cp312-manylinux_2_28_ppc64le.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pluot-0.1.12-cp312-cp312-manylinux_2_28_i686.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pluot-0.1.12-cp312-cp312-manylinux_2_28_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pluot-0.1.12-cp312-cp312-manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pluot-0.1.12-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pluot-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file pluot-0.1.12.tar.gz.

File metadata

  • Download URL: pluot-0.1.12.tar.gz
  • Upload date:
  • Size: 331.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12.tar.gz
Algorithm Hash digest
SHA256 a06634166f232b732c88ce888c34405fdc0992c2b6f81e1ab298c961245e5ba8
MD5 c7ed6bc85c8d0d552ca201c6e08dbf65
BLAKE2b-256 f32a4919d4996f60df61ba1069d6dee9e18cf1c46501770c6db9354c2b7b1a40

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab1b3ed147768f77ac2bebe6463b7929068b2952e671680885bc6c206d566f45
MD5 d42382a5806f45563294a9da2b674178
BLAKE2b-256 b914906b980ac8b3b947787ca226e0f6b3a6682ddfc02a16b71a3db384e1a31d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp315-cp315t-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp315-cp315t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 85546441382773f0ec8bd7b43036db5340f81e07fed4ab2de69050b69a2c9893
MD5 0b5ecbe2b079bede88885178ba2552de
BLAKE2b-256 d63d02eb3a88368cd872cbf190a6748a42c08e909345caba40f0ba3461730919

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4978427b6b9eb061e273da299d629f7e7b1746db7f4ddd2260d4816acd439c77
MD5 cbf043cbf5dcad1f00057f0de17f3264
BLAKE2b-256 dfa21a4a7b97d87166c4576805429f3976d853b4ccc6e21aad7c1be4068e863e

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f09feb1f058dfd5b23399fb7262ba36aec70e71cd8d7bb549f184f56d49bd91b
MD5 493e2027c0076065cf7bda0686e88fd2
BLAKE2b-256 482664906e59b47844f9008995aa449a6fbab7b447774268e990b464984ee1e5

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac13536a61241f53791ad22777d0b4f1be64de233b11f379aeb7585008d53d4c
MD5 8055571e0e5396717aa95dfe81326661
BLAKE2b-256 72c988c17a0893046780be21b6b5436d3328a3e2020878646048f2fd6b73b073

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ab3f03009a50785dddb35277af4fec81d5c7fe6c99f32ca7a25d8ee384eb107
MD5 d023f8459910c46766a1883920832c88
BLAKE2b-256 8186e41cf389645b554a84636d12ec283fe4fcd8619149209974e502e4f9d41d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7828c05a06198629ca60e3a4b3296de106f6a2706ec5843dce1e0ec98fe81f85
MD5 883402ca54358419e7639a4aac087e70
BLAKE2b-256 c3cbb54b70b24a45f7a1924aead98cf890b74cc5d20001d57bc8c5ca0879a1c4

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86213d13fb73f03f7a3538c937a732faa53c7fdd89f8ebe89f5adcaea4cdddff
MD5 05822c6be63731754a6a01ca6146af4f
BLAKE2b-256 927a8549cacad97f51d552e3105908b1642dbe0b2711df998de82ac3d029d2c3

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3729cfb8f9f360a612e3e2ec763d8972ebc65cf9c40ec07835892227bfada00e
MD5 58704c99103bfb6cb949ffc8fb6518ec
BLAKE2b-256 b05d26a4d2724a91b2b92b8112e509895f6859cdc6b0ad31f3f9cc9aca6a07a3

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 866f8816c3b5154ea9b2235ef67dfb2dd8fb06ca53c17154398a43a31ac540b7
MD5 3ed06bd098185d50e952dd4c6a83604e
BLAKE2b-256 c23028fd8de0e651848886be866a38adc1be016b2ec908f128f6c312d5823cb3

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a9d1f230034d3f28fe933d3cd9f27dcddd04728d37bd238cbc0d0cffd2c7e79f
MD5 8c98a6b6c02260b4a478cc5051a28f79
BLAKE2b-256 3d377c4a2f656580db211281dd01090c7e5ddf767a0cabb95f199acf1d395daf

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b839e3de9ff3e10939e6577370da550e30c16d6d1943f9a89a3c724fa714bed9
MD5 8d7d65d7b03cd36c647107f1b2d4a11f
BLAKE2b-256 a3391b25131240501345ea4ddf25e98d15a318747c52dfe9d2a580510ce48414

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e21208ae32964f62f3c6960012566b51ebe425218dc3b70802820176df9200e9
MD5 ca72d6f44d12cdf42d1a91e442742336
BLAKE2b-256 9db5f946d80fa3e542635dc84d28f0eefb2988c28411fbcd29617e8dcf50cb39

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3720e6a9b4a853f86bd5527e00f97ecd2868a7175a2bfde79cff7ad8a1e77b27
MD5 0da47b581ba23f1bab77cca0be04bc18
BLAKE2b-256 7f9bd6439c891a5bc9d3e468d1806d904abee47e9d113df94c1dc22a140ce115

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e4df5eeec94f38466a23af610f6c38d0b37ef222d288e6d6ebb395f538291b16
MD5 dc5706ba401a5ca103d74203b6b5322b
BLAKE2b-256 6346997a05875742cf9bebfa55d2f2f48aca4ff5795d5dc0994371d3b70517f8

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c4fc62a9a28d3c262d33d3a0dfee93c0134234166ee9aaf342a5bf793ca9d68
MD5 37f516294b85b1648ef1d5da242ba0fe
BLAKE2b-256 a9afde0a4d44212025ee07419fadd4d3721f2c903b65b4ef18aa7a0ff98aee86

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-win32.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b7c37c2c40db6db8774710df298b456609f27089d8c5373155c0787d8431ae0d
MD5 b17d6c8e4c0bfdc14b244e1b27f058e0
BLAKE2b-256 7200e373e0f162653304c4c235f899cb87d4fe7abc0c33844ade49c45977c3e0

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5de8d661ac468c57d6331fea0abefe76112701dc23bceddc0327c45d25f58cf
MD5 dd08c96335362c34b407bc9b8ede38a0
BLAKE2b-256 248af9783d9c0d9d50cd96349326b3a885866e8a9d0bd48afb5740b63c0f92dd

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53b91330b34ca60f270b86d8e7142cc3dcaf75a0159a891ed558a723cbc3795c
MD5 e5b5892c0f1ebe713cfcf6a10bdbdced
BLAKE2b-256 427d9b0e4b9b111863de0339ca04241e5ae1de9c1b3a242290a1a3e1456e5ac5

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85cc27fc7aa2269802e45e0bda48ce735fac386e57084d47e801ca49092d05ef
MD5 0fdd8eda2c49775aa3a7fee90e8e664b
BLAKE2b-256 9d7797257f79686a85acfc70a2da05ba45357bb53a517c68a8ed99dad009e04d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 313f24030d701973e4c3fd3b27605fa6a69bdc309958c122c145c1530e1cf82b
MD5 55535d2e2af96864bea14b63535efe07
BLAKE2b-256 0cc68849738e6ec5a1df93c16fa7162697960d3d111d49cbfe92d46289dd3b61

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 880d024d97839f683d39e03ef13805d2f10b3e4d1de52f3b72e3ed72c2e7bfab
MD5 f9644788dab64798f867db1c3fd1f19c
BLAKE2b-256 0b9e2d3d520f7acf347407c02e1f1e7bf85f2b5b640d70a2a72c3719cdad67bb

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 705855c1ec0933b21fa0d5b4edff85d972afc0898d6224aa2acc61ea6e76dce0
MD5 5c16fdaa941abdc47d0f4ad9e3e0599a
BLAKE2b-256 efadeb8516ae3e3276838b8bb907030ff46106b67e722e54ecc9782f6c720399

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5bb6150122d9f6f585d46bced7aa86746d548166db5bf06b398c80701924cea4
MD5 604ba22cebb5114060911982e5150520
BLAKE2b-256 d7ad84a19c0aee49c81ddd9809a1040145bd14907766f8550e2b20ff53f1b784

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 50e077c49b639f8e14824579acfa9c3e570cd83a05d15570ff7c3b8d1efdf81b
MD5 f739f6763a36e56255d6b1cccc0a7d53
BLAKE2b-256 f3ef5aaa2cafb4fbd43c84ef4e709758c504b266aa8f4573d1baee129fdd3047

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 517406b307b5e04e4da01bfa0d902874aa96c4c5950d079ef28a36ae3c1560c0
MD5 1a2f67a2585f1132ab984c0b6343f4aa
BLAKE2b-256 35cd2d27302d9af0f135ea6daf5b74931d3ed39f727e006ed9a6fd189fecf59d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7430a0765adfdc5c78bb4bb7fad09bab8a5822a3630987e7d7d20d7e6d620a6
MD5 2f9fcc683c81fe0bb6478f8e94899be8
BLAKE2b-256 265fcb5e93b564638a724c1bb8b3b79b6d9efd567b2867a93181427895f1a71f

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 437e03af3bce3599bcc6f173ee98efce1a581aec46570fdb64ceba2706981000
MD5 000c1213927c054134c1171e4cce99a9
BLAKE2b-256 78afbf2fb5c72da9e85fce39f80a64abffd177fe90c22a14f0e78d528d2a9470

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a3731c71484bc0039cee4215b91fc06af6ae0cc9099423c9602b9ae0ddeca9e
MD5 393428da5863882426f51dc30cae64a5
BLAKE2b-256 09f071b9fa016cf9129a2de5e8ff20c3997264ec6b9353f17ee784444d5fda3d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2a80ae3e078b4440bc1b4f4e8900b8880da8a51027da130c2f238278580cbec5
MD5 a770eecc161e2e3a899ddd875cb25bdf
BLAKE2b-256 ede65f6c5c4157b1a374079a0f70769c7017a54dfcdc169732d103e692e5d930

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3704928922d0027adcb9899daddddd1b425a7f50ade9e3c7e1680776403dbe5
MD5 c8c6bc4344a9eb7f25cf37235b72ea92
BLAKE2b-256 dd79aefc31d05993ec8724e79d37a2dd1b870fa4e0c60e032a35cc9daba7c1c1

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d5c4257ebb3513f9e0f64597f41248af4cf4452f310ba60be2fc94eb006c465
MD5 f4621f81794fb107f0be73be7df6cc09
BLAKE2b-256 9ad63ad0d321785d95b05eee016b6427906c234f06cbca0729329787aaaf4711

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a401f047795a15c62c82d6761c56ccc5d2a0246b47d7f3017a51c8ce7fd9aa9
MD5 f13e21d90f12d680d87e28a82b958eb2
BLAKE2b-256 9debf926be73dfd9dc68eace905e4b318d06864369b950dd6ca87fdd191e2828

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 216ab82330fd1f24a06d955b1f4aa67f0bb84f9c15b72b0c78ee143db501ed66
MD5 acfd88d8342ee00657d7abe0c2294f88
BLAKE2b-256 ae0a9ca3a85869e99ff79c4d18e13751952fe8db690393de4fa10745c1b51b1d

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0d9784418c19ca9ce144771b39da08ef902464e70dda0d61759410fddf116ef
MD5 abb5fea90d7f11f7981327fde4814738
BLAKE2b-256 199c6733a4b9c6d5eba718a654ab0ac05e620f08731ef9db556df982e663c077

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ef21e3c4c8f7e1bb8e2ae6a006890b539d7c4de278ddb1817ad1ef8fc7e556d
MD5 3a20113b7bbcadcb57e83edac652e2ba
BLAKE2b-256 fc6a50a400e4e8cb5099e4b82b6156d7b753e736dffbf2e4895bf3e82b64c755

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9dde5155c1f7f9a71e06e205ccb5fd02e069758ca8bc1aecce42824f8f4f0c5c
MD5 9a65a883410711ffc20ffcea6ec43355
BLAKE2b-256 76098faf3e10855d8c8ea8fe47ad9cb51640b40c70e56f4684868d33cfe72663

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 004c4f087bdda6445329d317181e49bf06d4f610e88783bc8ebaf6224a39242d
MD5 2a28b168c090f6730f18cefe3c6a574d
BLAKE2b-256 2a762bf4b0ecdb1da398052dde31d8ba5ed7ef85108e12cb5b16690752b9e3ad

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ec4062c2f52d0ddefc961b64788509ef00747a4b0e278b6c04e06fe35884e101
MD5 2cc85344d473447ecf2fd5bb5b4613c6
BLAKE2b-256 4ff38e64ca21124dabf9c32513663fd9ebbf47ca81eceec1bec76ddf7ea25825

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f4719032f113e331b79b27dcb05fc5539db7c6bb0e3e740ba96513672474d6e2
MD5 2425c9ddd3ecc57fd4f9b252ec41e7be
BLAKE2b-256 a322f94fcc7a4d61bcf5da73dc993570a92a5d3a1b8a5481199bcbae544b285b

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11ea0f12686f8124e32d4be306639c3a533024b8e28a278859daf869d8cee584
MD5 46ec7a816f9f9f0ecd814d2f0fce6f5e
BLAKE2b-256 8577ee218cec65b1cd9989d7f5e9716bc4796a9f40a8790d2821ab8fb99a990c

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fb245164e94eb3b606f2bc6d4a8f9a8b6470578ecaa7d8a196f7436a15f22d3
MD5 947a9158baa851a108212959a4ae41af
BLAKE2b-256 99c95eff5b1d33c615a9a99acce03657e2fcf41278b9344645641feaab8ac5e8

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03e06e015e7a909e19b43b293518f603eaffc3ecc562ccf039237820e0830b79
MD5 ca4507921c98a58cc5247bc0a217fc2f
BLAKE2b-256 a4ca2608d57cc28f9259e3d690b15bf077738862fb662483608213f4da7056d2

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 550f3e9ec442c828e3da1bdce2520f74c392c81e08d4ecfa254a5fe6d14785e6
MD5 23e00a40353262c15ff7736a6ac55a77
BLAKE2b-256 4709b5b83910fe5010acda162df8c137e2c4d4d548d22575b796c37f65991131

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 628d6df83ea0f5bf72aa89cc07248e309a1be5e538c6b76d12105fec2df4548e
MD5 343a93f6dd84d47c548e27755b808c5e
BLAKE2b-256 1f55700c77e46f21c8d853f14093eb22df5e9044469a9a9f3dc27e028d18556b

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a450742a77af7bf896d21906fb37dd1125bb0e102e84299562ab218e3b28b9c4
MD5 600260711dd9c34e1ba56c0bae6fcf36
BLAKE2b-256 e95086f0328ca8c248dea8df9057126373c85ac5e8906e241da6206e316b3eb9

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cf7fb92e4ab0d005d6d352d1ce6d51bec9955f7be58e00a2f9d638928676cf4
MD5 5aea4359b2f2edec451630e1e324b992
BLAKE2b-256 2f681000227651359a1da5a248cde2bf76801d5a8538eb41657c595eee9ee9a0

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2b72ae3e6aa84870fc81d444f7059f84879f4247ae9d78020e8b164e472a647
MD5 614717f1b343d24d2577b5ec3a4426d7
BLAKE2b-256 09d1e7052e477c100ed37ca07a75d5ca9d98ced7d9c106ba584677654c028c22

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c3d7ef6702dccd0ac43bb8193e7740fb7e4f034db5f5af2ef88e524baecc228
MD5 09fea1522cb4558fdc437986a45bfac7
BLAKE2b-256 6dde16c0825116290c0199c172eb751ac69bbe7589d9f7e5e7b2697e6b2f2fc2

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bea728a99322b4d618010f537b5b88de147bcae3d7867d06158f1d6aedecfa0
MD5 e32440bc0003a7080840c98b56c26699
BLAKE2b-256 2efa0f6cf6c5f941ae4395043f29b5fcf2d34eb9652c935b940405a006f665f9

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d7a3929c59eaab159cdce4100d03cc7a1cb0a0353beef344cb2755d779311a6d
MD5 77ce7d9ece1111b35546a9d116ce149d
BLAKE2b-256 a272f7442c5967dd429ccea9c913634bf2df9ed0233ee2bb179ecf9be1db83f2

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e9e8654876b9ae3b04a463538551609129c57504a38d1f5cf180224953ec5348
MD5 c469c802837de462eb07e246dc6c74c0
BLAKE2b-256 d5544f1d186a3d84a3d2e85442e5962feb0b76c5b757f68e02c1fe5e2fe57738

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 15e58e082c5db12e38553b2aca312eca0d9e90528e62af140ee4d79286796568
MD5 ac8c62507c0c7c61ef3fcc8bb80568c2
BLAKE2b-256 de2f446e2c4ee656cfaffe715ae20c408ff858f74d8728e70436bd5337f3c836

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d8836fef4dc31f5ce867af131467831c783ffd9d513d6d516caa1ecc1d2d7074
MD5 46cbb47d2e1cfe5890fd02cd469e6e74
BLAKE2b-256 c282420bcd331f38b757456c5dbdbf71c1afb321f19b64455743e6372b762aa8

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d0f0c5fbddc1caaa7755b43114f274385da655e4d851e781ee80067bab1331e
MD5 91081ee0c0f65a06cd031d80878e2719
BLAKE2b-256 956d266c79493c5e6498a7866324425f35ff3afbd7c7972a2b38031d27067087

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd19dcd5c0532f103cdf712a8f8ba26e49975d42cdf1890224f4f982a3cb3234
MD5 bef397825c91279fe17b5a8a1e6f1e6a
BLAKE2b-256 f789e5ef41a5c0dc01131cf18f198a68c1e44c24ca137df132649f63fa00075f

See more details on using hashes here.

File details

Details for the file pluot-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pluot-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","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}

File hashes

Hashes for pluot-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed2cd366de9472aefb4d69d66a6ab613f1843b9f98ffbb05165ac5b943529a73
MD5 817acda443679f43470231b613dde3dd
BLAKE2b-256 06a9275f62675cbe3abb345105919793cf90196d20c13ca7842fa5480da11f42

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.13

58 files

This release

0.1.12 This release

58 files

0.1.11

58 files

0.1.10

58 files

0.1.9

58 files

0.1.7

1 file

0.1.6

1 file

0.1.0

2 files

0.0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page