Skip to main content

Dependency-light sPlot fits backed by Rust and Ganesh

Project description

splotrs

splotrs fits the yields and shared shape parameters of normalized component probability-density functions, then calculates per-event sWeights. The numerical core is written in Rust and uses Ganesh; the Python API accepts vectorized NumPy callbacks.

The library is intended for unbinned mixture fits where a discriminating variable separates components and the resulting sWeights are used to study another, component-independent variable. It supports signed input event weights and exposes both the sPlot yield covariance and the full joint fit covariance.

Features

  • Joint extended maximum-likelihood fits of component yields and shared PDF shape parameters.
  • Vectorized Python PDF callbacks with runtime validation of their output type and shape.
  • A native Rust API for allocation-conscious fitting without Python.
  • Per-event sWeights in the same row order as the input data.
  • Signed input event weights.
  • Fit diagnostics, uncertainties, and covariance matrices.

Installation

Install the Python package from PyPI:

python -m pip install splotrs

Or add the Rust crate from crates.io:

cargo add splotrs

Python 3.10 or newer is required.

Python quick start

Each component PDF must be callable as pdf(events: NDArray[np.float64], parameters: dict[str, float]) -> NDArray[np.float64]. It receives the complete two-dimensional event array and must return one finite, nonnegative float64 density per event.

from collections.abc import Callable

import numpy as np
from numpy.typing import NDArray

from splotrs import ShapeParameter, splot

Pdf = Callable[
    [NDArray[np.float64], dict[str, float]],
    NDArray[np.float64],
]


def signal(events: NDArray[np.float64], parameters: dict[str, float]) -> NDArray[np.float64]:
    mean = parameters['mean']
    residual = events[:, 0] - mean
    return np.exp(-0.5 * residual**2) / np.sqrt(2.0 * np.pi)


def background(
    events: NDArray[np.float64], _parameters: dict[str, float]
) -> NDArray[np.float64]:
    residual = (events[:, 0] - 2.5) / 0.7
    return np.exp(-0.5 * residual**2) / (0.7 * np.sqrt(2.0 * np.pi))


data = np.array([[-1.2], [-0.3], [0.2], [2.1], [2.8]], dtype=np.float64)
pdfs: list[Pdf] = [signal, background]

result = splot(
    data,
    pdfs,
    shape_parameters=[ShapeParameter('mean', 0.0, -5.0, 5.0)],
)

print(result.yields)
print(result.shape_parameters)
print(result.sweights)  # (n_events, n_components)

shape_parameters are fitted jointly with the yields. Every PDF receives the complete parameter dictionary, so multiple components can share the same parameter.

Inputs

  • data: finite values with shape (n_events, n_features).
  • pdfs: one callable per mixture component, in output-column order.
  • shape_parameters: optional ShapeParameter objects with initial values and bounds.
  • initial_yields: optional nonnegative starting yields, one per PDF.
  • weights: optional signed event weights with shape (n_events,).
  • max_steps and tolerance: optimizer controls.

Result

splot returns an immutable SPlotResult containing:

  • yields and yield_errors;
  • sweights with shape (n_events, n_components);
  • covariance, the event-summed sPlot yield covariance;
  • shape_parameters and shape_errors keyed by parameter name;
  • fit_covariance, the full joint yield-and-shape covariance;
  • convergence status, message, minimum negative log-likelihood, and evaluation counts.

Invalid inputs and callback contracts raise ValueError. Numerical PDF, optimizer, and covariance failures raise SPlotError. Exceptions raised inside a PDF callback are preserved.

Complete example

The included example fits a Gaussian bump over a quadratic background and uses sWeights to recover the component distributions of a control variable:

just examples

It writes the resulting plot to target/examples/bump.png.

Rust usage

Implement ParametricPdf or use compatible closures, then call splot with event rows, PDFs, shape parameters, and an SPlotConfig:

use splotrs::{ParametricPdf, SPlotConfig, ShapeParameter, ShapeParameters, splot};

let data = vec![vec![-1.2], vec![-0.3], vec![0.2], vec![2.1], vec![2.8]];
let signal = |event: &[f64], parameters: &ShapeParameters| {
    let residual = event[0] - parameters["mean"];
    (-0.5 * residual * residual).exp() / std::f64::consts::TAU.sqrt()
};
let background = |event: &[f64], _parameters: &ShapeParameters| {
    let residual = (event[0] - 2.5) / 0.7;
    (-0.5 * residual * residual).exp() / (0.7 * std::f64::consts::TAU.sqrt())
};
let pdfs: [&dyn ParametricPdf; 2] = [&signal, &background];
let shapes = [ShapeParameter::new("mean", 0.0)?.with_bounds(-5.0, 5.0)?];

let result = splot(&data, &pdfs, &shapes, SPlotConfig::default())?;
println!("yields: {:?}", result.yields);
# Ok::<(), splotrs::SPlotError>(())

Statistical assumptions

  • Component PDFs must be normalized over the fitted discriminating variables.
  • Components must be identifiable; linearly dependent PDFs produce a singular covariance error.
  • A variable studied with sWeights should be independent of the discriminating variables within each component.
  • Signed input weights are supported, but some weighted datasets can produce an indefinite or singular information matrix.

