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.10.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.10-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.10-cp315-cp315t-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

pluot-0.1.10-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.10-cp315-cp315-manylinux_2_28_i686.whl (6.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

pluot-0.1.10-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.10-cp314-cp314t-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pluot-0.1.10-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.10-cp314-cp314-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pluot-0.1.10-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.10-cp313-cp313-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pluot-0.1.10-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.10-cp312-cp312-musllinux_1_2_i686.whl (12.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_s390x.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pluot-0.1.10-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.10.tar.gz.

File metadata

  • Download URL: pluot-0.1.10.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.10.tar.gz
Algorithm Hash digest
SHA256 033ce90b97dc721be19fc3516862412bb2dd4f8fa4c4466f48102143e50771ff
MD5 16e294d09f3def906656f452e97a9112
BLAKE2b-256 e829dc51d04c39fd12890ba06696379388dd9bace441f1f5534744d91730b951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bcea05a13bfae782e513b71fd1bc468c1a4d4bb765a6616e9a61f5d29bced5f
MD5 6ff6513ee2edcbd1219ea673e543f265
BLAKE2b-256 f7f27ee4277600aa7712bcc8b273a7e98fb8a1f4d9e9b8a0b17b68601e19f0d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0b1d2d23158e4ad1fdc30cb4844d6a560b46142749cefb99ea9fdc9e926ceb05
MD5 90ae75d8115395fd0c209b655f1953a9
BLAKE2b-256 e69da0118bc928c51648c51dc53e4f71c50a2fb1af2e77f716b70b57550f3569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d88032ae5401476dadc4d12a5f97ef79c31bfa88f6d6be9f588bd8b996629a1
MD5 5f952e5ed860f27a000c3b793afb821a
BLAKE2b-256 ebafb71e4ddbda04d6b91ec5d0b21d0ed6e175e02f7b9c83fb5855e8ade2c4a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d5bb0cf4148c517fdccb5eccf933bbfa923a941126bcaac85396b28a7b0870dd
MD5 d83d98c2ab4dfa976e349caf95c4bdc3
BLAKE2b-256 11178cc339e182dcf8f02a80e1c433d970f9d991e743305bb832e1e199ff9988

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eac8989b884b386e75d2fcf92cd7585fa58cdc884e259aa7262a6255677f1505
MD5 b867cda73449168abc952df26485be2d
BLAKE2b-256 23965443201791fc8f39d6f3a34e054c248fa60c53a05232793dcc11812a8ba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bfde543fc6e8aeb3ab9a53990b5a21f7b636013ce80a316b6c89236b962121e
MD5 7f66cc094e481ef5fcb393e8ffa1710b
BLAKE2b-256 6174265429720e5c9a18264217aefce81c242b36f1ac9a484e5fc6a0e7525ba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e284be8743e5c417cd1469286f64e9b6e303f3dafbe48141be8f406544eb53e5
MD5 9eceee040cb84a0e200b9a4d73e9d0ff
BLAKE2b-256 60675af9fa891c585cc36c6d1d9d6f5a092e6f32d40a3d70e68d037f5f813e82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04921fd048875c1bf2e514b4a736cfbc3d25189f3ddc9eddfe24090ceb9bae1d
MD5 ee1f4f2ed43a83c108b88a0e62e29f38
BLAKE2b-256 3db578bc07371b75f3668168dd63a4f81a651d8e3b748d80888ebf746713c7b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80439a5889f472b71c30114f6ca6899bc8471157d630616426ed2ea9b8c1095a
MD5 867a57e8e94374d89836f22916324edd
BLAKE2b-256 aeac1bff8ae74a4256c984ac08ed8ab41b79dc020946d2d1d22cda3bd356ff9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a28746ab257ef06790445b5a26f83430466c2395c82a1c495f7cfa80d36a5881
MD5 8d44d5b932ef9c13d1c760304c771be3
BLAKE2b-256 45c6fb5cd3bc5b4cf1af8e713e3b11398fbc4f9e2a0c6aa6c104a5c06249bb46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f6187a344068fba9f38927de726f69b3ef715bd0e043513c733a68eff135d4d7
MD5 2a17f325ca7cc29cecba94f49d9f7c69
BLAKE2b-256 73a2f06fdd56f6cbd98da64e1045d3de385656684478843245402fb674b43d77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e2c68af4915def5988d1dcc7c424fda05de7423a350ebe486fa5f5e27f697b74
MD5 4f5f8deddbe5d3e42a2feb8d10677b1f
BLAKE2b-256 1f8e85ac6e7ee209baa7647a00c7137ea7e2bb94f2c1642c0a4fc9579075a704

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fce44b90b8a60705a99d54f069d4393c9e04281c43c885f9707ba5bb42197bc0
MD5 c3ef15ad177f28b0927da16f9495f328
BLAKE2b-256 dff8a9be8c54adc0fe6a750573d3518654f551d0c8815c4d9da9d46caaab3833

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7285bc12a35c8baaafd93344110e597f964342d17bb2b0fc346dc69e725a45b
MD5 502f873d87b0b9042a94a8b8bcd53ca4
BLAKE2b-256 cba93b1ed496163ead3091c90f8219a2bd233f021518797fe97782abe8ff358c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5c316bbe411d8ed989ffbff0df8cfdff8c3ef754cf9f6022655d67b559932d9f
MD5 ccc0cb8fb19bd146702d094f0faa7a1e
BLAKE2b-256 410120052699db0454a3723846fcf1deeaef390f1cfe0675077d65ded7695406

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d5e185b6e585db153f8621b3c819b5ffa7ab6e4ed84626359d051af9ce616452
MD5 8e43fda967e3f35bfb5a78c0b6b5300f
BLAKE2b-256 1d284d0ddeca6abdd239658f3be744100ae3268ad3f95ba04ec58272e2b06186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 58f9407b9632999ed6d483a12fe9fe28ae5478513a1112cfd1e368192a570c62
MD5 37ab36ef1bbb97f1d6f1ba21b2b94e95
BLAKE2b-256 059c34ec6bd8c2dcd6b699ea9e38984f3d5974fe06ca79b42e8b7b56865c7e4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4079779ce836b8bd83df5545342b5b87d053acd504c45240b08797ad1abcfb3
MD5 a2374b6dd2eb2e0ea2f71a5c1de734a6
BLAKE2b-256 7ca46507c3b0b0b0cea00e6506e778765ae4860b804602ec900eefb0201c3986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efbd9b6c957660060827e2045b2833e14bf29b1290a4a30a8bfb85ba3c4a33d8
MD5 d3ec21f72c76480284335cc990e5831c
BLAKE2b-256 9b5b3fa8272ac1a6295d7c371438f1e4a9b40766a0d0b0c018e2cdc6f75ee2fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ed82398edb463e4a4b96876d2a2e08d04dbe8f6a6a1f82cf2c87b1d3712c12a
MD5 6045afcb75e7af63b85a2ae9dcd4fd23
BLAKE2b-256 7dac0cc5c0037d81b43a9ab3050ff12b5a7457980e61aa9d5dd64097a3b3cc34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28e884fc9cf954ee9a248217feff54e4d14ec961a94f95e6f0dd1bace71edd6b
MD5 e9eafa3e1100ef9b9d90d6c9bc8fb055
BLAKE2b-256 2306933d7ceb584ff1e338fa255b2845101a7348e3d70eae600f2ac4537bba4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 817f16871db7d33967034add5fe24c933787588020ace3e9d2df028a64aa4da8
MD5 ef87b12187e5416a8e2b03e3d6ea370d
BLAKE2b-256 a96c3cdd5d8687687a9a2b633574e3014ca0bd81146c7ae1e015b62dab379d5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 28e211fd1e8573d463e42cf00c580599203e9bda112c3037a8d0cdbf2cb7e84b
MD5 c7c84b1a8de50b63a4b5e7a9f346c53b
BLAKE2b-256 3a9e0cfb95941b6d431119cdf4321068d7b5e5eb71004887fe52bcd8c2138f0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 27351811deb3ee2b26691edfb545aed73e9b34374d0f1bd0452f76335baed3c1
MD5 5df6397cf4dda5ff75b6640f2e1b91aa
BLAKE2b-256 219804fe72f056f5653349a78a6232a503c664fbe0cd40c468473f24aa6ff9f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a28b733a9a1a6e0ee82e9843bf014c25b5be36c509f96bd0afd2855dc033d47f
MD5 480b3f253578991b6d2b45e4a3df20c0
BLAKE2b-256 93c3337d7936564ec44964180b7e28661ecb3df1c750358bf20e92b56e94f7a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d673d57f98b70a479e4d4b1a7c19dba3850c6fe3a676d879245c6e37cabd9f39
MD5 cfcc81745fc5a1ef53ce511c44f7528f
BLAKE2b-256 b2ad2895301a5bc5ab675f1be8a51b18242b5db47626534eb27fa7899260ede6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99ca1317cb9c003d48ee3697184b3c20a4e8947bf4059f0144f99efe85c3adb2
MD5 cab40d3cc5d79d84065e7c2377fc9c8f
BLAKE2b-256 78b6b60c93bb84e051363c044ebfa117235ec1bd9d31fb4448ed9885fa03f10c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed69447cbd263792ba8ec8fc6eb80416d320e5df381d79107924106581d4f8f
MD5 3e46b3c6b5cedc324b8a8ef2fb9d0ce5
BLAKE2b-256 a1c10a527c537ff1ddafe2725b21bb56ef4aebce80da1d7df6223990361234bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93de765a5ba356605453126ee4d809ed24c6267fd7ce8da569e5c0dbb7d65e5e
MD5 468962928b58065f8464d00d79a88bf1
BLAKE2b-256 520088b93d0c0337bcd4e373b535ae0a55fdc34e261f56ecbcbad01e87757d26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 56d814190770e274a77e9b9137c364d93b37880d23dc86343e8bed4659058aa4
MD5 b19dd287789e0c414d665e0a6259c0e7
BLAKE2b-256 a59c9fa8d20111ab13035fb7d46c76af76fde5b6299c0ace96b91a2f4a040acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b886da80d7951e1820601dc43edf749672d8dee04bd789618daf6bad2b1ccfd6
MD5 de3c58983690d3bf2c1a360d0a62dcdf
BLAKE2b-256 5a8466164d06478e024dcc1adcefd111a6a4b00f54a7e24c9037ded80f6d543c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9197f47eae06607f57693dfd11314c85dafb6c1a85ec3e8ace01da31aa312fcb
MD5 ad5c8054988453183a0238f48dca0c49
BLAKE2b-256 45062af3119244589e9740ea0d0f77aee70e04df1d0d2e749b1b77fb79d47d4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c168735d7ecd4a7132be2530eaa8468f80133eab55d0c437bded5533131ca298
MD5 278c9b790ffd7a7570bb322dc0ff72e3
BLAKE2b-256 40e327d363d91419b9b30f0ea0526c2205f1f4f378aae0eaccfb78d8fb55a288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb3a002d682f0ea6b500cffc32099c7a6c3ed87a98463cf8b45b45c2fe123b33
MD5 faab61d762709fd2b9e5ebad91b35eb9
BLAKE2b-256 9ec5bb480938badc90a568501f944ef05b35b0d0008c8b45b4c3a3958fbea8f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7546d7ee15cddf25b77d03eb99aa96b6a27fe87a0274daf5cc6be47425f578e0
MD5 e1a4088c6684483dd365f22b93490a4b
BLAKE2b-256 be51b8a19b005ce931e8a5a3afff7b2f01d5c194ff42712c5d3d2c356f10615f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e68bbd3d1c54f7bf60f0be6d2f362414f499953dcec7537c0efa771de9973c7e
MD5 c6388027e98be56fd3e3f97131ecb5ce
BLAKE2b-256 de8d7acc1890c7872aff57dd668f3dc3d47bea7ccbc78b8c66d4754502e30200

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 313889ab1ee77b3f72d050ff208df12e6a46fa879baff9bd1cc5dfcd509d704d
MD5 2f9d9e5d9637dc7182bf2520bfabcf15
BLAKE2b-256 6636ac5bde718da2aadd736683457fb066dcbb8cf9a028569c47ee8f76436c5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 14ad5e23e7cf38c9fe285e4f8b2d5e9fdcd6887983ff77b4bf2959959c45f573
MD5 8a463592a04b39c2cd1aa5127885aa21
BLAKE2b-256 30a96fa11eecaa15148baba5e29c25ce7dc44d91582f6c0f3d633089363d6a5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b0bc8eed3e190e4a4bc8d6bed06168f687292b3a25b807033cd82677bd1133b7
MD5 c3315ef9b5117bb1b3879537b3c3956e
BLAKE2b-256 d5c843110a780599193fe0978364b7f8b446c973c7e8c59bf71f5397e29a4fdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 27e9029c111ee99438198c4a92439018bbc93a0da61fbb2a971ad07042ec2232
MD5 a557a390d58dca121b6c971bd8c25980
BLAKE2b-256 a233c0b9a7320ef6c179e663f9df1b9b0017ad39b61ea339e21dd1e9f8cb7163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f897eb3c11f01248c4063daae97e8a8e07b9fb1e276584ab651dc86254370e4
MD5 892391a652b820cf19ca03a32b371f23
BLAKE2b-256 c1fae7bb31934b291423c9f23e2140e31caad513617afef6cc968ec11302bf16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89ff65f9f81bf73dfed7a99b4976b6d67935fb048dee8c3aad64f64659713d1a
MD5 4ec17a5adf954e7af1d9f027bdb16936
BLAKE2b-256 e1ca69b6e8c9161e8b2aa81e10d1b292531128c5e656643ce64c73ba21ea224d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdbfe0af57aea217d1f1669cf0c3e992b8cca447de1c4b31b1f574f6f5c42280
MD5 c4b9fdaa350694ebee5bb7ed251e503d
BLAKE2b-256 8f4b56cbd29bbb52531bcc90b6ad0a656e94d6f44040dcd46133f16e7876d670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2ae7489b7590f09eca81ee4a06a12a62d737df9c18aa9fb906d0a36ab4f104ce
MD5 d1acf136d1e492baae5e4bf2808d23a2
BLAKE2b-256 c2f4271ce2ec6c2dc7cb52a0f006c65b3dc82fc4067c419228ec0192d019f3b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6de80bbffde6328e7cd2cb71dd839d01b286e74b1bb5d3f0e5c0d9247485ed1
MD5 5480cddfa8ad6443400317e5171c3e6c
BLAKE2b-256 984c4da053c926fdf318fdefa0c7c80ae80a7100455dbd4415ddba0405453807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58ed14a9bcf0241d374b8b252a0311fe1505f0b3b4cb03167fe1da10f0f20571
MD5 0d38ecd82cb5368b5bda2f709bbde0db
BLAKE2b-256 e000a15b5875572d49131962a0131b331b2f541b09b194f85176749b9d1e55bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c96433975963784f377ed82baf1408f9b49052f84e78a0c895172f5f3491b30b
MD5 498db130ab4ba0cf8258e49e41679ca6
BLAKE2b-256 511928e10e1184463198a06cb34ccecb7797a2af28023ff6aefac4d9aa21c121

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 adcdb80290481f409fc42081ffc0c438a5eca35823f6441b838c4291d7c3ee8c
MD5 5b769cc6aeba90121331159730ebf907
BLAKE2b-256 073b75b17742a7a9067ba13c4d8457dad5903363f070d5269a06b021a4c3a490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0861e368ac021b7abea20ce078569965f3e10dbc610534e61d8ca96531bd1d39
MD5 86b6c77a9b583a9397fedb1f1435a42b
BLAKE2b-256 99cd9598912e5715eb288469bbc17fbebe6ab4a6e41c00ce03577205bb26aa54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 985379ee83a07afef3b1f2f36100db2fc83972dda556f0b9464d603ef78e5b45
MD5 60b12fe9e84b84fc4b2c6f76887b0286
BLAKE2b-256 202da2febbce2b22e9b22168574ae81741066decf9a831adc0174bc308be8b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9549298e03ffe57056e4819aaa0451ed56569d37d525922414b201d386dda810
MD5 57c9a7b30edd48e76593894bbcb10f00
BLAKE2b-256 2295dcdb9999c8d99f8ed26d7fb5f7b8cc38d5bbb7a86f63966fef33af65fa81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 eae25f1a4b15494d5343b9adc455f37d94cd5cbb601db025373b177d94df7ba2
MD5 b23735912f2c3667596d151264dd1ef1
BLAKE2b-256 c5d2a71251b4d4e2960b499a50bdca588dd4bf80148630932943f49e0c1867a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 66ce06bf44f46d9eb4de1481bf588fede439e1983f5a032365554cf0b50a125f
MD5 3baa70423278efea5a8c70de078920a8
BLAKE2b-256 a6390cd0f5a5de6015e02b0d7d7b9a6321f8b7338a383f3d3fa4d0b864928ede

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 755a809c8799537accb3d1ab3a5d17521b04a21be867a1861f230b3823963153
MD5 dd544c8ffaf266dddd5bf1704a01e5cb
BLAKE2b-256 d21743c47f9c02293d7ce81863e0b8c32290d3a4bd0d815db50d50025db69b82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a137cb2db759e129d7d949869b81044d1386aad2723fa024dbd8225b6a42b939
MD5 7b32534495dd101c5c96b06844ce6e4d
BLAKE2b-256 88ad75134dfaf9188b13be178e603ece1fc44a35e245bf671d60f44da99fd3be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438a4e04ac631f49dd2cd6729681cebd212ccb99e442123c255cd54ee3cf5654
MD5 250efa1df177ffeb158ed81e26b798f1
BLAKE2b-256 5387d706d59afce0d3bdbe054bbe2a799d36c160317e42436d2043b83c97d602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.10-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.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0ce0b6de8b8ecf9f5bbc9c355a29ed4ac926038ff588a8e2de0b96651f56911
MD5 83167f01a407e8592d00e1ebb7757f36
BLAKE2b-256 12106c6be5e23f711a3c051df840dc0421778fcccc52305f00b5e2ad0e70efc7

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

This release

0.1.10 This release

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