Skip to main content

pluot

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

pluots

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

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

:test_tube: Pluot is new and experimental.

Youtube thumbnail for Pluot talk at Scientific Computing in Rust 2026

Citation

If you found this useful, please cite our preprint:

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

Features

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

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

How it works

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

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

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

The main reasons are:

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

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

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

Development

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

Set up environment

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

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

Install Rust tools with Rustup.

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

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

# Install uv

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

uv sync --extra dev

Build for WASM

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

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

Test in Headless Browsers with wasm-pack test

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

Build for Python

uv sync --extra dev --extra widget

Build:

uv run maturin develop --features python

Run tests:

uv run pytest

Use in REPL:

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

Try in Marimo notebook:

uv run marimo edit

Try in Jupyter notebook:

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

Build for plain Rust

cargo build

Run tests

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

Lint with clippy

cargo clippy
cargo clippy --fix

Generate crate docs locally

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

Build for R

With R and RStudio installed:

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

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

Or, entirely via the command-line:

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

Inspired by

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

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

Related work

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

About the name

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

Rust learning resources

License

See LICENSE and NOTICE.

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pluot-0.1.11.tar.gz
  • Upload date:
  • Size: 331.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11.tar.gz
Algorithm Hash digest
SHA256 f9f5675921ab2d57990dcc213e2d283ce2ac9c15d69d4a3369f428fab194d75b
MD5 7ca5c9a055500b539431600b0c2912ac
BLAKE2b-256 4b8c18591df32e53921e5aea82e3cdd17273a3874dd28a442363a5f15e50fdfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 127fe5cb792c8b18f5279823e6667acc9992d86e326ec7131e5b9ad78811113e
MD5 2c1a78764c4ea19441df8ea07af5dfca
BLAKE2b-256 b0f833d2c39fbc0f01da6bca73a2f49fca4a62a9e3f4c24afe531be39b43e079

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp315-cp315t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 17850a75867ede2376160355cda33c9a5029c6aeee16b8ea76ee38d7fd98c0f0
MD5 75375b2919ede32fccd6e646b4a5698f
BLAKE2b-256 42b48ead15c2163a1fc4978fb459095813cf84a87e1443c07eba2dcc75e86282

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a36fb6880047794d44376a13bbd5901516c4778722d1a5ac32849574e702556c
MD5 f66d2fcc4b377c49e2e68bf26d4ba458
BLAKE2b-256 b40e3d33fd0ecc245e2bfc3fe9431b9be88dfcb15ddcc1ae7b6ff0191e0fd272

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bab55f9bb75ce1d7143dabaa26a8909e57fb9028c08570c32e5a522eb2c7d865
MD5 aac32be7d88328714c7834e2bd3fdee4
BLAKE2b-256 b37b32d0da3f9a5f1bbeb89264bb749abe7933301447d2953d3ce78ba82c6148

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8da739055bce0eb73e84cf7e7cae7cbc80496debcf1d732a2a5c7853f5445f87
MD5 f0a5f98c91702660e38438cadb073411
BLAKE2b-256 81df34bf852b880b24f7b68f2806eca93d39d81f1553116b9c34cc2bddf7db06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 893a2fcc2c419039ff19d9cf535abbdd2365098b141c02187c9163e6bc8b443b
MD5 581f4c3487b4503d32dba88c85dfb7ae
BLAKE2b-256 24cef6505f6a09eb2a999748d39b5bbbdde74297d4cf42f76d67431c2498785c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70fdf20088f4ff488e28144c9772b5ad1a5cb582669417724bcd335809938e6c
MD5 a6b889cc30962d55264f38142ac633db
BLAKE2b-256 286e6a40a5c4774504c17b23c224efa6d4688b54ec2a1defaa192580e83a5ab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4b39a8dce17d8c1c6868fb342f9c4507bf5eacf4fef638069c2e7233779d5e1
MD5 77725e4103b24bb34e037607f2b82c2a
BLAKE2b-256 1a63b65af40c091032ef9f73c5b0271c8e6ef7d9bea4d4487fb260a5f62197f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca432f8c828741792b851334d583ff74e67b270907f5ba284c4f54059cfe2df7
MD5 52cfabfb548aacdbd029f2f41e55e95c
BLAKE2b-256 aedb490f4af19de49a4cef7739bf51813dd8da6a48a78b9970ae92cdfe1beb0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9bc96d445a4cd53483a9dc286a2b0f715cc5f22a0e40c47fffa4d47835a139fc
MD5 57800a91c00f5707ea6a202299423e06
BLAKE2b-256 3ca1a81dc8a5c94012cf8c607f53850a42cb14ea69fc4e55d01c5eb1fb135de6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b0e9b0cdba8a2f207349a19e88b7bab7c49d3be19c91c2864ae24b52217a6c37
MD5 b9b09e4a3f9968969802653180fe31aa
BLAKE2b-256 2c3b7c547cfdfae31190f06f517da9e16188d2e0f08c02c142c629e75abd6833

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d4eed06cf6473d14ec15ab5b58a0ae3e3d7bcf17a0ff1553042d645dd2296858
MD5 da4c14e36781458f05d0f5adc381fe3a
BLAKE2b-256 143371fdcb0976d90b4254bbfc23c7b4365b7b9fafeefa97a42f921d80a1fd9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 50154a190b90f55ef0ca106400c6e10e8a5e2d00158475e1335e1519bdaa96fa
MD5 4b12be82f0777cd91aedbb7d86f58703
BLAKE2b-256 b54efaf43b207a84372a9a439a1566ab7d72a4472b2833890865829c4f356b8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b7bbe672f7960954c7d57ea36bc1519802a82f605767d867387019e840f4466
MD5 e7908c7261a3cb9e4cb89cbc60753b8d
BLAKE2b-256 b9293377ec6cecb45a30feed5c7073ee0ed6d3b38bdcda6d5f2f03de9d6d8859

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a1b95413bb168654fb627ad562f4e072bf8b14af67d5dad786788de7816fe455
MD5 1870483e9280a04ec22336b5399f7054
BLAKE2b-256 ff305c1050fcadff64ffddb04dc4832464b3b52e3925d80bc57bcd019e177842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c1223ded5ed27e95c2c116eb78fb0b2c65a8d51b11499ffa70f69f4154096f41
MD5 6a8dcf8b7a48948bbadf03deabf897ae
BLAKE2b-256 15aab93fcf1ba9fb600f77a2fd154a2619f2d695ce20429684d0865ca0bffd86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eb83a293016f23856ae6dedc263901e6ba7eddf264033b8338b1dc8adfd4afdf
MD5 8349b75572e35b76fe9b8ca0bd431aec
BLAKE2b-256 2edd33c2c4efb618b88153461ce018a3da2bd2cf323349cf8d11a56a658f28ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aeb77e983f9a9f4ad873c4072a497553b3d001fb8a5ffa994cdbfa55570bc22e
MD5 75b435e5d008b500bda6e9cf12f8bd78
BLAKE2b-256 1e9be4d352c421868b095393f29c277c3ccb36b1831a8b926d22772f1bb49af3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21a0d946899d389150b9df7ed6fbf3d55a37bdecab4d6c7510b10f38dbebc9b2
MD5 a74daffbbe519fca2198d664e6113fa9
BLAKE2b-256 1ecb79ea292bbde58228f39c8014326b6b093bbd364756263fa7751ebd874a22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bbebdd48f69d5bfdc02ecd8d5e06a6e99157b0b752c074c93c9ef9aaf5af571
MD5 d8a51d5ffb9a1b526b994fc5f82a68e3
BLAKE2b-256 120901e3c812a230616997e31d032b4751251707672a2faf4b1148536db9b5dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c7b9ffc832e9684306fffef6096ddee7019a29504997a40952237d773e16c1b
MD5 53361d9bb72ed8e5ba95c6e73de0dd58
BLAKE2b-256 f41b33ffa88a7c544faf9a84b512dae73ba4531e3fa4929320455c5c364a7df7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f9b87209485f46414e98e68509fb7726b0c8485ae8fe9bf22b4ef27689417f8
MD5 1ff4796db492db6e91d2b393091a17f9
BLAKE2b-256 2a794cd06ada08e8e5fff5d369c38af08fb5f59fbe308eaa13f1a94a7a821e98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6921d9ea74fa6f2bef73230c7ec0dc44b0e78d92cb01aa75603dbde3e754a40b
MD5 be9f0b478936707272be3e872ffb1af8
BLAKE2b-256 f127bff9417cc41227bef963b508de738223c2bfe7070213e3dfddeef1762c72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 be2dd04c8c3363932eccfb8e9553da7ec9fcd60137b9ab6d5a18a42129f061ff
MD5 8355421ae1709f48642f4bd01dcd28e6
BLAKE2b-256 74d3133384afb51f45a7bc5ec31f308a0051ac5dac9e8b18e6849591f02dcc8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 603a4a366d94fa0ec07ada767d76b26cad3a84dc2dd68629d9483a5871046077
MD5 8f90f62549a0b15a2ac56c419a1797a0
BLAKE2b-256 2724d5428ffc8796e572f0e0e116d55a663a08f7a332dbbbca690c4363a2944d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 100169d990f1be99935b4d41078a61d83733231563e2b16f95a868e369dd8e30
MD5 f349059cc49ec5864606508fe67a49e4
BLAKE2b-256 a7ed5bd5afea7e29b221e45af757bbc0b4b8ce7272af8ccf8dc4cac99acb35c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6bbfa65622ae0c947d4432bcc0c341abf43d61f371e379f9b447fc193ec3374
MD5 bb3dec2382cf6e06b7f5d08802353105
BLAKE2b-256 e0a6e5222fa96ac5c9d0a99d9f0e28549d23eb3b7b6e758624ceee4c3b1e6b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f292b407c58c57dabc261e3b480aaa077e7ace2ab6483ddbaee96ef19a733e2c
MD5 7980a85289621e021297b0b5feb98b29
BLAKE2b-256 3020866a4b99c22efa885ca0997bd3253dc126e5a2c696ee16904dd78feb1b7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b2d5936d6583bca1a331b7eb58437156a652455d83014ccc050fb54525426ac
MD5 c9de9e321e1743dabae370bdec2ac962
BLAKE2b-256 2ea725b4115ac73b223bce61aa6cb0181338125695e16e45a2d56d7b9defbfbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ce660d1645d4eeb6240002fc157843912879416c29173e34cd02b77ced36a549
MD5 85d634f1f46e9136262dfcc938bd4d9b
BLAKE2b-256 0b84666518e6e062cb097b6ef55bd5bb9faaf93c934fe949996eb88cbab37841

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9be9eb2ff9ae7a7e7346d6d9c27ea611b066cff78456e4235a9228d9ccae23e3
MD5 2eb2b0a064a831b2a02f31b0ead801a6
BLAKE2b-256 ede89f31c683a3fca1df29cb0685f0b6ce9a4b66b2aa28de77ba3762125c73eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19e39b7e7ea43e780fc9e8e2e80b41fb6a0fe41052502067c250544966c5bc31
MD5 165080c7cbaa8aa17a46e1b693313f89
BLAKE2b-256 2cc2a933bebf1617f90a6c9f54fa369c75a62d8944b2a2b4a5ab106ec5ad390c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9246a50a0a35ab8215716e9055b9a70ae31f1d61147554b68c61de6930515b69
MD5 76e73d7fa65f45e2bddb4648e25fd30d
BLAKE2b-256 3b9203aea89e6efc08d880c1198fdd726c036c11f7e1c1bfb2818c9f7098142c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dddad593cc7db01d98f75a09483d33a39281e8cdbe98b4d29770759b5348daa5
MD5 97c25212e986453ecb861b8956b2d22d
BLAKE2b-256 df622ad66d6e1d39f9dab9aa6338c8520030ee60687568799cf9d349012df50b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86086112883aa946747771b9558b22f715efea67f62842def0ce4b6219e7af64
MD5 81d9b714a59dbe55a8a482b7c4bb8586
BLAKE2b-256 214ff498d5f450ea5e6565419031dd389d086e21360f6a148e947fdba95c2bff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85b463637c16fa557a7e3cf57799a715dd501d08848106c2927c3faae2318e28
MD5 f8053b2fd22d86c9a001c93c041cfa58
BLAKE2b-256 d4c67718d3d7ae1456bc6fd7e90c55b838582fc6be75a4f79945bede808bd5a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 13edf017d46db6b313a845a8b65daea8508781de007f0d44b83ac768ce66d3f4
MD5 385ff1b1dff87352e5aa049c8cb5eae5
BLAKE2b-256 5e93c0cc0375fd0cc388a7fecc3b2f1372a6edb5f6cfe777997b307389d124aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 64f3d8fc3d5dbbbf96fffff09ba9f2ee3335f67ea4d72e2b918d34056accad5b
MD5 e159bed719914b029a0ebb00f161a40b
BLAKE2b-256 7d640ee6e5538d5f115ce05384344def1ba7c4bc62b53f66c7c696474baaf057

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dad323115f90d795b6789d99d17610cd42ee94f0018394cf84c726a30cc3a39b
MD5 9117b2ef6fbfffd2952416941ec3ff65
BLAKE2b-256 525588b3c0072f9ff361d62427e91baaeb12d7e6240fa34ef82856f621874737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5fd682ab1177dd54df7a2405881988ed85dd8a816898d3f99efa01acd47d13b6
MD5 2d52f4ad975f8afc5e67684a30a0a031
BLAKE2b-256 df8a598bd072e2d2082bbf276ff38939324cc6f14f9a19a53ba19cb2aee4f0f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79ad4a8c55268178e29395c72865d2eb83b6571e8bb77a3d06dc960702279da1
MD5 ab3c3baaf1ed5d75579b8059f34330c9
BLAKE2b-256 a57c17defa88cddd4eb96095779284f5c4ce93567785d5b2f990be10452ad8bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5749d01a501721eba9de489746fe026e52859a378f749079196857d78052c85
MD5 758fdd410777972962c0ef35cbc7e575
BLAKE2b-256 d948d33e1afbe882d9d629b5cd150d326ff812d7626a0ba0071831d72afc8d03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8fc57bdc8b90bf5f7bca20e65367c4fe6ad4292755c202e60c83a2d976aded1
MD5 9fcb56526c2867d3425efc01b1ea792c
BLAKE2b-256 e49e22079eb6818337b6bdadff512c969bfea1bb2740217164e614f51979d0c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c37812f81429b040a622fb2986818e3b6faf4a4e698ff076f2097c6c3cc1d270
MD5 dcf99fea6f88cced4cde644abbc4d17e
BLAKE2b-256 663fae670898a1fc6edbe8949828009bd8721b0eecdff15da64cfdd596f42e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42429583053961d4daa11c455caef9a5e4a0ed35ffbe694bfc3f24b9c9ec1dcf
MD5 91a7f05cfe5fc92a9c8eb8c089acc3a1
BLAKE2b-256 57b210e6cffcaadf71c1a3df3a9eb8790b96b41fc6a1293cdeabccb20f22f69a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f51a383cbefc88d815fc598d77ea017c8d27c2394bc03091054b5f903490756
MD5 c7bf4432fc855b1028c2cb7e82a91a9b
BLAKE2b-256 c544d76ee1df7d93fe8a4b2f37cb66f71ad5478f14b362329ca7d5340aac3ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46e561920404ad939f813d1fe10aa5e59eb9f71933eec8fb68605ba1b4fd1892
MD5 d0984df02b2d71ee4b54261493d1afb1
BLAKE2b-256 9e35abf8345d07767cd796e304501027ea51e44acaaebf2deffeb61d2891a635

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a25c68d21047af708541b20b5b0816eb7a07ab98463796241aac576b96bfeb11
MD5 6b53280be155fdf3560d9ee1f2b5e741
BLAKE2b-256 f0512471e133293f682417633eb2a86d6b9492fda0828770df7857f7b0f8aaa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce51d15f5867b15aede13b440ffb090691e39b1f5c22a06b842fd814a071a76
MD5 9b4b384f5ff41b238aa0e390a1571fa8
BLAKE2b-256 53bc712a9d5e7c17fdfd81f8c82bc780e220655ad1542ebbdb288d47efbc82ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d215079fc7804d11e1354e946a6ca01d5043db562b47ed74e8a94fc6a9acb950
MD5 5a080d35ac8dcba2edb7b437c37138e1
BLAKE2b-256 fac5d5437f0ccab75336453b26cd208d0027e7bff6878dbdc8e8e70f1ca0584f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2be3f9be41c00f1a9447613d4e59366396d2f6537a3515c2007f450526d00626
MD5 ff4aef1898d8619ed3c3737e6467edbe
BLAKE2b-256 2fac0edbf8746b718a2bb63e1f68fdc880e5e4d15e6134eab19c5dc00eef5711

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f5b731571a8fbfc53d42f908acf13c20f0546cb6abe949fb1400820a78420d58
MD5 a0209479546e853e44d852d769533c0c
BLAKE2b-256 84e98b032c98929f14fc582c6ffc50ce5331a2995a8b7b9d7c2f1600c6b0adf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b6a376107579bb19bad87304bab9b8d222d8bd1c89345ca944dbb447d3233326
MD5 62498e5ebfe51eebaa9cc56708c52d5a
BLAKE2b-256 2526b7ee5dcd7db0ef7be59a11d035ce1d28e6b2a9167deca425542382c3b574

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 acc6240aedddc9ec9107a60af18b69f0f72b6568bbe9938556640daaa9815609
MD5 7ad26edeede280c0ae311e28239dce24
BLAKE2b-256 b1b7859e47497026e6dd01d814b07128dbe401e60098c30abb85cc9d802887a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3892ee9029454d063ac53157f35249487f7601bb146535e6340d2141c19cd805
MD5 34542c881e717e515832bff7c78ffaa6
BLAKE2b-256 a8348f91103996ca904042c767f0c1c71505335ed34f7737ac3ba05ad00b7b01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91ec75cd3189509c012a7e6453b76e3ffbeb02ecdd6df208ae35463710520739
MD5 6a2641913e96c6c9f59e68f2ff8a0ca8
BLAKE2b-256 65a19652f1226614c20f9441712173cbb90aa7ab736457d62d82a00bf03cce43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pluot-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.1 {"installer":{"name":"uv","version":"0.12.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pluot-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bf7a5eb866c7d594fd6a8dc7ce331b955db350c61097f668a21ec440eb1a92a
MD5 b0aecaaf4c692836cdb9d1a2adf9ab2f
BLAKE2b-256 91a68f1489be2707c13f407bdff82e1ee63c2d1c089d912dffd9e9fb7a2a8b1c

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.13

58 files

0.1.12

58 files

This release

0.1.11 This release

58 files

0.1.10

58 files

0.1.9

58 files

0.1.7

1 file

0.1.6

1 file

0.1.0

2 files

0.0.1

2 files

Supported by

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