Development

Enter the reproducible Nix development shell:

nix develop

The shell supplies Rust, Cargo, Clippy, rustfmt, Python, uv, and Just. It synchronizes the locked Python development environment on entry. Run just to list all recipes; the main workflows are:

just build       # Build the Rust crate and Python distributions
just test        # Run Rust and Python tests
just lint        # Run Clippy, rustfmt, Ruff, ty, and Yamloom checks
just fmt         # Format Rust and Python sources
just examples    # Run the complete plotting example
just clean       # Remove generated build and test artifacts

Without Nix, install uv, Rust, and Just, then run uv sync before using the same recipes.

Before publishing, inspect both artifacts locally:

cargo publish --dry-run
uv build

License

Licensed under either of the following, at your option:

Project details


Download files

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

Source Distribution

splotrs-0.1.2.tar.gz (115.0 kB view details)

Uploaded Source

Built Distributions

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

splotrs-0.1.2-pp311-pypy311_pp73-win_amd64.whl (318.4 kB view details)

Uploaded PyPyWindows x86-64

splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (685.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (717.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (720.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (623.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (506.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

splotrs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (411.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

splotrs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (433.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

splotrs-0.1.2-cp314-cp314t-win_amd64.whl (314.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

splotrs-0.1.2-cp314-cp314t-win32.whl (291.6 kB view details)

Uploaded CPython 3.14tWindows x86

splotrs-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (678.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (709.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

splotrs-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (713.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (616.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (480.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (611.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (497.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (406.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

splotrs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (433.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

splotrs-0.1.2-cp314-cp314-win_arm64.whl (280.6 kB view details)

Uploaded CPython 3.14Windows ARM64

splotrs-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (678.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (711.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

splotrs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (717.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (618.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (501.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

splotrs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (404.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

splotrs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (432.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

splotrs-0.1.2-cp313-cp313-win_arm64.whl (280.7 kB view details)

Uploaded CPython 3.13Windows ARM64

splotrs-0.1.2-cp313-cp313-win_amd64.whl (314.9 kB view details)

Uploaded CPython 3.13Windows x86-64

splotrs-0.1.2-cp313-cp313-win32.whl (292.2 kB view details)

Uploaded CPython 3.13Windows x86

splotrs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (678.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (709.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

splotrs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (714.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (617.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (498.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

splotrs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (402.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

splotrs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (431.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

splotrs-0.1.2-cp312-cp312-win_arm64.whl (280.0 kB view details)

Uploaded CPython 3.12Windows ARM64

splotrs-0.1.2-cp312-cp312-win_amd64.whl (314.5 kB view details)

Uploaded CPython 3.12Windows x86-64

splotrs-0.1.2-cp312-cp312-win32.whl (292.2 kB view details)

Uploaded CPython 3.12Windows x86

splotrs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (677.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (710.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

splotrs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (715.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (616.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (498.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

splotrs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (442.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (402.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

splotrs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (431.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

splotrs-0.1.2-cp311-cp311-win_amd64.whl (317.2 kB view details)

Uploaded CPython 3.11Windows x86-64

splotrs-0.1.2-cp311-cp311-win32.whl (294.3 kB view details)

Uploaded CPython 3.11Windows x86

splotrs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (683.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (715.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

splotrs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (719.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (620.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (504.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

splotrs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (411.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

splotrs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (432.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

splotrs-0.1.2-cp310-cp310-win_amd64.whl (317.7 kB view details)

Uploaded CPython 3.10Windows x86-64

splotrs-0.1.2-cp310-cp310-win32.whl (294.3 kB view details)

Uploaded CPython 3.10Windows x86

splotrs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (683.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

splotrs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (714.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

splotrs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (718.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

splotrs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (623.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

splotrs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

splotrs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

splotrs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (616.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

splotrs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (504.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

splotrs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

splotrs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (411.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

splotrs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (433.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file splotrs-0.1.2.tar.gz.

File metadata

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

File hashes

Hashes for splotrs-0.1.2.tar.gz
Algorithm Hash digest
SHA256 27ee1412563f052f7cbb90f6f0c4b0d0dbdcbe0ea50310fd6dc6f0fe584600cb
MD5 767903758d7f929542a91750d3c37153
BLAKE2b-256 68ec1167b4cfd59573189a9a42574f701d261898b1383b8eb4507ac8e385d812

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 318.4 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8e98c290955092bb431c117cd16161ba3687dc938accc9e33e2cf47fded7738
MD5 07f4298844e6e7a1dcd83d830d82c5eb
BLAKE2b-256 23a1ffc6d743230731032b8d28f1dccb45ba464a5d78c2ca849619fca3065ba6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 685.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b39b9ed1e161b8f2bf1cf55289b7678ddfeea07ea436e4fcda4d194808668bd
MD5 731683f513aea144fabcf737b5c765bd
BLAKE2b-256 9532e22c6d9c5999da5c3d8411db79ed7adf5543ce6798e7f094817b704d31c9

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 717.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34329db179621dbfabb123978275b1fe6da16ed6d1fa7483dc47f20e36e45765
MD5 9cad818f177fc746cfcdc6df2b40e0e0
BLAKE2b-256 f0e30610f6f83b02507ee4e0c45dd02bef86da99f877285c74deb890ca0c2dff

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 720.8 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de5a2234b674b371da1c9d6cd15bd059c8bfd2c136b647f91f432f8ea50cfc78
MD5 b385cefc69cc59226ee2c40e0899210c
BLAKE2b-256 c9b635921a9edd911864ad91e14fd86a383cb4227e5e620c80c3b7e43e4312e4

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 623.9 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76a8fd27d4382514a54449f13b4f90a3990b885a9011cf14ea50b52764fe7e22
MD5 f3023c37509f53f160b5e0da05240aff
BLAKE2b-256 402cc9647e4566f9ee3442dfcbbba765ac5e49fbd6913d1b8a5a12d137248b8b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 486.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14d28bc755763e2c688d146ae071f16482f4077cd67cc91e964deae041e916b0
MD5 2c8e0ac3dea68aa970a3371d6ebf789e
BLAKE2b-256 dec25b1b5c1d555c277a744566e95830c71b0133b0ce7cae5a6cacd6afc1b958

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 484.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de97e5dc4f2a3f2893bf258293977724c36168f9f56519d3a3d17b9e6514fa16
MD5 54beba441adb6b19c4f51d7dcc49c3f9
BLAKE2b-256 8ddf80ebe7ddb9d58ac7800b5356368761e804529d3eed55629f3a4c283c12ce

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 620.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9aef8bc4dcc6a8358d482ade2bad90936e83ee5a296c3ccf8aace286b61a026
MD5 9ccb87d18331f17624aa7ac9478ad96b
BLAKE2b-256 7d1d7385889c76d59b4712ee26185a8b9a0a6db723030f86a23f0fa19c6aa684

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 506.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2821c7a7d4b5b861d8f60a19edd890a9a97ad8bd6a938e320063f444fe42b76
MD5 adbdf925b7d55cea8dafc92d73e76999
BLAKE2b-256 17eb30964f28285bf7b9a4917b54c60943b6754c8eba5e65eca9df72cb5b969b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 446.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55b9f03da1d2d09d61a1c9546bfe0664b5a3be5c06a1dcd1e43fc620356c1040
MD5 41cf832bfdc3d366ab8425e6c5e8942e
BLAKE2b-256 e511800ba175c7cf35f914cbbac0d51264fd4d4e58151f7da7900a1826ed1278

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 447.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 334dfb3cd1eaa3214a27d4fb80751ea02ddf7eb9c36aa5a09f632ce8369258c0
MD5 81632a61f66239fa7a9f359eae4bb9d6
BLAKE2b-256 527347ab4a16432fc480767175b3f178bbc395939b7562fc8a947f1a366c121b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.6 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 683d0100a9edcf092c4a77eca507732c51f80e25b7f4517e34edb354ccba3515
MD5 10c0300d29e05a4e760acfc53eceb377
BLAKE2b-256 239d8afb4f5b48e9a84451612b1467f80979cb47d5473634d09274397ea15bf3

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 433.5 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bef3c9194ace4ce352e8232969f706b44586e4044bf5507a269d52ddc3cadd99
MD5 5f3d180e5b124efa087e982cf5a9bfde
BLAKE2b-256 7ba86d13372eaf65ea4aded5bee65ba1d7f6ae8e9135778f156bebbfcadbaee6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 314.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8ce5859adebfb6a4bddcd4920f4a52b3185283ab255f487fe41261a0335ce1b3
MD5 bb963195cbf18dab59940db54c3fb8c8
BLAKE2b-256 179d18ae72ecc57ee976066ece351f61cc41664c02014f458e0a7548d997ce74

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 291.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 427cf8d5e1ae5e807a8acb821255e11f1a618aadfe9ce49617ef49b224c7e133
MD5 6408e1b0276f3abd066fce2782386bff
BLAKE2b-256 d5c4e6e6e8508dcb2da6bccd78b5f3d6f392cadb2b9239d2a483a819ba4e7810

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50a4ab509928caf1c17fb835d443a2fba4c15817316dcb8950b418f5fd68e517
MD5 c00adb6a3fecf9c4ed2de5e551c1116b
BLAKE2b-256 9514e861778b9ed571791621c466cace1a1284a6aeb25c14d82f8f0126996e12

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92dc269461a72225e2ec2248976a04d72730e1e22b29bef14a073f78fc633db2
MD5 d23399f45a1e1cec8823c28dffe79aad
BLAKE2b-256 9e7417f040059a415a900eb3d82df999547c72022768c6899c1e53dc6d2c62d1

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf8a901edaff62e912f2cf99db120ebc131acd7742eb8839f3e71d4fc4ea82f2
MD5 16e017dfd514cbf52345c2767d15e0db
BLAKE2b-256 e66952504e8ab1b20ee0641298e5e714328eb482880235188ec89be25e8ff072

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e638260ae7c9897d93c8085ec478ff5bf775ba7249364499f40804db799ed01e
MD5 357a4e9df707742e15028ebbd58c42b4
BLAKE2b-256 c18d502554ac365297fd03f0f27dd9d396a1a042bac76c55368cd3d223780b3c

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 480.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb0937650b81184a2849fbb58fb2a332952e5e1cf9923dfdbd9031c28e9c29c9
MD5 d0d6da7d4509804317ecdbac0a474500
BLAKE2b-256 671260c5a81542bc9eb642a24f738f37a20836988d5e27734303c8b57c803beb

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 478.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07ce97a464c6c02e4cab2edc040d18725c0999e23fa97266174172548aac4c8c
MD5 d59ac866964235cd9339b5508f9ca274
BLAKE2b-256 f6d872ee4682cdb831c5c12acc248d0beced2d6681607cb148f016f3df4d9caa

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 611.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad40417e17e107c656fc5534c627006177425dd91db664a06a3f97c26011c08d
MD5 24b661d596d5430ec2f48ae085c56072
BLAKE2b-256 8bf40008ac3e1ec19344b9e1c4d5a1d351fa31848baea81b9931ad6f19a09661

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 497.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abf7cdf291ea517999a69ca408ef4aca387ebcbb2864b6017d5a450e59611eb8
MD5 f928f3d6093ee09f12574771f6faf44a
BLAKE2b-256 b9d4df4cf26954378cad791130d49de0c1360cbeb78d3c9184fe28800bacfba2

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 440.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46ae83eb4b818d29bf62826bb98bf6cc8503de19ce0e386d2b015a26e678e55f
MD5 375ce735d81b8f1ce3e6dbcdc6295217
BLAKE2b-256 ed7a5523f0201b635c2f5b999345ce8737f47d45580e9fcd381fa34bc78148f1

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 440.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40b1052b3c61df9f4f13a02dd0de081179322010f7df39e2735a80cdbdf3d724
MD5 9497c1e5f29acc224411756450dd4f32
BLAKE2b-256 754d115ff91a851c62dcabac8754c9ba9e590ad5b5aa48af90aba8f1bfd383ba

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 406.2 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d3f36d38a5fb27af662bc1b13dc93625f06db4a44c2b2046b16246c6a8c2e6f
MD5 ad2a8a749211710f466b169aa5323890
BLAKE2b-256 77668f74a386e009aa4bd07ef6ef75e68edd968c629fb8f040d94f94ef16f209

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 433.9 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8dccf1c7e3ee3396a57d143eff1bdafcb7c7e2a4f460e5e0a967596401dba7d7
MD5 c021892710729c047c84b2afc9310bc3
BLAKE2b-256 167f3ad6b79c455053c335715cad0cabbada1861ecb58f030fdbe075782e3e13

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 280.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f4eb593af137ce7282d5f4a6a6e324bb54a1b42e2079fe2f307ee56b84a9f756
MD5 9cc28a395b76020a41449890cbcb7fbc
BLAKE2b-256 ae4fd751be5e22d6919359cf8840e368d3bbb6f976b7a47e75faeaf66ac73bf0

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1d784448593482f9eadb55826548d44a437558f88d15269b7dad7432b693550
MD5 0d831c954aa249ab8cb92efe9876f777
BLAKE2b-256 4a04ac956d97510050fca1600a07156c816079f2cb2127746db590ad8078be59

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 711.6 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd0d7bd95469f1f04f86da17ab5012bd3fd28b5af15556d3719e24ba37cd80c5
MD5 e3714034d7817bb5c43e9e67451ae649
BLAKE2b-256 f73b52de7521117fc367061f5e201b4d059f86e38266663dae73ae1d9f5c284f

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 717.3 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd14f65d32c491374ebd6a4f8519d7e348a40df0b61e2eaa4d159d6c6be83d68
MD5 f3d5353ab4c4fcafdca6e983c4b3ee77
BLAKE2b-256 82f4ba57e2e56ed55dba540004d118fc9e03f50d0911c5b603557328ea8f0bf6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 618.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7209b298052e38328962e64a23850476e076e84c5b00ea90bb81d02d170d26a
MD5 918b1e56ae329542dfb4644db30d931e
BLAKE2b-256 54217637303b537cea665031f0c627f790d2a336a9f378ee09579170d599faef

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 480.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 397148fb812570f01a5da2e5f0ff9f83f50cf19ea66ae121b2330323d2068cc5
MD5 55a6caf053add51a3df476e8cb5af07f
BLAKE2b-256 5b5134a23d0fec50c696e7c82939b5d92c7209035906f5acfc6a6be4aaf06740

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 481.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6316493c5a48c7470d32986b16fad80b27d9d073366d6d17db9edbc123d8351b
MD5 c1b6e427b101de611a887c65607ff87c
BLAKE2b-256 5c0d1d0335473af8076dd58eaf3baa04a664401f8931ce71b58569eddd8c98fb

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca35c085211142559a18e642b80afdffe3ba725c34bf22183ab42ffb108413a0
MD5 8c3dad0408832148218e5062d3453979
BLAKE2b-256 189108d86e562b8c1fe74c9ddb1e4c38bd87078aefc40fc7851be637fa20760b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 501.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e2d5b84c6f065f61947045949605a6fc380d282d9c5fee8df80d9206345ab81
MD5 6d4608fe0a2bdba3898d5938f3c12889
BLAKE2b-256 ff025e05e2ade47152bad14124fcf422c41a1b3c480834a256e7fa2213052a89

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 443.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43b03431a7cc69051ecb22ac8155a8656879ee1ce7d1b075e6cdf41abfe43c78
MD5 6ce411b29762e276f63a87d3f42353dc
BLAKE2b-256 117f0fe662273a954b07de424432c4bea68997a855d5aa13ca39adb33b22bb97

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 442.1 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0701d4122c13329302a68d84641ebc987792ac6cd0bfeb6e8738ddd310d6df1
MD5 92b2f35ad74d4951f971a9ef7733c52b
BLAKE2b-256 37d1432446c8ae173fb3a7bd1d00c3fdb3bc1d3e11931b7edf908aeb31c624c8

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 404.0 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f518958097a97a5271027bd0f243178656a7f4fa3ccd658f51a86d1b58c9aca
MD5 14882022ce5d1251867089a18ab29feb
BLAKE2b-256 58cc1902b94c9b2f6ef3dd76bd226dc59513339a1253fbda6456c57a2a9f6559

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 432.8 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0821bda1ab48aa3b3617a29fed3b6ddbe335008def1104447a9245b0f842eb92
MD5 8297a74531a1285b6b02f7d14235166b
BLAKE2b-256 b15039460af16cca60d89ba073e9a608b588403841b93b5511dd58246b5c9bcc

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 280.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ed3ef5a257886e0a61670fcabe8a504f5ce300f91763cd7dde597aaae544cf0
MD5 8ab467df729be2344d9dfa1c9dc81951
BLAKE2b-256 90ec5aa409005d84f2a6900c58e23d5bda7abf6c62c5980a38cc3570147f71a2

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 314.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 07d86eb13000a277f1876fdc046fb5edbfcc71236c4af6e977ecc1a48a75f56f
MD5 e6e2bb56badf5da744f6e8b0234bd7b8
BLAKE2b-256 6a2181950595d6560a44d545fb1462b38071378b858e644279c55334ec707d48

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 292.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c1d82f8ccd7c5ae51fe5223b87eedddce287de1eeac2c1a243011b88248fc505
MD5 297812894e7f58df276c150011437f2e
BLAKE2b-256 21828e3398fd393e6b0cf21029e52d460a9ff0506e0a0192a5417cd67a6fb21d

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 374535846eea4b078917714acc24d31eb79224a4c39b491e0590f7869605ec13
MD5 b05b2f637c4f2d82f12248144511f2df
BLAKE2b-256 094d0a8e9da3602991772d0f7e7352d4890a2c03047fd6fad60bdeeb4eda880a

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 709.5 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd0989fdac00f2e20a3ee1ae7298d7edfd38e416a547474b61f134def39a56e2
MD5 93a4b069ef7efa806a2909c7125d5929
BLAKE2b-256 f12b78b2b4345916b71fa3a2b49dcbd589f5c501dfbd5b6ba2067a1455d3a071

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 714.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9edf0e3c1310e1712325a15cb6f3f124a124040942af79f814fe195c0977c75f
MD5 5e5b33b4af0def7407ddb57339b04325
BLAKE2b-256 6e23cd1d27d091160bf1ff4ba30e8b2689dcc3757af6357c4d22d4b3bf63b8e6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 617.3 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2459d377ede64fab58575b25bcc8f842747a4ce08c03c25193620b73e015a3cb
MD5 d8cc09275e40fcb7f4347e0e519e4159
BLAKE2b-256 2dda620ac0fed2d78feaf73b61eb3e3a80cabea870879a8bd5d9cf38ee9104c5

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 479.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 589ca6aee099f25a187f0f03aa0fb4ff2db859d54dd2cf936f31b6494f747fb8
MD5 49811baaf07bae1ab6cfd631f00f12a8
BLAKE2b-256 cd4ff4bfbcff382d8287a72174e1e8f8bc4752f53658c7a44c5389ed5e64c579

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fea4c80002c0f76b5ef4fa5f42ce86d1d067bf42a937782906237ac756c144f
MD5 cb4b33fce54bc3e0a657075fe27c7fb4
BLAKE2b-256 c38e183954dd7a0c51a5cb3bab9919396e10ca7e7a266d0ac1c028e7728c5d81

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5678144e4127da87ccb31855200a3b1f36df666f8ab17ccad60b2ea94456ec4a
MD5 dbbbd17108fa5704c7bdeb1c6b60ac04
BLAKE2b-256 7edf58602b0bc72f0d591d7aff75a6f6adda5636055c904a9dab2cffb9b25822

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 498.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d858c847278147d3151431ab814ac6e43e7a9e9ce3a86f623b36987a098d038
MD5 18bd3ec525c369b9eb76787189dedee4
BLAKE2b-256 e3c4815cbc034c561f695a035e1394bb266b5937b3af0ab5e8a5b80d653bc66a

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 441.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 504190b8758cf328a70d3f40af3fc384f4743ed85bf6b6e21a3e1c3e9240862c
MD5 f734b69eee31102d9571333c004ad8f5
BLAKE2b-256 66f330b85c9238365e1eab3fd70e157cc073846709f562daaca3f4c4000ad620

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 441.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a17e386ca4956cbabcfeab24d44374ed7c7f1c1ddce0ebc332c201f85c250bd
MD5 3a45d35fa933e515cfcca8bdbc923957
BLAKE2b-256 a79ad9b9d386bed2092a11a774624242d1c0b559a2e7826418b24dc48108ac79

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 402.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6d30e003fa097cf9e2e12ac6e654c17348874812f540a7f6fe6b6456f1908a0
MD5 e20a5f2e92ea07dc103444d325dc7509
BLAKE2b-256 89d718e01f329ba9e4795a2f710ffffdbb3ee585296522f0bb2ab3543134b84b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.8 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9662e45a99f0079b8e1743576e03eddb6919963f16d829b0e261564aa1b81a4
MD5 c250d86c8103c5086a9a4fa28e4e81e5
BLAKE2b-256 404e280e0628d29b6f294f53c323083eece6d0182bea06d0c57b483ae2aa04d2

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 280.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5da254d048db24316ad2ed60acee930ff84fcb1194a901237382963f28b4a177
MD5 7c88fd174260db0510ba9a8df9f0d5a0
BLAKE2b-256 9f8fd9a9bb6bb204b2faa423e4a46e2ab38bbae9bd039c3043f06f229a31c5e0

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 314.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1fe930361bf5b7c46aa6e0fddaeda3a750f0516ad47b33121e56659c461f3289
MD5 d06551ddebe4b38df7060b4045a4a8bd
BLAKE2b-256 b4d86b7e6109afd2b84434e5fadb0ac2e729ef914ced11599f826c1595e7ebf6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 292.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bb49563beeb653ea19f2cce8c9a25cecfc1327b8a17265b9f953f5f0e624ae95
MD5 d8a384ff4638e2aafaa92f8c6c131e07
BLAKE2b-256 dd8f04ae7aff021c60e0d7110fa3ea3f9c39971244b88a7f5bfe5fe0b1c88ecc

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd11b728203e566945769b698f4ecd8c0824ff0765c55e95ae70d63f57fe6136
MD5 04675c986836a5220a7c8653be049f01
BLAKE2b-256 1757bb5b8ab7e31836ed069a3eae937850a507e104e76398a65e484e27edc5a8

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 710.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5b8d991246a201f4389c45880485c63ca0d3ecd9b3f33e4cc51fd6add35f4ad
MD5 98ea44482182996fdb1a7c23bbeadb3c
BLAKE2b-256 85100128b7e79fc32489edc0eb2a5a455b62adae39a78f4b4e2f90a1d53bf05c

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 715.3 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ecf408e3afc7d465d278888bbee10b32214892bc1655ef930d1b7fa89209ca23
MD5 dff24f6e0bc9d166ab7d22d454e70116
BLAKE2b-256 47bca39e8ffc22a127ee8b1fe92f2106bc2f924c4a306c7a894309dddb9bbd2f

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 616.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ec07f82e25297b65b874800ca9d98815a7eb47841a743bb1daeaccef365efde
MD5 ff94f59eee4abb83f344caa2981cbb30
BLAKE2b-256 a7f66a2940aa4c0dff3a96b739f158b296729afe11e8314a472a96123ca1ad8f

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ed661a921d1bb77edef68137f802ee32b10468a3fdd18c646aae7a6ee3468f
MD5 d3e218f56f77d9247d750eb36c7a2b83
BLAKE2b-256 2404512cf5c64f3ee6e39c9d6e653a19d91cbe3cf49408ea89b91a6b20af5f23

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 478.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62ab5057a9c0f3d94377a2ba5fd228c358d5b270e49206a1c5677e1f9d772861
MD5 3d0bbe39117bce44a66de06a82325005
BLAKE2b-256 302e9969089eb38bdbe7297253ae67393beb88d2e246668109324ac7e2ed1049

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f332fc8e02b65d620e742ed0acdacbc52822c29f803f439a217258c7cf09a26
MD5 650e8da09b374b10fbf49bb7690a87f4
BLAKE2b-256 5943a91045caa0c25b419c14b778386a53a8c6dac5175865da7b44eb5d80dc5e

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 498.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d50a204711c86244ab5cb90af21278105429b65a092baa4c10add0c265c956ed
MD5 232b0cf1c009874b10b5da4f8bae9cff
BLAKE2b-256 16630123117789a59d68ba16d7412dfaebc8796afb77e8c89631a5ef9253ba7a

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 442.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50e4e022780cc283868f8339b027eeaac2a28a3cd5433e52e735b293119746af
MD5 eb5d24a7a954710b16d13e17a1d5cfd2
BLAKE2b-256 49fc3b8b1922669804d2cdbcea18271f8cd8785bb25cc2d626b6aca5b1464d92

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 441.1 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce7c6533e82374d3cd574e3f27ba785bc6e601842467bac563dda68550323ca9
MD5 64cf9939f3330d175ed4637ae1e4b2f8
BLAKE2b-256 52a17486557ce1cba001ddbb737935a77ba9559c4a016c554210605d2571241b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 402.2 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2956581893691b22bab6f4d7488bd6a30ead9c3e34b9ce7e26052d4f425d2882
MD5 93d53f8ed90b3bc66ff39c2bfcd9753b
BLAKE2b-256 bb26cfa60f32f78804beb166e2aa27ae63a83f53d654469172226f2b2f814e48

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.7 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d975ce7ef850dc5b65542fe6da5c9ae0e0db060d3d7d583db14516b26a637d58
MD5 3dce86d49fa2e8bced3fff11bb7e6d2f
BLAKE2b-256 ff65e798623a1f434d58bc4ed7ab74d49dfd400dce84370f1328ba267870d012

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 317.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e2169637afa4e2deb655acbf160b55dfac68d0366ba8057811f82e8740b2f8d
MD5 b027a2da1ad67b73ff02875e8c7bffb8
BLAKE2b-256 3ab220758cfdd4b98462b448e752450547135bacf597dd2c57939767328164f2

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 294.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c2ac4f13c0d5b82d6f77d1dfc3c7222a1d9b28e6c19b7aa8435422692f91436c
MD5 9b626bb234b421f8a2540cfffb2d09df
BLAKE2b-256 02eb5fe7b3124a7f1a4b0c5e16c2bfb0af761caa850985cdeb59e0fb5e2e35ea

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 683.0 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34b8b138a5b5ab5dbfed19798ba81bbd39c08fc75485870fa55c44b26fe18ad6
MD5 7e8409dcae2f3b87e1b65024b0007612
BLAKE2b-256 a7076530acb2167481fa54aae12bfdc2a8bfac79e553ea52bc7a76eac39a63b5

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 715.3 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6cd87d2d683fa256c900aef63e25e477cc9ed8eea05110e0ff1a14cc82a4b07
MD5 4bf17d5149a2d729adca8988ad3b7ebf
BLAKE2b-256 685d70925062ce3ef43eddbcb13ad865a50bbea7a31e0c7a3e2857140ca256bb

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 719.3 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 903e8ba4da6e5b28c7f94129a83aba2c1abfbdae6dd412e05de16b10753f1b51
MD5 6ad0b582dcc40a82ff016a7fa620566e
BLAKE2b-256 7f2544e26e3de57f6e95c12702f4bc76a67f3f943eb193ead12767333058b1ed

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 620.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b742e1ab9eb2b65cee01055a0fc23d754654a1b3ea9e7bca202cf56251f824c5
MD5 e61cc4ba676bf6a26e751fd1e7f9691c
BLAKE2b-256 eaafe04413f54367365bd405fac708aa7f77004a81d2eff009241de3f6433827

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 482.7 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ca7996890f67d35f5e290c205a289ffc304aaa02d4d1a0e0d1a8989a7faae7e
MD5 702cec67ed64ec0a505f5d46bc4d12a5
BLAKE2b-256 1cd93b14367c58fda9c02895f12354e63ee2569c161e6e628548a5163f4bb1e5

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 481.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a263527b063e602169b2c550d6bd366523f69f37ad9898de74ab7b7d2e341225
MD5 436261244c915aa2b9034789580653ab
BLAKE2b-256 bf429586aaf4f41a24c1918ee657e93c6a1c3a51096b762f01a50a2339509101

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 615.8 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed401c3af0fc564ce54d03900322a35ae80d3dc3645d3a14c714082430ea36e2
MD5 00bdea17ff349795e4866e965e544c3a
BLAKE2b-256 ae79d9fcbe8e1c48d48b8ae18a2365bb93dbcde421efdd5013b71444ee190d2d

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 504.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe2738bf1114bd7787bd4d0773911ca754f12203bd8f6537b2862b19695c616d
MD5 2088a0028867c8a6a73dc0d8a288c502
BLAKE2b-256 08a2b707c53142f8a0a016ad9ff1903ed87266f84625cd5e099c910d35adac80

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 444.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83d7a47a5e4efbda00c61ba7bba3991a46df0e030d97b324fc4e71836a48af30
MD5 d1004f315dd54df196c0d7c31bf687e3
BLAKE2b-256 928f6d8b7c8a147bd6531ee7758ed01af02b27e4a1dd58c33c62146667331171

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 444.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f8fb2ba2e9709fa225f85c9419c6fa45e2e5559eac194e32a1a7c1b3728ce56
MD5 f55c6e3117729cbdf0192ef59b512e67
BLAKE2b-256 1b2b875d8a80e569cfb85f63c9f88c04f697057c3c614f012e74546bb37e921e

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.3 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33e02e5b0e71eadae994db57422025d7919f49fb87fd9665bca2de338b446563
MD5 b63d690ac8aed0a1101a4c54430821cc
BLAKE2b-256 f9c50ff24274d7e7b8d528e9975651e788036242a5adf867b56beb9f2c6540a5

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 432.6 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69ce180ef54aea5fe1adaadaaf20816a3437e2a10df23568a35c7e2f354a638c
MD5 5ded83c30c6fcf838376d7b7a3dbc3fa
BLAKE2b-256 e2d6db067d7faa7c620a32bc83e5999292a198ad2737aa7f058abe3770aac071

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 317.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d435f6befd039bb722ae56d9dad17d42580e3402425fd0c2456f9bc10fa14b1e
MD5 a4a671cc5daa431645236f44dab4853d
BLAKE2b-256 4ca70d77556f61169c892e91236e38f302236e7546d69e7c75028bb28bdbbd19

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 294.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9dff4d42d0ddd856da1ca3cefbfa9ff6b56580f05f68c31cf9bfa92db82c6e34
MD5 a3400ec2a47b3273bc9ed4285ca532f4
BLAKE2b-256 aa82b0273f72734020d744ab7dae6f2297dc21017ad661b576e127c3311ac832

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 683.9 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4cac095667f8e4b42d60a727ee2cbdeac1574eace27829415263665a8cce196
MD5 1db2299511534dc030cf76f2a558a6c7
BLAKE2b-256 336d6ce5f5e5263feeed232c8adab5b029a3bb55702f0175f30cd98febc95371

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 714.9 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2fec3413ee54ff4068901a1daf1235387d0e43c4b856970dbc198d365a1e874
MD5 f58bc9507a083ef1c5728314e754416b
BLAKE2b-256 943fb829aa4c5f49a3f46ccfc86de563e427e5645c22850a1e69bbc612ee4a0b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 718.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 460f60a312d8cb596d358ae616c0cc335ebc718f017d7ee656b19fd6154d73e0
MD5 f6c8aa67a12fedd170110ae4b23fb347
BLAKE2b-256 f35eae003f582687d3773c1cdf660ed958cca9bfe08e36357fc5ac0eac0c2d5b

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 623.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44c3bb4ababc57208131904c5d3fab62f42b48aa52d4f2ae9897d4b1e7dbfeba
MD5 bfab6e317f477858f1ff1112a06de370
BLAKE2b-256 f146e6cfe885e49db068500f69d291b2d146e87d39091a1703376d473b1c3bfb

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 484.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1973e28f1fbd2befb45e628a97e5545298fcf4b55ceacea43ad7b85334cae8e
MD5 5cb8f348b90c3be0f5ee5725d89df58b
BLAKE2b-256 aba38d314c2c1557269f451ec5f56eaf99b8d451908556961e06a4619eaf9075

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 482.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c2e723f146eabacccee7215fca4d8bc43748adf2822f9dc0e0fc23283482a92
MD5 016eeadd29c1a6724bd99f3767710f8f
BLAKE2b-256 71e427aff29e33255a74b2ba4730b0883509832d89d04d0936c6a21307fa31b6

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 616.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14abcd4daf7e62585a79bce1fe98f0c39ead552cd9aca345efcae141642e1c89
MD5 4366fe715e40bf84f02ba5eb6bf04685
BLAKE2b-256 28142216fe3cd21e0fa63724ac8c7ed51955e477cf658985f931c9e98ea665e2

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 504.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66f13521920c88d660c0e234be9b0d653e995c50fb3fb8bc4d6a0dfa1b633541
MD5 0c82b9bdf0984d4575e083a219a56376
BLAKE2b-256 f51bef07e5788e6955c8a49a6245043d998e3c2d8bcf489b69896152d832b0c8

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 444.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 908a744f90860b48a6f7908fb271a45648817be02f9aa72c439d639472689d95
MD5 a3608022e349cdfc089628a7aa555122
BLAKE2b-256 51605d094abb227c435a82c6642a8b0f18689751dce81240836f965e5a78b9da

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 446.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20d90732af53a847f219445b9f58265e9b63adca376cdee13857704258cac7e1
MD5 af020274c7b8cf8e0853311a4022773c
BLAKE2b-256 684f73c15366e5b3afd7f51eec52ba3348ab66958bdd43048867d90c51bb5df5

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3ffb3c9617aab5a5d6bab66f05b343aea2ccc39df9f0729412de1094b0acc66
MD5 738836f4a6c554772de01a5a4688c3ac
BLAKE2b-256 d6442cf9dbe8bf3650f79599943fc38e79c21b01db99382f117403c6375da2c8

See more details on using hashes here.

File details

Details for the file splotrs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: splotrs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 433.4 kB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for splotrs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7316f2eb577fdde99904d5a90b523191f433f91435bac93b3059e2ea23b6641b
MD5 e58bad5bb3d8c191e9248d0dfddff5fb
BLAKE2b-256 828607ae59fc326a91ca045e2c0b737f2b9c74dd75d073c8d6331d0dc2030eab

See more details on using hashes here.

Supported by

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