pluot
blog post ✦ docs ✦ example ✦ crate ✦ pypi ✦ npm ✦ paper
Implement a data visualization once, then render it in multiple contexts (across languages, static or interactive, bitmap or vector).
Rust, Python, R, and JavaScript (including in a web browser) are currently supported.
:test_tube: Pluot is new and experimental.
Features
- Small: The bundle size (i.e., the WASM binary size) is small (currently less than 5MB) to make it feasible to integrate into web applications.
- Scalable: Scales to out-of-memory dataset sizes using partial reads of arrays/columns and data tiling/aggregation strategies (currently using Zarr via zarrs to achieve this).
- Language bindings: Usable from multiple languages, including JavaScript/TypeScript (via WASM), Python (via PyO3/maturin bindings), and R (via extendr bindings).
- Bitmap or Vector Outputs: Plotting functions can implement bitmap and vector equivalent drawing logic, to support publication-quality graphics export.
- Layer-based API: Compose the built-in layers to create complex plots, or build your own layers with full control over the WebGPU shaders, buffers, and draw calls. Usage of WebGPU compute (GPGPU) operations prior to each layer's draw call is also supported (regardless of whether bitmap or vector output format).
⚠️ Currently focusing on 2D, before eventually supporting polar, ternary, and 3D.
Examples
| Static or interactive plots Bitmap or vector graphics |
Web-based plots Scalable to millions of points Open example |
Python notebooks Render static plots or use Jupyter widget built with Anywidget View source |
| React component Use React or plain JS Open example |
Rust-based GUIs Examples with Slint and Egui; Framework-agnostic View source |
Scientific data formats Support for OME-Zarr and AnnData Open example |
How it works
Pluot uses Rust :crab: and WebGPU via wgpu to quickly render plots to an array of pixels (or an SVG string), decoupled from any windowing system or interpreted language runtime. On each "frame" of an interaction or animation, we re-render with updated plotting parameters.
When the language bindings are used, you can think of this as a form of "remote rendering", which is actually happening locally; rather than the "remote" being a far-away server, it is just across the language binding boundary.
Why would I want to use this? Why not just use JS+WebGPU directly?
The main reasons are:
- Portability: render plots from multiple languages, without the overhead of an interpreted programming language runtime
- Reproducibility: explore data using an interactive tool (e.g., web or desktop GUI) to identify plotting parameters of interest, and then use the same parameter values in a scripting language to reproduce the visualization as a static plot (e.g., a Python script in a Snakemake pipeline)
Using WebGPU via JavaScript would couple things to JavaScript, which we do not want for a library that should be usable in multiple languages, including without a JS runtime. Our approach enables our CPU-based operations to benefit from the performance characteristics of Rust (or, in web contexts, at least those of Rust-via-WASM).
You can likely achieve better performance by using WebGPU directly via JavaScript. The question is whether the performance of this Rust-based approach is good enough, and whether the benefits are worth the potential performance tradeoffs for your use case.
Development
Further developer documentation, including troubleshooting tips, can be found in dev-docs.
Set up environment
After cloning the repository, pull down the submodule containing font files.
git submodule update --init --recursive
cd bindings-js/core && pnpm run copy-fonts && cd -
Install Rust tools with Rustup.
# Install rustup
cargo install wasm-pack
cargo install cargo-edit
cargo build
# Install pnpm
# may need to run `wasm-pack build crates/pluot --target web` first
pnpm install
# Install uv
# Generate/download sample data
# See data/README.md
uv sync --extra dev
Build for WASM
# Install nightly version of wasm-bindgen CLI (potentially not needed anymore)
# Reference: https://github.com/wasm-bindgen/wasm-bindgen/issues/4446#issuecomment-3172624621
cargo install --git https://github.com/rustwasm/wasm-bindgen --rev b766ac3e206a8efab2c7cf91923cd502b2bc77a5 wasm-bindgen-cli
wasm-pack build crates/pluot --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --dev --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --release --target web && pnpm run start-demo
Test in Headless Browsers with wasm-pack test
wasm-pack test --headless --chrome crates/pluot
# or
wasm-pack test --headless --chrome crates/pluot -- --nocapture
# or
wasm-pack test --chrome crates/pluot
# or
wasm-pack test --firefox crates/pluot
Build for Python
uv sync --extra dev --extra widget
Build:
uv run maturin develop --features python
Run tests:
uv run pytest
Use in REPL:
uv run python -m asyncio
>>> from pluot import render_py
>>> await render_py(width=100, height=100, plotId="test", plotType="triangle", storeName="test")
Try in Marimo notebook:
uv run marimo edit
Try in Jupyter notebook:
uv run jupyter lab --notebook-dir bindings-python/notebooks
Build for plain Rust
cargo build
Run tests
cargo test
# or
cargo test --features lacks_gpu
# or, run a specific test file
cargo test -p pluot_core --test test_positioning
Lint with clippy
cargo clippy
cargo clippy --fix
Generate crate docs locally
cargo doc --no-deps
open target/doc/pluot/index.html
Build for R
With R and RStudio installed:
open bindings-r/pluotr.Rproj
devtools::install()
devtools::load_all()
# and/or
devtools::test()
Or, entirely via the command-line:
R CMD build bindings-r --no-build-vignettes
R CMD check pluotr_1.2.3.tar.gz --no-vignettes --no-build-vignettes --ignore-vignettes --no-manual
Inspired by
This work has been informed by my experiences in contributing to projects including vitessce, use-coordination, viv, cistrome-explorer, deck-to-svg, higlass, vueplotlib, and easy_vitessce.
It is also inspired by many other projects such as deck.gl, deck.gl-native, jupyter-scatter, gosling, napari-spatialdata, spatialdata-plot, and scanpy.
Related work
See awesome-rust-vis for a list of crates related to data visualization and plotting.
About the name
A pluot is a plum-apricot hybrid. The fruit's pit is to its flesh as the Rust core of this project is to its non-Rust bindings.
Rust learning resources
- Rust for Everyone: https://www.youtube.com/watch?v=R0dP-QR5wQo
- Fork of rust book: https://rust-book.cs.brown.edu/ch04-01-what-is-ownership.html
- Learnxinyminutes: https://learnxinyminutes.com/rust/
- A half hour to learn Rust: https://fasterthanli.me/articles/a-half-hour-to-learn-rust
- Guidelines: https://github.com/microsoft/rust-guidelines
- Another list: https://github.com/microsoft/RustTraining
Citation
If you found this useful, please cite our preprint:
@article{keller2026pluot,
title = {{Pluot: Towards 'write once, run everywhere' visualization software}},
author = {Keller, Mark S. and Gehlenborg, Nils},
journal = {arXiv},
year = {2026},
doi = {10.48550/arXiv.2605.14118}
}
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pluot-0.1.13.tar.gz.
File metadata
- Download URL: pluot-0.1.13.tar.gz
- Upload date:
- Size: 331.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d20401fe2cbb9efd259e8c2c6877cef4a365278472f08f12fc09f7d7e63844b
|
|
| MD5 |
3226eab1306b792b7a5695e86f37257f
|
|
| BLAKE2b-256 |
a9972df0e6751a8735946cc80e3f061dd1aa7e1aed49f5aa5054575385974100
|
File details
Details for the file pluot-0.1.13-cp315-cp315t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7563a6a402fc30acbab483d5dcd63227f33f714cd34e73079659f462818c9910
|
|
| MD5 |
02d0dc8ec5e3e5babf5a96e3fd29025e
|
|
| BLAKE2b-256 |
6b360099885e2cc83fa2cb21395333efe1c4721a7a48b68a46a526b64f70111e
|
File details
Details for the file pluot-0.1.13-cp315-cp315t-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e315aa61071e635b2553216c7f4af01e4a739d658e8ada82eab4a5e4c7aaa71
|
|
| MD5 |
1efc9798db391a844308adf030f418bb
|
|
| BLAKE2b-256 |
05f5b208b9daba3cc8746f185ea5cdb4539e1a0c85807b57bc52ffce81c0e8bb
|
File details
Details for the file pluot-0.1.13-cp315-cp315-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb651c7704ab39c3d21074f072d09dc4c7a8816e1f7779d5845f710f12fb6b20
|
|
| MD5 |
d903e15cdb88266a1201ff032dd7ae22
|
|
| BLAKE2b-256 |
dcb4b05df6b4fba18a0e8b18827268ae5c0f57b3c2c71d35ebd1d4c5f3a74a54
|
File details
Details for the file pluot-0.1.13-cp315-cp315-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a758ae4cc118773d8da930042f6a249632cba92533afb8e966e960156661f574
|
|
| MD5 |
14422e420d9aa56de1586a6c0beb29b7
|
|
| BLAKE2b-256 |
98cc3d75c1734d411da6f9221f53a8840e25efa5615686943af2ff009d03c2e8
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15480c0bb971636a894113275ee166ae30966a77615b8286569e607e85715503
|
|
| MD5 |
6fbc2178f6c06188a7bc81e321c8ae12
|
|
| BLAKE2b-256 |
5a4b56f1eaf80a9483257f386ee81e30b460373070c1c0bd25df5092496b8aca
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93e55b1d4b7016beef5f7c7c4c9a9110764634333198b86e4bf3dcf49cadb7ca
|
|
| MD5 |
c92f1c18a153a71fd85db44982d5c2b1
|
|
| BLAKE2b-256 |
4a48a236df6b8a955d64dc1ae46ad9d8f4eafb9a674c771dc15262e6167be6f0
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cbedbc73e2baad775988a6e8c4d1d8e53ddd75938242f205aa71f464b9deb1c
|
|
| MD5 |
1d7bc360452a7bc47fad706169ec7ed9
|
|
| BLAKE2b-256 |
5132436dc4db9aa45c44eeb2b80d73c039afebceee162562a82ba45f48fee806
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206eab0a0e35c36c5cd7cd76f18079b54cbb3a9dcbe5f4837eea9de134650378
|
|
| MD5 |
90a9f9b4578d8894d5da8ad2ef8cf39a
|
|
| BLAKE2b-256 |
411193c87f17dba144a40ac27263685fba89e78c1176960d429ee5dd89089256
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f40e87702d3902cc15df449edc6eb65450df2cbe8f41a738fb0e8e2a5e8d26cc
|
|
| MD5 |
8af33a03e323e0beaa3a4a140a6df982
|
|
| BLAKE2b-256 |
4885279c8634777dd67113c1b8e8a397e989ac18bc6b9981715b6a4dc56742cf
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3678957715f5a1847736204b4e17162c1c4a54266fd6315ee371acc8763d03f
|
|
| MD5 |
efbe2e52f4d5eaad76e00372769cb593
|
|
| BLAKE2b-256 |
6f2488ce69ac6210c5a0215b7a1aba538c4ffe0194136ff3cdcc389a40b6c1a6
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51ee38fd262d9d83e30917e26be2664c057555344fdc2b67fa4e5cfb74973010
|
|
| MD5 |
7bf80149d08f910e6b676f3b22224149
|
|
| BLAKE2b-256 |
eef83345d9c8d9ae2fd49d83d4fa3343dcb009f59ac66e4195617916eecfff44
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0497173f64e9239a8a012ccd8bdb4fc4a06b6d085932d5aa940afcea18c3f1fd
|
|
| MD5 |
b88c7f83f5ef43da77457f706641c6f7
|
|
| BLAKE2b-256 |
6ba73e8c255358deab38fce750095bebebf9459fc9c3a96b6e7be3b8ff89249b
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d10f1219951e7e65174db45f75bb6ce54e06fe77695e3d48eea70c3daa89f147
|
|
| MD5 |
11bac7c892e00b6a8125f0d38de54528
|
|
| BLAKE2b-256 |
f56aa91c249da4c4a0e3fb8a8a067a57baea726a3a1a3baa69837568917d5741
|
File details
Details for the file pluot-0.1.13-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
127956c38879c7ba225398027f94dd5f62c9fb202b496fd51d36326490448fa9
|
|
| MD5 |
12db3c8fcaf5da7f605ce06087143402
|
|
| BLAKE2b-256 |
926beb05f19a0156aea80d4c5ec4539ade1d296ae944a92c504c761a899f63f0
|
File details
Details for the file pluot-0.1.13-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1532f9aeafd3c396333f0ee4dc1e5ac24996f61b50a0fa475d0e9b91d4ea0a3
|
|
| MD5 |
6410a642fcd6027d8e70b594d09ab984
|
|
| BLAKE2b-256 |
79dc552b0cce12b140594bda898e32cd275d8de6a69495d74464edcc8d12ed94
|
File details
Details for the file pluot-0.1.13-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
494a57e8b56fcc31cec0c0c6bb070fb9298da30bfe40e83348ce442173a96c80
|
|
| MD5 |
b126a08d105d06d248a6e3ce435dc0a9
|
|
| BLAKE2b-256 |
efc506e48efe4494392877ea34fd9143ce2ae967bbc595c495c94b736fe6f5d3
|
File details
Details for the file pluot-0.1.13-cp314-cp314-win32.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52142ff0a185b57a7a5a25ae969d92b15ce0543bad6936d961783714513fc06a
|
|
| MD5 |
1b900a2c5ccc92323cf7b90feca7d69b
|
|
| BLAKE2b-256 |
3956735f4aaf143fd32f92801c6fa50f0e35ea8f95db60b1e6614b1e9b788ca7
|
File details
Details for the file pluot-0.1.13-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
214cb9ce89e6758c418a3d8b98a89975245eb339f30b0467d088967a10862112
|
|
| MD5 |
51c3f952b02570e64358f79c4afdb8b6
|
|
| BLAKE2b-256 |
30f44940d766c6f60985e4097640f523e87ac4c184f47a422a25cef91d3867e1
|
File details
Details for the file pluot-0.1.13-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea94ba0149bff571084ece8915e8d36f421c44e16000bb94545180b645e5ea0
|
|
| MD5 |
fd8825035d2ee847ab9d894d6b9fde7c
|
|
| BLAKE2b-256 |
46e18410e5b59f554d4f60c641435c6295dd8a454a2221f9d4a489b548cbd2a1
|
File details
Details for the file pluot-0.1.13-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3dd5d134927fc1118e1cc23d612f4884922254652ef013fd8eb86ddf20f2e2a
|
|
| MD5 |
1b7aab5fc759e6c87b41d51cce80beb0
|
|
| BLAKE2b-256 |
11e6963372d8be26c8b40613a40d2b4ffd49d14639807f1693cfb2fbcaef78cb
|
File details
Details for the file pluot-0.1.13-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2421a9c517dea32c57f72710e4f2fa7b65334dd54bdb9d0ecbf6cbf734d094c4
|
|
| MD5 |
921f5109b0418f0d16244a9ebaed2842
|
|
| BLAKE2b-256 |
d64b921952187edeffb75b28364ef45d19382ed37d903b66253c1232b4e7d020
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f30a26c0ad5d8e26188cebdd15fa740e6f853e4cb2570c74ef844e29c363a2a
|
|
| MD5 |
677fc7a6916b4e569fb87220c05d62b0
|
|
| BLAKE2b-256 |
cae0a05fb2bf6296fa516467564d683b4fd5d1a86a50bad7cd4e2b70d5ce1640
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
070a86a46861d96865d05fc08fa5bc346389422ee048268b0bed4f5d5b8c6e95
|
|
| MD5 |
e79af623506848a2b0aa37a04d0889cb
|
|
| BLAKE2b-256 |
d19023e58271084b255b304190d6bae38ef0d5ba83dbbbdfb1058f9a1dbc6ac4
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc197c2e466169e822ef623494eb7419b90c271ace7e736e41a7e340df951229
|
|
| MD5 |
b7e23ec68ed348d0bbf42bda1bc7065d
|
|
| BLAKE2b-256 |
41ea1efd640d7cea76fd5780d04c3561182411af635be42f3f32aa2deb67fd72
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56c8321b8ea51577845428cedbcc74283a594f337fa9293ca6cb6e7ab0045a19
|
|
| MD5 |
05e6237354478b107020e40df8dbce7c
|
|
| BLAKE2b-256 |
b57588c8e98dd6b9ca6d318e0608c0f1120e4b48a8876f2b86257106d0732ad8
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d787a64f06889317602d2d0bd1ddc28fccdf4f1202cfa8bbc4f21d6199c3d46
|
|
| MD5 |
923bdfa044a978b0b00c06f548e32069
|
|
| BLAKE2b-256 |
93b02d59fd0efc9372b162fc8236bb60df3f444a8fa99e9f9705d611e697249d
|
File details
Details for the file pluot-0.1.13-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a48193132ad59cb07fa0c5186c40fae72afdf36c6bb39abd8a5430ecc901e7af
|
|
| MD5 |
bf5f3f0624f299b62835b13932f4bda3
|
|
| BLAKE2b-256 |
2375001b1e45f5156d2f8cb3f6ecda3c1916756a34ebfacb07522e2bf69878c7
|
File details
Details for the file pluot-0.1.13-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
655b817d2d617ebbc19aef6f94ed16e9728aa3c6d8b567f4b8b6c8e0ee3988af
|
|
| MD5 |
d5c66c56814637d16417a3a1ad128d2c
|
|
| BLAKE2b-256 |
9348a9f0beaefcb0bd108811754e4131cfb014000702ee5313002402904953c8
|
File details
Details for the file pluot-0.1.13-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1389a73df91274dbe165938f2e69f6e1dfa65c92cda5c030dfb6c26321d576b8
|
|
| MD5 |
2bbff607b8431966ce91c885812942cd
|
|
| BLAKE2b-256 |
f20e77f23c008aaa1afb6b3575efa986b4737395997810d29f3e3cb745fd4121
|
File details
Details for the file pluot-0.1.13-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e25e3350c909c02c207cd7a322ce424d9084b85dd46e6509dbd3a476d4da461b
|
|
| MD5 |
5da3b8de62b0ba259ef8c6be49a76770
|
|
| BLAKE2b-256 |
ef3a6bc0a16618690a222a5ae2ec01e1d4166a0b4f6408a5163b0598ceb8ea40
|
File details
Details for the file pluot-0.1.13-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60e33c748c8e3300bb9b88a1033d6f444f1b431184141fa7206790fdb05fef67
|
|
| MD5 |
7b4548dbc1d66deeb2d6e2a2d5412612
|
|
| BLAKE2b-256 |
99036b09bded19ceb2b8da0167a5500e84d6c75ea3ad9f7027176b7db9b1a2ab
|
File details
Details for the file pluot-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7f85942e8ff2091eb20bbb16693ee3f3bd6c96f17cb12ec19470062f1204e5d
|
|
| MD5 |
56761d77f787d83d60734c808fd10da4
|
|
| BLAKE2b-256 |
ac1383c98f2e1826b0288207fa9d00950ea885398f658ae838bf15dfdb0a911d
|
File details
Details for the file pluot-0.1.13-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04f74107c81e3703d9e3265125203e67144b9a39eb572a6fe3c1cfbf578c3a2c
|
|
| MD5 |
9911686386c2c927c1a32f484782aab4
|
|
| BLAKE2b-256 |
95b711c2a2f7f4c7d4c895c94518fa3408d3bb65c32d1163381fd1be37a42507
|
File details
Details for the file pluot-0.1.13-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96188b920a0b1c3aad878360272dd9a88c14aba1ba8125ba78e0c471ac49330c
|
|
| MD5 |
748f7b9a369d76f2d174b4457b16b015
|
|
| BLAKE2b-256 |
01abae33c32603439bd70b94d537fb55d0c59e954b303c62caeca81386a93c1e
|
File details
Details for the file pluot-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce1002f5fd4ceddb11f12bec61c46420d909d2882a1011b8cb147656760bf70d
|
|
| MD5 |
33b87b174c6906c17f04338b3e3ed532
|
|
| BLAKE2b-256 |
f31bb08e9899a578127cae5efa638f13dfd8103997ad497cbd0aa39858477b03
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bde4e1eebb0860c7f8e8defa02613e6e4669d8abde467aa9d80767aa38d923e5
|
|
| MD5 |
82a60fbf82642f129b6ee63c30e7fc55
|
|
| BLAKE2b-256 |
e05b08e00c04b3eca228260193a2da1e325ef5bbe2f9ab03e83bccd7960c5323
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93f34af6d56c010ba4da55e65cb6bf7abd941c3a906e3073765b096754f2036e
|
|
| MD5 |
4d543ba203e3a85526c358031f42fab0
|
|
| BLAKE2b-256 |
6acf4fcbe4c1eb6d373c5f480bb5e1fade8f5babbffc4a3e16f1e05ad5b3cf07
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
757da6e481b3816ac039d89d127196a05963c4b5ea6915013bbe5db6d375e58e
|
|
| MD5 |
2344d8573a6576857d8159aaf0c221c6
|
|
| BLAKE2b-256 |
46fb53ae1728c931068f83f4bb1fcbbf75345f8e39531dcb730ceb6593409d0e
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53924d2f642abdc17b3089453ba722eeca70b151394e78587b18ca5918c8203d
|
|
| MD5 |
8a0fc58f089020f5a3c7501aaf3310b9
|
|
| BLAKE2b-256 |
5d0dfd147e2f01320a60648e63cda366f74650c572ed34ab5b89c255e6122ac4
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a67f8022788d3b0b5e0ee55c17a4e6356a46af06332b8cc3d2505f8751027d32
|
|
| MD5 |
8a04fa72f9070cc47110236f46d0d463
|
|
| BLAKE2b-256 |
8b1407a31bc92255f424934a352066e7634430cd201a16a7cc53b706fd4c470b
|
File details
Details for the file pluot-0.1.13-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f47c5e525ccb2313a0b9f27612dcb99baeed2330a49506ccbeb72003ec5e1872
|
|
| MD5 |
0ece0a04f68c3f1dd21dacc9cd0cb1ce
|
|
| BLAKE2b-256 |
541dde698c70f257b3c3b1ca6d557ede0c528958ddbb0ded31f1cd29b4da5099
|
File details
Details for the file pluot-0.1.13-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c45b2cfa353faf749c66be9792d80800ceddc3f7598eb53c714ba5bbb807291d
|
|
| MD5 |
301f90b21ab011e7be567b83b041d2f4
|
|
| BLAKE2b-256 |
91aaa85038839ec02333c061d402209b9ca8463cd34392e63e00796c164ff744
|
File details
Details for the file pluot-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbff451b5d7a7edf1d4ebface2b85f5c46f997d1d11961df6b2b596809b7b99d
|
|
| MD5 |
4a565eda8d419d87cd07cf8be8baaae9
|
|
| BLAKE2b-256 |
7665955264c629c8506bb59324ca890005750187dacdcc4885a365e19283e397
|
File details
Details for the file pluot-0.1.13-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90d547089dd204c92b2c741dc4f933daf1dddf189dc9129cad15930ad289a9e4
|
|
| MD5 |
6e9f0296f84ef2fe2af8e850fe65517c
|
|
| BLAKE2b-256 |
e1e7a8f542b15404269a4578cc1dc74f857185d059aa71bb4af99ea4303a3f7c
|
File details
Details for the file pluot-0.1.13-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934a9d30c64f6834f32ee8d54d6158dee726d0ef23d9f4988b93854e8a1492e8
|
|
| MD5 |
a1d8e8ae4d1e63540887d08b16c3e060
|
|
| BLAKE2b-256 |
569ac0aba5ea72a3c1cd83f775b565dcf81de1a2c98ae0dcc9bca29e35f3713f
|
File details
Details for the file pluot-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9294198307dd2603ba2964a735dfd15600fcd901cdca9242e02da388e365a4c9
|
|
| MD5 |
260ae6ed506a136de5a547aaa1d2920d
|
|
| BLAKE2b-256 |
18abf93f7a9452851d335c6d5ead0fe4aac430b0cf5c3acd745dc1c9eba8a046
|
File details
Details for the file pluot-0.1.13-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5173d5d491a0d1d4733a16f296a063948b0d9e7350b5ad3a59d571f1d970d18b
|
|
| MD5 |
b471cca4b028c4d14a4e1bb47cd3fccb
|
|
| BLAKE2b-256 |
093d4aeddbe3e826edc0b97e4e1a4d8faf6f4ec81f0b03043f5c971901e15340
|
File details
Details for the file pluot-0.1.13-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cc402b6f7fab875b6fd2e0dcaf318f5e2f1314b7a53a98319c74bd6ce03cf1b
|
|
| MD5 |
03eef8b928f0df3eec3affae9115ccf5
|
|
| BLAKE2b-256 |
00186d596deb0a2af2fff213ae1c8f50985ec5103433cd6aad1da886ae145938
|
File details
Details for the file pluot-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db3468b38545ba9ec10f8e448992241a9a73fbd9373f731b47903bbc4025a7f
|
|
| MD5 |
33f05465e1a497d07eb2570ec10276ea
|
|
| BLAKE2b-256 |
669c12ceeb07236aeb039520e31df489cfc0b7a94019f0e0ac75d84e40c4f938
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ced54e578e3327ac1dc54939de7159fd66ffb7dbb1f7d3bcdb1e5b11dc66fb5
|
|
| MD5 |
3aebf8f015c1e5317cc852ef91e3796a
|
|
| BLAKE2b-256 |
76512819d9b7fc0020ecf83c4dd3d3fd7baf90e43f9ec79447ce1d909b4ec111
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72bfbef5015afe82922814ee13dafe472fe908fb7dd6b8eca9ffefb63ac7b092
|
|
| MD5 |
6842bda12a06ab471b9b10ff75f4930f
|
|
| BLAKE2b-256 |
bc6c81a2dce6e9f9e6c34bc9fc3b165ea6daa03d32e2c4d499138f6fbd47a2cd
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1d5c5c10e633c015f97cde66cf3ea6bcae591dfb4d1a6f4f8b8f4fadd939299
|
|
| MD5 |
da3973694def979c2607398362af5296
|
|
| BLAKE2b-256 |
0f4ce4b02d04f3bc936efbb3f98454fe490692250a2fa20fcc7ef7c89f950ead
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_i686.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a754bb23b18e65bca06157cac9bbae05033734bd7e1a53b3032478388f2136a
|
|
| MD5 |
90215f7a34224c2a322924fb4ab7dde5
|
|
| BLAKE2b-256 |
b850cd6566638b083d66009bf044a8f0d15ef86f4f09c0d9e266e232b183f3ed
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d6bb1c85944615aded988c1c434fed61a2cc86447cdf56de26dea4f0fb4a019
|
|
| MD5 |
67f13fa6f8ceb6b28204c310c91655c6
|
|
| BLAKE2b-256 |
456d901da259a94f6c337313e7c56139a80645eb9d0b1676faf7baf09f63148d
|
File details
Details for the file pluot-0.1.13-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ff34011dc4f8821b5dff1ca45c73c95e060729f8d1220ab572bd5369720445
|
|
| MD5 |
2df3d9e38e58120e53251fc465b676d4
|
|
| BLAKE2b-256 |
1a58cdb911a423a57c1326d681fa4dcc4474c12eeaf6f8332e845ba23dd80b67
|
File details
Details for the file pluot-0.1.13-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2bd77f5c81d459b6dfc4891446364c8b8ac7545d2c6209c58eaa126ae13e56
|
|
| MD5 |
08c02bbe0befea8454f8387a1a1be959
|
|
| BLAKE2b-256 |
ac28fed47f977bdaf50111d5f5b5f45922c70a9996942c7172818ab76bf2a262
|
File details
Details for the file pluot-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluot-0.1.13-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.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b577b957ff3997a4b06312390dc49ae712992a6f7f2080dd1ad070bbba86db74
|
|
| MD5 |
edde284092e128bb7affef781bc6711c
|
|
| BLAKE2b-256 |
53cc209aac5cd7842af472f870b2b5750617803d1ff908ba3ad772636b4655a2
|