Skip to main content

pluot

Crates.io Link and Latest Version Info

pluots

Goal: 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.

How it works: "headless" plotting. Pluot uses Rust :crab: and WebGPU to quickly render plots to an array of pixels (or an SVG string), decoupled from any windowing system or other language runtime. On each "frame" of an interaction or animation, we re-render with updated plotting parameters, and we hope rendering will be fast enough.

:test_tube: Pluot is new and experimental.

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.

⚠️ Expect it to currently take some effort to build things using Pluot (similar to using a low-level visualization toolkit such as D3). However, if you do put in such effort, you will be able to render the plot whereever Pluot rendering works: from Rust, Python, R, JavaScript, a web application, a rust-based desktop GUI, or additional language bindings developed in the future.

How it works

Plotting functions are implemented in Rust using the wgpu implementation of WebGPU (Note: wgpu can be used as a standalone WebGPU renderer, decoupled from any web browser), when plotting to raster-based outputs or performing GPGPU compute operations. These Rust plotting functions are only concerned with producing a "static" plot output, given their input parameters and data.

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.

Non-goals

  • Window/Canvas/Eventloop management via Rust. This should be handled by the parent/calling code. The Rust code should be concerned with returning the rendered bytes, which can be written to HTML Canvas or saved to a file by the calling library. This both reduces the scope and decouples the plotting from any particular GUI framework. However, it does complicate certain things, like rendering while asynchronously loading data.
  • Coordinated multiple views. This can be achieved via the parent/calling library, for example, by wrapping with use-coordination or your favorite state management library.
  • WebGL fallbacks via the webgl feature of WGPU. Why not: this both increases the WASM bundle size in order to include the shader translation code paths, and it requires providing the compatible_surface parameter when initializing the WGPU Instance (which conflicts with our first non-goal of avoiding canvas management).
    • As a workaround, environments that do not support WebGPU can either use the slower SVG-based rendering, or future CPU-based raster rendering (#157).
    • Alternatively, tell the user to use a different browser/platform, or just be patient and wait for WebGPU support to become more widespread.
      • WebGPU is available in all major browsers already (implementation status, web.dev article).
        • Caveat: WebGPU is only available in Safari on macOS Tahoe 26 and above. According to one April 2026 estimate of macOS version market share, approximately ~70% of macOS users are running Tahoe or later. Until certain design issues are resolved by Apple, I suspect that a subset of users will resist upgrading to Tahoe for as long as possible.

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.9.tar.gz (309.2 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.9-cp315-cp315t-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp315-cp315t-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

pluot-0.1.9-cp315-cp315-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp315-cp315-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

pluot-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pluot-0.1.9-cp314-cp314t-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pluot-0.1.9-cp314-cp314t-musllinux_1_2_armv7l.whl (12.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pluot-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pluot-0.1.9-cp314-cp314t-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp314-cp314t-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pluot-0.1.9-cp314-cp314t-manylinux_2_28_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pluot-0.1.9-cp314-cp314t-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pluot-0.1.9-cp314-cp314t-manylinux_2_28_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pluot-0.1.9-cp314-cp314t-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pluot-0.1.9-cp314-cp314-win_arm64.whl (6.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pluot-0.1.9-cp314-cp314-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pluot-0.1.9-cp314-cp314-win32.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86

pluot-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pluot-0.1.9-cp314-cp314-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pluot-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl (12.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pluot-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pluot-0.1.9-cp314-cp314-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp314-cp314-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pluot-0.1.9-cp314-cp314-manylinux_2_28_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pluot-0.1.9-cp314-cp314-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pluot-0.1.9-cp314-cp314-manylinux_2_28_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pluot-0.1.9-cp314-cp314-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pluot-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pluot-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pluot-0.1.9-cp313-cp313-win_arm64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows ARM64

pluot-0.1.9-cp313-cp313-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pluot-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pluot-0.1.9-cp313-cp313-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pluot-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl (12.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pluot-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pluot-0.1.9-cp313-cp313-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp313-cp313-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pluot-0.1.9-cp313-cp313-manylinux_2_28_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pluot-0.1.9-cp313-cp313-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pluot-0.1.9-cp313-cp313-manylinux_2_28_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pluot-0.1.9-cp313-cp313-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pluot-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pluot-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pluot-0.1.9-cp312-cp312-win_arm64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows ARM64

pluot-0.1.9-cp312-cp312-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pluot-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pluot-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pluot-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (12.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pluot-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pluot-0.1.9-cp312-cp312-manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pluot-0.1.9-cp312-cp312-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pluot-0.1.9-cp312-cp312-manylinux_2_28_ppc64le.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pluot-0.1.9-cp312-cp312-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pluot-0.1.9-cp312-cp312-manylinux_2_28_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pluot-0.1.9-cp312-cp312-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pluot-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pluot-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pluot-0.1.9.tar.gz
  • Upload date:
  • Size: 309.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9.tar.gz
Algorithm Hash digest
SHA256 4464de6af825cee9e28656229349332c905c7742937c71e5011f1b7e5a2558ff
MD5 6bcf08a9bb9e1abce91e89febb72bb0d
BLAKE2b-256 ea45deb1a35fa5a028de995f2073725a6693db4ee6e0ef7e6ee957b1e62b29ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6b4a0db7f18e6d7cd873faf7428815777c1412a8a31b361c8143f283dd4574a
MD5 1bad40f136b058cb33d56f565fc3b244
BLAKE2b-256 04702da21d67b29038fa7a4c93b03a424f9a868cf827cf10d37d54752dd42f01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp315-cp315t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a75ae29024e525f9eb13d1e7dd3d1d69c33d436e78ea86925a9e9341803fbcc6
MD5 dedc1a66f82dc646d28d804d8c87e61b
BLAKE2b-256 a73c60fad439aed9719d107805779c0126828ea3378bfca88bdf4da710959b06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f5424c9dc1da7615aac936d4ad8536ea8b3653b92733cddfa01bf7bbe75a1a1
MD5 b7a5d73b840546c02ee27ba294b1f3dd
BLAKE2b-256 58b0119fb66e60d59846c1780ad75c136eeb483f84d3e0faf7306673fccc20ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 78ca91ade3c8278453d66c6f89d58cd3692837ae3114cee40ebfbdbd28c5b11e
MD5 88b98e0dddf5314442bd95341acb6120
BLAKE2b-256 a802ceef4d13f31c21990d98fa375145b8599b456495549f0e1922088b68fdbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 958b3f58fb7eb5dd93a2d7aecbe5ad071aef0bca60561ff58abb928481be2b00
MD5 94e94ffde2d74034d596e72c211290a6
BLAKE2b-256 b1be020e289024971ec97c7c80355e3c06890cd506895e433d2fb45e35db68fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31c78f9608e54c88d6fc1c54f068d25be05e53736e801e268609f677054e0d92
MD5 41cc7a5d9e70ad177fb44646ab887a31
BLAKE2b-256 6711870e0d5e18a9e005fb64c9d521dfd158fd547916acaa765bae14172238d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ca079c89f5d0c4aaebef4e2da256e2c9516b24bada76e43161c1187c8fe0b18
MD5 cc1543d237b249c1294903c1f2bcabf4
BLAKE2b-256 e9836bfc2b00dcbbae7d539508ab8a228036cba58b93397ab82001821bf961bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae545ccdd829b4d87630bb6a1094d292af32e960ddfe16aadd78c25a60e89f32
MD5 d78b4009b74ffff4453f0f63d6a0b01e
BLAKE2b-256 d8cea1fce3223754a8ac39130ae0d631a75084f335c61ae4ef6923b485c46041

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68641189ad42b833c34db78f646105b0de2bbf17eeb16851198f3d67fe20cd73
MD5 4b174f5095cf3fc8e686e62bc3292dc0
BLAKE2b-256 ee2c88c7a6b5805426a68ad7e05650d48e81949f53e5435028926f336dcee1d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8e8c913d0f8430cad2af830a9a595c7e5f1ca69def0f7f4c49424fdfced740c8
MD5 56f9e0651855428c6c135a6ccce4453a
BLAKE2b-256 15e8fc2a32401f6ed0be7240127b3268a76cf0bfb52234397bacb29651f51097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ae1617b300e92e80ba376d5013a6ad0c7d45c7994eed831f95c052fd24f18e23
MD5 ec3416febfdc70d64081790dfb740d60
BLAKE2b-256 b4176d3fdd46346dd6515b86241a11c8cd15dccc4b14252e4610a65eac29dc13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3dbcbb4c47930b3610e18001bed0966c805fd8bc7a5bba7d3412d25e8fcc0db3
MD5 e45e0a1cc32156c1295c95114d122f24
BLAKE2b-256 19f81ada6a7fd7dda6a293076bf8643dcd9d4287eb0d25c522e2f9e3cd66ed7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8f8b1b18088ed9c44b328dad973efb49954e056d7ffade03d35d47b952242d28
MD5 8c2477b9da5ca5262985ad392f5e56be
BLAKE2b-256 d410342ad36c7692f88d8c9234dd29389ffbca4b538f8f7815b7926cd4f6098c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6738be9aa7fcb880e2f1f1b7ab6f92049172297d990dcd26be12cf942475c4d
MD5 4f049e5b737f8ad46fb24a119a74100c
BLAKE2b-256 ca9bcf5e181da707d18ab44429b1afb3f357567186220a8d17cebbef4c519f27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5cc1e5a0ae156af56936f85f777c955f582fc260a096b3686868fc68f4a6342d
MD5 92d6c277f86a29152f46ae4b370c1afc
BLAKE2b-256 948123410da88bd1e17fad9ed918bb9fbbe52111d9cc5a5ce4907b45a9905c0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af8816d884d1adfddf88e9412386370ac26313cc92cc54faaf1476c57edc3fc9
MD5 59eb98001bd0d8d2fb1e24efa24edf9f
BLAKE2b-256 b7bfb5d5b5a9fd3102962dd89e5605c538390710aec97613180a5ca1790f251c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b3dc50b9eeb80dd57bfd0a6840c445d1cc203312f097eab3f506aaa6aca266c3
MD5 37c94744265208f020c4ee13a5b7e4a6
BLAKE2b-256 ebd2bddbccffed74ad54057a811a4c518dfc24bd99016362cb2f088f029e645b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83e5728b5fef6a761ff74204369b0c2d8433358f85cb79e3bcbc154e3262d3c9
MD5 158af78da4a009ed41fbb5b87ff270e0
BLAKE2b-256 426b854ce49f29dbcd85f8a648e2e4e041cf9f9ccec35123ee0b3aa5cd64829f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 defccd3b6f35b9c5bb73c064958f73639ec8dc691af384da2c0b6e988335759a
MD5 edc2d3ab31d909080175abc75305a64d
BLAKE2b-256 4cbaa6a902af157bd03b3b7fbee21942103303a6ede2c3350c32c35550be1a4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6dbb274292e307aaa75efcbbab24cdd0d0a0852a03d2307b8598ff94aaf40bf
MD5 9d8903c209e6651fcd297d1f1c3cc218
BLAKE2b-256 798a77dcf4b2459bb75f10b2fd3e6d48528a989949b095c793ff4ae8e208ba13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 446b9c23e94970d471d665454918debbcaf8e0af4c66c2626629f30b8ecc640b
MD5 af9693da9b835a4df289717d989413f4
BLAKE2b-256 dc2ed642ec42d78b32e0d3a26464f4cc19e8bfed3bc0682c577d5568766c2d1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eabaab03a20c668c1378e579a323e430f7a45fe76e556eedfacda12e18c84fac
MD5 cb39cb1aa3c97f437bbff494663cc7ff
BLAKE2b-256 99c9a325585bd341ac33ae1be4f6e4441cb3599aa72321b1f8b8d1e45f91221c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fcc981bd31f4bbc39279c8f8065cba6b7573866bb8dd71c18ff51e81bbaf51f6
MD5 42087f5e860879178ee2230e7e91c288
BLAKE2b-256 76dc263a84957f791770810ab87a6f63c44538db9e9c12a50308c1e092e6e375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e371eed47634f5582ee9f3ffddbc193462926e105b1281e25e9c6fa98f7f4fa
MD5 481b9da4945390a8c26b4030f24c696c
BLAKE2b-256 87d523427d2d8df0acd46b280e05ac464ba79e1da9a16af921fc24e23b4963e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 06c19404ea99da9535e237bd8c84babd8ba2db17b84164d1d9509ca73bc2241d
MD5 b73d4a1de02b823d1c5dd1cfab0f15aa
BLAKE2b-256 29e3de18faac2ab1a44e8009d8d153d7aac389119c9e22d80c5c956e53d4de01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dc64b5dfe943f78daddf588a49355aeef6c24d306e7bc44e6cf10b117cba11c0
MD5 d8319db6e69f7d6df051286ae98adae4
BLAKE2b-256 0af07cb4722e2144bb8af1cc3fc34e1c4461863cd0314d816cacba977c3b4853

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e7f8aad1a44cea0ec7b5455d7a229721f521fd9c72104f757207bfaafa4caf7
MD5 dd31b37ca6910737bb4235de4e9c0099
BLAKE2b-256 7a24614255b9ac16bae2e7ad5e1ad6792ae6090d4ad57b1d7fdc55e1a1ed21eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78d6d950a4ffbe583cac0761fc42d3016cebd894a6c770b8e46e7d66ccba4d17
MD5 1d301c1fc9fa9ac25adc7a8c1c0ef0ef
BLAKE2b-256 c2f12da7bfe739bfe3cd5cfa5fa1dd716fb16dc4a659adacf64ee76c78da853d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c49fa1cea3608999b3ef1939b5a35ffda60e354bc03b16173c7bee5a4309426b
MD5 a65f6e28bd563b2146069db2217c26a7
BLAKE2b-256 e35b0210d93c01dc0f6df83f27ed73269ba8f499166aae9b8c5bd9cb13d0bd68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 809d7b31f8d6d322b13048a48eb8dd8386131432b4bd5e0d7c1c1ee796d00c41
MD5 48cc43bfa8c6caf80dc55f2336f5fb27
BLAKE2b-256 80de6ef8cee4f33b064b4aae2713ba266189358ef187ddfd27c8d20fa2cef38b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fae6e0877571416d30238e0006bf00a53f8d20cf4cedbad135e0e0d32585499
MD5 c424347b63ab107804765a2e3e4a177d
BLAKE2b-256 77c0696bcd4447d725fe5f9e18cf977773c5b3f589ed593c2025155faf480896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90668855fcae1f4d6213f4adfc5d40cc15465417eba91d47c77311f2ed031a9
MD5 ae60fcc6b7b4ce29e3096c2443f48acf
BLAKE2b-256 db7f0e2cd5df95901848077cb5ed674f451f9aa9b119a8b559f56b027af9b467

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91127a778f737b425dcb6ed8b59ceeb7f0206a9f106cb8bba62e6dd142af53e5
MD5 75ad4b686ed014de9ea0301ebf099628
BLAKE2b-256 665895f3131b74f47bdad0e1026069371b7f7dd57a517b01a92bf3b8f89843e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ce95c854d5aa4f346effc72c810c03312c4a42d6eefced1dad9d5c6a9f0d37
MD5 7620b4a1318b209e906b8acefbfd52af
BLAKE2b-256 b9d2da15ead22e22415db8f340ea7ee4baa8361950b4926b646a2e32edb35507

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3f2405312fc231798c3ff00c5eed953b6eafb04b061758ab721e19f1a6fc88b
MD5 c6e76cc94e367080c2dd61697e5d3750
BLAKE2b-256 6b3f444db2ca5a44c3c641b235a8202afa042df7284a6fd5b5cb194f193bfcef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3daf8d1f00cebe9dec711b10bea850e9a94af8173c75e68bbbf62d13e6b0ec07
MD5 f5c0475a87562aa3050f2c0f3cbc063d
BLAKE2b-256 bacba386136949c7d42f7d557395fcb1c394454bd4f89e76cf00170242489f91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3c674cec45794fdba0422fe4b31d950de85f9c4480e7e7c4f4a9ec5f59fb6dd6
MD5 4e18afc39fc05a54215019bf50804efd
BLAKE2b-256 fc97674de81ae96100ce5237c4e19d7ca9f4d8c143ed7f46fc2b4621efb9c20d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cb0d13086d6a05c90c456a2002b30d0031c994ce1f219ece8c4ed958bb991dd5
MD5 614fd325514e30d6db52b9a5ec1561c9
BLAKE2b-256 32b2933625d176b3d44cb7736c806a4e3f01a1fb52589e88a9a400a3121b1853

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ed1dea49014f0fa68af2899a442006a4e807893cccafa6ecbee984e34a3f4af7
MD5 dd4828e50f58b6bf3584c64419240d33
BLAKE2b-256 0dba720b57a5e3383e551b6bd968f696b1487593cd162492d61405791f112640

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 44ec7aba393d1c345f9fe43cda001c15e61fef9655937e119089843e260a89e8
MD5 d7fb489e23a66b2b00a792793d90eee1
BLAKE2b-256 8e39656410abe6441e51594422c287541c71bfa1affa50c4384c9961c730b83e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0480651bcdc7fb07dc6b071e79fc3d741c267c7b14744f89c17c73f4e445f19e
MD5 478201238269ed64dc8a95c9f719bcb7
BLAKE2b-256 dc832c7091bfd8d4deabff6217b41edb2295122e3d676259f5d2760e81411c5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb89f4f15c15e7012316b52c6af76b3feccef07505c1fd64296fcaf8ce819e46
MD5 bbdfa758387aa15350fed81780f0dd6e
BLAKE2b-256 4d3ebee3d6a9a22694a21b620571ff41ef867585924fe996e93f06f172eb53ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69ac6ee10d01a7a57041463850dd5f33a2a324ef32dd7e54216ce213c21cfbd5
MD5 74067c867b4ad92b5bb8f038ccdfbca1
BLAKE2b-256 8b4dde0835211eb5f1c5e4c609f5a3d49ec5cd8280d276d1f1ffc573155c3d81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 56d10703c6064c2938897b8e55dda878ffd321e055746aa2fd5a555678877e24
MD5 71296db9751b96d2fd8c8b3700dab485
BLAKE2b-256 f392176f8df4729e700d28e42bd65190246b8146969c217baf1a377e64fe70ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ce8cebe957319f50523f65cc8c103c400a219002fd1d7477e3ef359cee99c48
MD5 03a8e6dcba2e8d84ea175345dbc9ed17
BLAKE2b-256 9746adf23cde31a0339bc8d94f95eb532f9906c73339b9f2fd2e5cb77c1ac57f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af241fee69da434aecf9596f7e36cc0bf05b5535bd724e9dba723f0dcfe2924c
MD5 f71cb5d98619f6a156ebd3060dd017dc
BLAKE2b-256 64aa66597176097774cff306662ff2ddfe50ed19778e146559094c6e75376eeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a05a6549146e43fc243c7f08d97da60760f86983b7a51d7ef693b0b746e5f8f9
MD5 aed42aad1b869c3338486a57d0d17f06
BLAKE2b-256 618d38a1ef8c8541919d88a83816e1ecdea7e1f9b460b835236d932dcc5726ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79d15203947f7aa36c2318b3e92327e7f38342550ca896fa68b21cf2f4ab534d
MD5 a0d9944e76f697bb75a8db49b1e113ee
BLAKE2b-256 e4d69a66945fd951e5a211c42f7c9f3c044260f8435f0a293ed77f7579ca5a0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 182e7c1d6f3d215d461af39088863b66387d33057dd4e93c4c8a961ba17a48bc
MD5 2007072d05981b44c7058b55e92e0be7
BLAKE2b-256 f942b47ca515e46a1c1f348df4cf3c63635926f091228057fa55425d8629a3bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5d6d20d79fe1600825fbc8b43fb6fdd1b8dc9a30e7bcc1d3c919562460c57e4
MD5 49e24cb61d91b3f6c8c6f48b4d67cffc
BLAKE2b-256 f8976cefacad97c6392bc20fca27fa5f6906922feca1f4ef89b457c83d826cbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 95037535f204f261a94813d4a18c66df807f61156b065ece80cd7c929fcaa458
MD5 044e3476d8138d2c2ca7873160964059
BLAKE2b-256 cec498ff793611127afa633ee7668486e2f1bb8e0d0fedfeb96abc92ff2c5485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 33f0f4523cefd546a274695c7daba84f0a9016cc58483251e995a9e1901d155d
MD5 7e6ce545f6b7a5a35cb7acc5bb750592
BLAKE2b-256 c1e4ceb36862b52c41171a51b37593397e792cde5cc9749514ad37b550cc2984

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 27b96e017bc251d2d8826df6622c9c5ff82012a6470da1e37d1c4d774618c20f
MD5 5371653ba2032f075f745e77e64e7916
BLAKE2b-256 a5cc474bc5c2462cff73932bcebb7bdd0375094a87bcafde4f1205fa24838d38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c7df3467bf480a54d9c80f3a3678bdc94d630e8d39e1779cad757f6653048b33
MD5 549846a5e61496ddb40d2b458824e25d
BLAKE2b-256 519d18a3b76def9421ecefc5cd3702609b55deb24cd2eee77aafff31dd848ecf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c70b932b8085ecaf40827aaebf3ebe1de2d08658f4da899cf1910cb8c315ba8
MD5 5f85da0a7a8257091c0f004a46e1c740
BLAKE2b-256 9f51c98d301c15c68262455d76271aba05424357158379aa112e2fe804ac0d80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e49146ad6b81febefd36b031d86eecaea55e03518078ec8595879ac75f63e2d6
MD5 ebde512a7b9642b9939c7f099ec1ced3
BLAKE2b-256 befac12c67a477d20cbcd5346a6c19fd86c2833b4386dbd897158ad15266f95a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.0 {"installer":{"name":"uv","version":"0.12.0","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.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0863fac58ed002fdecc5ea6c55410070395097e4d39e3de5348ad2377ab1765d
MD5 0cb4c6f4629c83172929408717f2c80d
BLAKE2b-256 acdf575d26c2a212c3220655391d7e9adab21ce78d2af312a572e784d221a091

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.13

58 files

0.1.12

58 files

0.1.11

58 files

0.1.10

58 files

This release

0.1.9 This release

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