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.1.tar.gz (114.9 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.1-pp311-pypy311_pp73-win_amd64.whl (315.9 kB view details)

Uploaded PyPyWindows x86-64

splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (682.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (714.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (718.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (621.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (618.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (504.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

splotrs-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (409.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

splotrs-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (431.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

splotrs-0.1.1-cp314-cp314t-win_amd64.whl (311.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

splotrs-0.1.1-cp314-cp314t-win32.whl (289.1 kB view details)

Uploaded CPython 3.14tWindows x86

splotrs-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (676.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

splotrs-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (706.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

splotrs-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (710.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (613.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (609.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (494.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (437.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (403.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

splotrs-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (431.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

splotrs-0.1.1-cp314-cp314-win_arm64.whl (278.1 kB view details)

Uploaded CPython 3.14Windows ARM64

splotrs-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (676.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

splotrs-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (715.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (615.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (611.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (498.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

splotrs-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (401.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

splotrs-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

splotrs-0.1.1-cp313-cp313-win_arm64.whl (278.2 kB view details)

Uploaded CPython 3.13Windows ARM64

splotrs-0.1.1-cp313-cp313-win_amd64.whl (312.4 kB view details)

Uploaded CPython 3.13Windows x86-64

splotrs-0.1.1-cp313-cp313-win32.whl (289.7 kB view details)

Uploaded CPython 3.13Windows x86

splotrs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (675.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

splotrs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (707.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

splotrs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (712.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (614.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (477.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (610.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (495.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

splotrs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (439.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (399.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

splotrs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (429.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

splotrs-0.1.1-cp312-cp312-win_arm64.whl (277.4 kB view details)

Uploaded CPython 3.12Windows ARM64

splotrs-0.1.1-cp312-cp312-win_amd64.whl (312.0 kB view details)

Uploaded CPython 3.12Windows x86-64

splotrs-0.1.1-cp312-cp312-win32.whl (289.7 kB view details)

Uploaded CPython 3.12Windows x86

splotrs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (674.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

splotrs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (707.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

splotrs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (712.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (476.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (610.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (496.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

splotrs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (439.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

splotrs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (429.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

splotrs-0.1.1-cp311-cp311-win_amd64.whl (314.7 kB view details)

Uploaded CPython 3.11Windows x86-64

splotrs-0.1.1-cp311-cp311-win32.whl (291.8 kB view details)

Uploaded CPython 3.11Windows x86

splotrs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (680.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

splotrs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (712.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

splotrs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (716.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (618.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (501.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

splotrs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (408.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

splotrs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (430.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

splotrs-0.1.1-cp310-cp310-win_amd64.whl (315.2 kB view details)

Uploaded CPython 3.10Windows x86-64

splotrs-0.1.1-cp310-cp310-win32.whl (291.8 kB view details)

Uploaded CPython 3.10Windows x86

splotrs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (681.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

splotrs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (712.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

splotrs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (716.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

splotrs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (620.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

splotrs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

splotrs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

splotrs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

splotrs-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (502.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

splotrs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (442.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

splotrs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (409.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

splotrs-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (430.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: splotrs-0.1.1.tar.gz
  • Upload date:
  • Size: 114.9 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.1.tar.gz
Algorithm Hash digest
SHA256 e98e802da67c6c9b92c68d32f9b0681148b23fc9842985943098ead412ee6e3f
MD5 4cb53b72606e424856b191a303b3c814
BLAKE2b-256 a3450fc9cdac6d2309e1bff396aba28147a704a5801d4d2a95c8cd60154dc64e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 315.9 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.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fec1a0e44a09b0826a74eb2c55affec3d27285b60fdebebfa84647d3d6b99807
MD5 b60ddb6f012c502dfd89b7c298dc4cf5
BLAKE2b-256 7833653f7bace69d856a6896b43e07bb77cb1b0b4136f0af9a7902a7b5511d53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 682.8 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 177ee97b16f9afa7788cf8c0040eed62915f901b62ae79d7599d37a3f5d4c47e
MD5 5cc3f0afb56ce611b9f3cd4b600c3677
BLAKE2b-256 f0fc1e5940af1676522732fbb225f5059d20002614486c564ed9dc308d821ff9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 714.4 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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c471df35b998e90d639997d90b3fc9ee31dd58a9a25070b958ac8c666afea44
MD5 d36a35cd9c65b0a2b58215a678533790
BLAKE2b-256 0a8b472654caaaba7682ae0efd0c58fc615e78ec93f5add0eca68dc5281f00ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 718.4 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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fae0ad5fb1576cbcfebf993a337ca1bc6e544276993423a4c5c667e2040a089e
MD5 3d7a595ed38ef4a60ceaf650541577e6
BLAKE2b-256 27be340fa183844d6c839cb258bc015f298869afa4d3e3c328d03ac5ffbc4d8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 621.4 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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fd59247cd21c8d8fee5809bd84bc6e8fa761d478c5043dc300a6a41c3ef3521
MD5 e45b0c5fad7fa25bceb1e1a6eb672e14
BLAKE2b-256 dbe00cc0a1085d36003ba841ac077d3e4aa8e1258ad8ddc7773dbdf48ea6787f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 484.0 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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb2184d48447fe2a401f5b2b72b7765999eb05e80a5e3f2d21d87ad12d93170a
MD5 01f888f5329d049ca38b45a5d2838d03
BLAKE2b-256 de28a4d620d9d3f4f92eb2fd643b98463b57b8ab1964700bc83bdba82763599d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 481.8 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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e5a693706d2257f5100ca23129b6e886118465e6553347243dcec42ae7dbc5a
MD5 c99716b6e9699198459e8c119bb73662
BLAKE2b-256 3e7d58d679ce2c500f33d8e7e6a63de20e8447b1cca84e0f35cb6e0d11fc43b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 618.2 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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4b436262a4831cb8b7f1e1f37189ad33b52fbfa4107f21f9f24de13572696df
MD5 52ccfe53a8ff0e22f6dc1d74f6023050
BLAKE2b-256 15750f93150808341210c3f6294e08432a655c419f689b2aff26fb440f12922e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 504.2 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.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f8afad9bdc2a35589e59102c4f4aa806858214fe9d8efc3c8b557770917ce10
MD5 7ffef015212d9d02abb94cae1cf048ff
BLAKE2b-256 1fb1d64b8bde8fcd913f008e2948f5b7213ab4a7be0b9398a8e0b3755c9aa04a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 443.7 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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a1e8aa93511f058ce9433ec583b3c1728a2aa7053146da6cb85aa3d7ed36d51
MD5 2c31f017d6d764d27ad552e0a6819753
BLAKE2b-256 6d9bbfc952f27b1f92eab5ec06b06e4e06433d4dfb3b422e0a7aee86bffcabdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 444.8 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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a16aa887fd0a9f50dd74b0ebe35e8d96fac5261bc4b34bb8b85cc00c989f80a2
MD5 042011838e16615e29700a4eeab6dfd2
BLAKE2b-256 374d679d40d797cb993b0bd147c7c15d57d6e276018a3c506e04b6a8c5bbe5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 409.1 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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0580f09883a2ab95eb4837afdfac8f5760a412f155c3c040892ff3d19b5103de
MD5 d607e0d47ff86dd573d760cd2a882f59
BLAKE2b-256 3a3abfab0714508f4a1dd7a0b6d3fe2af2b3ab6ddad608c2016344d37b1befd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.0 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.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08edaf2040dd15cb60b38d0d1af7f4fcc5da402d74dcfc8200bec7b92c24956d
MD5 17ecb3e93e9876c5121a2438eb2c3c65
BLAKE2b-256 9cf5e3f88f2b353cb2432fcba39c9ca4e7a83f7e3c8d5d63a44116b43255e108

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 311.6 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 527f088ae02f7a8bf9422f56977f71b4e9bd10c4a0e7d2e444befedd2634f27e
MD5 10df8a5e66b58253d4b77d8fcb829c54
BLAKE2b-256 3380c16fb45730dc14518a48e4642540ceb9cf58dad3c3e246bcc9624da0b8e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 289.1 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 269e59325f196cbc2538774f5a3d3a6dd882ef3c9cc992c5dc2ea8f7c7dfe28f
MD5 6130fe75380447e4443e9c65e3508a8b
BLAKE2b-256 2c4dac16a1d0d8d085db4fa69d945b6486ad8139590e0ec6cfad5494e84711b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 676.2 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.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2b8541cc4c75c45674f945af2e38a6e7c661679fb8b8c38a25a92275ba833dc
MD5 692fe9062cd4d41c606c0a20d2264c29
BLAKE2b-256 befaab87f6d63ead7b7ec499b70ef1df79ee3a2445934f8aabac025c2d142569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 706.3 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.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5315de92814621aec8cb1a66f668f3758b70d3baf4f8d1c8a00403b44deaff87
MD5 87aa767e30956f0208ba3f7de808eef6
BLAKE2b-256 edad2d59953155f6efecbf79ed39c91c0c89abc69548d40af2c3d7668c7bc2fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 710.9 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.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fabde2c458df28042a8e5e35cbeec0717dc39ff4ee795a9360432aac56c5c9b7
MD5 346d8f7ffd44b72e5fb64be5aebb27f7
BLAKE2b-256 7acfe78208b86fd3407fef55ffb4522ed194c992733415bd5bb4bb2681d4717c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 613.5 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.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 544132f3a2d32690398a43e6f785e70f4e847653ebec26cc36aa30307f2e2f8d
MD5 eb87f7dcf71fd9630699066ae2acb93d
BLAKE2b-256 2a787ec394a30f9d62baa3110aaeb4eb2eaab672b99f2cca317824eb2e5c6aa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.9 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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ced99fe8e6a01cc5c044894fc241259c57430cbeeab6d5103509feec38e169d6
MD5 416925cfdfa00ee47aab1c2ee0e8de27
BLAKE2b-256 fa4ebbd925838a21dc055231e328050045d2cb6045bbf662b7b61d4049a5d875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 476.7 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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22870fb44e88d13e4cc4e0165bc7afc462a92b396a5957dc42dba3f43e420072
MD5 dffdbda9400a8c93725dbf848050a507
BLAKE2b-256 fa5b67d0d6b1bcd3168ef0d09ff6369765dde6211d5eb4f92a53764386bd0abe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 609.1 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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04ac33af3b5512e46ec44624d6bd7da54dbac3fe22ce41427e97a905d29c97a7
MD5 8627717786e4eef3a56e9b5889b9545f
BLAKE2b-256 68de2d5a3bcfcb2a776b25b26e35384162b54ccc03098ba2afa797d5a6ef48a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 494.9 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.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95e9cef5cdea18e2caf3270fd13ed84ca284ee6e51c7413cff94791feed5fd86
MD5 749c7c8e780f6b158ea15ea07c24ad19
BLAKE2b-256 f2921aa9e936f3f6b7f30fc196d3cee850e5f80e04b53f556164ef01c3d9fda7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 437.1 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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c32931496c733a6f788020c50c8ac295abdca636841a0f8969716951dc32a6cc
MD5 0b00fa66c071f602691e291442e87be4
BLAKE2b-256 3fba1a9ebd1d1013dda55718cc7d69072dbe2c269c9527127c6c752ec6a3fe52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 437.5 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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d20ddfa9576fd97157012122e94fb866a65a17151ebefd84a8de8b0499215afd
MD5 34a6bcb5ae9ce098b8b8a00753b79169
BLAKE2b-256 af8f7ca88c1e23532f423dbe9e8f0f08f61354459fe6426cebb1d287e1cdc51f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 403.7 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.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e3dd41fa65092740d33c856b2c608918dd56a7ae9d73989236fe9728ccb0de1
MD5 f5d62d363527e8997756d4c4da0e7ca7
BLAKE2b-256 63a63abd648d77c4e451a2576fe5fcb1346dbc96c8ca82f066db9826c7cd84d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.4 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.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c587ee4b4d17032959136797801d059180ee73dd3e7ff2e6a366f6328399a54e
MD5 32b0e49678a4e303285b714f296dc8ce
BLAKE2b-256 f500f1e8cc15a129e230c7e7a041aa4f993423161b8ec99c443318b0c0a31d6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 278.1 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 63094f33a69e2741444ddabe46043f333ea875d4d125061267b0a17af8b7e8e3
MD5 4ae32d8c0d9b9d62021e1b75014f4a70
BLAKE2b-256 b01953f28c83c860dc073b93474bf26848dc40572a6c20a87548f7d8414915df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 676.6 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.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd945d791f04a2fa1b1ae24d6a7c882b799fabee7929e0477e4c50719839145
MD5 4496fe4a2a03e8dd9fbb072129763e34
BLAKE2b-256 b3324ab9acd644622cce660b5a97e43c477218b44fea0b17f981289a726c51f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 709.0 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.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a11d615563dfd5d9a44c54c861ad0fe376f0f02108bf970c6d6a2dd67c43120c
MD5 f67efe3971505f59d18c44b3e29e9f2a
BLAKE2b-256 ad274609df729be6c5604f4a438e7878b72c09a4dec3b440dcb3c3198737a357

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 715.1 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.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0f66eacbd35b63ab1f847fe6cac176c6f00e3b20f5adccf5158554d10cf49ac
MD5 5ababcb0277e7e2cbfad5271b9973beb
BLAKE2b-256 17522b5188c32716194b06da3b6da4b0767c01e63ec1eb58651a8866af78ff35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 615.9 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.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e921a6bed77de19d58dc3e5dcc00ba7d6f560379923d03924959defb8331c98
MD5 a1a52e7966c48694dd109c34720117a6
BLAKE2b-256 4223e1b4085cae56ee735b7d2bd1bcd3b5836992c2f1d8c6826fbb101e19c3a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 477.7 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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 713b31e80d5d3add93c6ec0d438e1317b36c411ad7294b3b0fa34e49761c7414
MD5 5fb877fd57c498b0bce977373fd4838b
BLAKE2b-256 13753001ad8deb90f9cc1c45b1d4fcc20d57db268d828618f0049d94fa6caaa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.3 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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a697adb3fb8d7ef528d55c02cac8697bf1ba06694ec721213dcf4ff55842c83
MD5 76b6a226cd5a2a82ec009d2513417966
BLAKE2b-256 4cfbaedd32949a11f1f5f882c80949f15ec00d6af1d72d606e5c644720cd42f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 611.2 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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae09c4c495a3129f5ce6c251e2d5484f69a7fc8d852c9ce351402a4027303c17
MD5 55f016d446e9eceb41fe72cdd28cabdd
BLAKE2b-256 f35dfb0e16e92609190dd2ecb1e04844a2e4ce963b87bea3b8f03b4c3dac1a34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 498.6 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.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 118c92dbec00556c13f36279d7cf8657aef430e3eb6c56b777a4e1d892c04f0e
MD5 001962bb184075d6a3012cb05e1cc0a3
BLAKE2b-256 c677feaaffd0138b0b14da700bb322f416c3818dfc6a71daf1f82e9477979d81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 441.0 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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44d154009c0a24392aa4419f41fe90fbd3961d3696745be1b13f7c0802077e69
MD5 817f1cb872ffcc4c5ca04f6041577d9d
BLAKE2b-256 a16d528f7b278b70065db7d0efb3457d9a70c1365d6f02f1a0753c968627305c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 439.4 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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56e7d258f45204e004d9847e9af803ecb6eb4fcc950c2de90b35cce6f2550039
MD5 5c3949b128e8b022e5e6fdd77c9c63b3
BLAKE2b-256 cab06b74ff2b525dde56d93d17c3df0789eb252cc567d492146a183c8a440695

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 401.5 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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf7067a5fc09311d1dc47095a242985462fa0eeda6432ce9485b3d8e036abc9e
MD5 8c844e4e517166e8517d3fdf0c76138e
BLAKE2b-256 7dac3e9714ce047f5291eac71edff7cb14abf81dc53027045fef548eac1934b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 430.3 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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d391c4b579ae9994f8d0474bfed95b97a94d3e1e55890a75ac2e01e4d609371
MD5 89e34fa0371d8237325fe1c639a19445
BLAKE2b-256 db260fbc673023bf766aec971c55443ea8cb48bd604204b75c364a4dd075756e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 278.2 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b9bdd2bf5afb50ab91c5000349a16491f709b0de732a7b094bc14c0bf63e453
MD5 20996bb9119d09ddd36d016dfc7e454f
BLAKE2b-256 bf5676eb4cc9c4806bdcd1f679757481f68b1916cb37a499e993a303d3329306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 312.4 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e24d76f1283ece5696380f9e2a3c25eb2e5870ef4d641b3e72714dc7e08a5d32
MD5 3aa9b3eccf4aab1f8afb8dc925b52766
BLAKE2b-256 6d061e158c9060212de84888bab01f2efdb58771cb54246d99d3810f59c28779

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 289.7 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 45fae29cd3a1e1478a9e2a458cd18b7e63f15537476b9358ca26b106f57e56d7
MD5 4ba19d088411a2d104402704f407a207
BLAKE2b-256 091de12107a3cbc2b23bc1fdcde943b7fcf5c1011f171b5f4b2734907aad73ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 675.9 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.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad392b279915e35aa0b357cc29580a73bd639d22ebbec954eb0b3e19aac816da
MD5 934aa1dfe3f3f2d360bf81bd3ee10ffd
BLAKE2b-256 e288a97106e55dd525afedb41517f6f978b4ac7adfc624b530c5fd8a8139ffd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 707.0 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.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f98362dd192cca21436926b9fd00332ffe850ef9456e6691ab2b6013eb576d6
MD5 4390c391c4445db078f11c6c8d73894f
BLAKE2b-256 ecc857a0bb616eafb54dee37d0ca4f94bf5ff24a01408cf60378a214d2ae495d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 712.4 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.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60070fe1c03d4316682ba1112233adfa555f85396c14c5acd81f86b24747597e
MD5 66900c95a64b81d2a2f76911ea36f65d
BLAKE2b-256 a7e68451ddb12e2d0463aa28655eba0ee73bef857de4b38ebc670bb5219f961c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 614.7 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.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1477f91f98f77e2850094b0b45c9df941b713d2b8885bd491f3aa3bca9e2b7b5
MD5 a10a5c073a13c42e2841ea32dfab367e
BLAKE2b-256 de5d19bd30c70a76214a986591a0e11bba355f6a0d8e5b97a05e315ce274f38d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.9 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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a4593a50653176e7a72eb94c8cf6caffe8ed414d0a36c4394c0a11eb9b82e4d
MD5 4aaa6cf34dfe6f4a83e6701896e8d525
BLAKE2b-256 097c8037614aa8833ed918bc75c0c81148e65042012d9f2310be1e9bf2a147e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 477.2 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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16fedeb4b6bae89cbcd1c60e777f69288eab48fb1cc1233cb36095ffbae0110c
MD5 e7a9acfe86a6c9179cb8ed67649a7217
BLAKE2b-256 1c5b66b830b0022eb9b358106a5d0b9382c73554067c54f67ed77d948654ccde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 610.7 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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22f4be0fdbcd2c047144a5a3c4aa0058fb1f4960b34295d010372d5588fbdb10
MD5 622720ea99cb66c0997cd9d53ae49fb0
BLAKE2b-256 cf67c26ef702f84b31839399cf7683dfa8811fdfa3bd0f7a8fb3043db08d21d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 495.6 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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1aaf582e946d88bd587d54a4730585ffd26dbc8256f268b1053f3a2dc6c2fbe7
MD5 65855ed64e1f7737ea1bdf6b9529169b
BLAKE2b-256 b2243245bf0e01b054bce27de688feb8031816e171dc5a4acee2423c1c64847d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 439.0 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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f9ed0cb20989397af6dbf2c616c81ce85865081200e7b375b8d4b5e6b442d03
MD5 374fcf041e6fc8d2b68a207f0998e800
BLAKE2b-256 fefffb6ec69081c69f74b668b0f595dd76bbf3293fbae04a62e3ae5d86fab583

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 438.7 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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54448a3b3a00f5dcb077e96395ea5fbe7a60cd7b5253cf8417e9fa84cebb2035
MD5 592073aac3a20fc48e4cb7439bfc8ae6
BLAKE2b-256 31f7d611558e1bc487629456f856b4746097640e40b134c361d62bd4fd08da65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 399.7 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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13cadeb8ecf2a7e683913dfa1194d6596631ad284bba6d7bb37331654a3d2d6
MD5 69dbc88ac95d217c6fe70e42d66493bf
BLAKE2b-256 74fe7cb3abf7afac45aa09f9b162fc37962ae65e0a6cd4d5590020fdb27ea996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 429.3 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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8f2796337561f6cb42ede8ab65d6c2312dd81913ca1e1fd10b4773469ec14a3
MD5 3de7daa742416721da25d3e36579385e
BLAKE2b-256 04a474fe6039bb86981ae5e445b80d6ce7bd1a822f9de80d983f32f20192c2ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 277.4 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 337a6b8f92bde7e49c0803c7eedf9f84e3fb811309b99382e0137590382bcad9
MD5 946b475d527e6bc219a84a81b85cd17f
BLAKE2b-256 194012aab52b381a0e3f05a98cca9368247d53bbdcce50f073f7fcdec29500a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 312.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e8ff98fa8698cb3e6b54e580769bdc1c55eee67e8c257d2418e644ff3eb5616
MD5 63931525c3ae7b6f2bce675999e48bc8
BLAKE2b-256 07683cc8cd64b850288bd0e1887dba6d31e414e4233d593d8be2aedfa2f4fdc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 289.7 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3ada36e2020d12260cb5dcd6eee2016e710ebaea2288a6a5d32506c0ce956f64
MD5 78fdf05888ee0c16df0d5f129ce0230b
BLAKE2b-256 7dfc18f1d0a9984973265639cb3c1b81ac3f82698b0ce5ccbc80496b11b66f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 674.9 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.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0721c006e19902f6e3fd3936cdb9d0c664b74cc5fe602778fff9428877454c5e
MD5 6b8eac886f3ab3b523f626357e46b9a7
BLAKE2b-256 613a227c5d3b3a0ef398dbee7cc4e588c45087af97943a562f0cef9086baa2ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 707.7 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.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7375b8f8decb46ee1c25b38c9852ffe065fd8d65d0e556b4d55a2904eb3a307
MD5 2b6be2f31b59a6f1e82ed42a7d631942
BLAKE2b-256 3ba60b611552396c13da40cc5ed597e2c1018b92223b80c5f20080232e6bca94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 712.7 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.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efad155b581b0b3453961d7e51f538f5e2652e0dbe9e3e1e6e268fc2d2744f38
MD5 d58fd559d02bc452631fbd80f9843829
BLAKE2b-256 da80046ba2e21793fdbee54be791c36b901a298f75745759d7bbebc08d7873f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 614.2 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.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbcd38cd143eec046237c42fb78d7097abe989ff7e1c3850007455066392e4ed
MD5 c58796a48ecc10ee6e8709976a3cf32e
BLAKE2b-256 945e4aea2e89646879bb8d0ff63665ecfc67b2486683ce3b8318673d84e226f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 476.3 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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfed5468484bb60de7f0f3500d012240f9a36d6386b22bc228845fbd9d20b366
MD5 31a21f8aa7be6d46aa10df93896ff83f
BLAKE2b-256 7c527e43ffe27af18b7bd522e5aa9ba415d78e5dcea1f928c43c9dcbed8978ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 476.6 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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 220287b805820dc5c14c6f0edf78a12f4f86a5fb87e01b78f70938822579715d
MD5 c6e9a673edce36d512cdd6a8be930eb8
BLAKE2b-256 60ab1c26fe15e0107bf60f1fcdd90d5543b75263e3347830fffb7147d2600764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 610.7 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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87a02707e36779e68f4166ebea22d93c6d53c860f74bc42ba762cda958aab45d
MD5 f294b609a69997e4c2316bc9dd1063b1
BLAKE2b-256 e75ac9a2fbb79004f3191b193841e78efb056d384e69de666663e596f806b9ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 496.0 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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 959f3c05b7eff661d7668c2778f8470c157485e82d9f6ab066259cc1efd1dccb
MD5 1af478797d4b3e3d7e14229ee788b0ac
BLAKE2b-256 99023847a6abcb3379c05301d188e4b172d4aabab1e7082371c726cdbc4508ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 439.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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3af27e99e6f2e49225d1c1cdc6e142bd49647a878ddf7f3da87159b1845fad31
MD5 6f6bab13882e777d63957646fd856422
BLAKE2b-256 0df144ee61da03b4509ac9ad92db0d989d189649757f9db8b3d5002dcbb80241

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 438.3 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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fbf0fde7cbb1499fc3a5a07f1ebd2414f0f4cf299d050a69c9cbce8b0a4cdcf
MD5 a1619c085085eedee896abb1a7e290d8
BLAKE2b-256 3427102eb9a68aa0ad291ac4b7f769ae040c7adc002eca0e98f63bc18c5b97e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 399.7 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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b09071cc81332ab8c43be979eb01a2dde84a74352e2789d35cbaee08725b053
MD5 1c4724332fb6d36da6e61c2f62d1d97d
BLAKE2b-256 d20848741a018515ecd6b901d04e4a6a8f8df754e2ce5e47d8b52c2833621d16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 429.2 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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8493064d3b05bb5f9bb8e9e10154729f573fa97a57401e54859d90e4e83a4327
MD5 2f59d46f880f901ba7ce4fa71772f637
BLAKE2b-256 304077579ad0d7623732f63a72ea48c8ea43bfa39714462c0aadd9fa6fc421ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 314.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 941d756e9b7c4a8ded6dd8c1b1758edea526e2da31f81433e2f5a8cc74212384
MD5 05b083fc37a04713d9940e1b6b6c4d0c
BLAKE2b-256 8a08f80a93184984f9aea035bd540a694e89226598782e73c3732e0bc67d1dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 291.8 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f446daaf59ba40b7fdcbb8582ffa5e5449442c3b3c3f04b61e3e58d29f685779
MD5 3648e294275e30f90de706d0be25c777
BLAKE2b-256 40b6cc737aadb38b234ff4c037d12a739c89cdf3e097999f3f5ad8dc903362ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 680.5 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.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a47e46e8253319fda1a41fe07e752ebb02fcc04705d7772937480994246e988e
MD5 4341438932bbdcde8a385eafdbf2ef28
BLAKE2b-256 a37fb877b9d4a28fe44ef3fc5428edaa958487732ba78fa6c817c0891c776f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 712.7 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.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 003cb1a0d2c5e76c449fda4f368997846293548b885d7a4b466e86b0c675bb8e
MD5 65130c713ea36bf6e6a858760e096788
BLAKE2b-256 3d6c8763c0f5f465f24b2b3057014296e642789b3e0d1f1fc4a0f9f43902caea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 716.8 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.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41b24e7f3fb968efd91deb960b803e36d586ace3137254bbc8c2b3c78452642e
MD5 ca3a42f25841efea7ab4f09b8ed11e1e
BLAKE2b-256 4c29572aca01dab429251bc6d09daef7ebb19abf115f9fe40e881da94f381a44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 618.5 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.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3f3a4170d5486b3275f0a8574416e533a7217ccb3c58339594621ea1c700558
MD5 e1deb60d8c6d9a203c178db2fe91f667
BLAKE2b-256 c9c97f46a373eacbf4df689592f021c251600ecec28e02423c41d4cd43cf0ca1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 480.2 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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3abf0394659a7dceb68280bbd1b7cfaaf3f86d7cdb245310b4e1a8cee23798fa
MD5 154da5fafafb947cbb48d7b8170eae2f
BLAKE2b-256 45cbd9e7b33fdfa4737fd1bad3788555f8a63afe82b1b6b304c5a08663311f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.1 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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97fde8f8559a6535f34482ef04d0e92334e91b222b6e93f82bc7d1a5b39e69ce
MD5 f705e21509eccdd43c5aba5aa95fc561
BLAKE2b-256 3d65b98907e99c45e4d394513ad1788f0cd8760dd5dec3669036beba389af0b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.3 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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 041890f4ba8c834b1c43d15348d7dc78559baec623049b1660b31c52fea8c92b
MD5 2f47a949c18c65a50d30929229099f37
BLAKE2b-256 dd2764d3fa244df9e8e99ba207e146804e66a327b1fe4beb2748d919070500a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 501.8 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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 351cfdac0895d3a75afdfc4a8351e2da725a9f44b223ad06feb8762e67e95cad
MD5 d13cc095535929b4373e873124948453
BLAKE2b-256 8771459a7acfb3e9c3b4ebee1f5d60f092f19a84ff73e9c84463319e35abada9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 441.7 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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 445dae7689c948f07efabe358e76463b73273bfb3281db15cd613e6f0b331e96
MD5 5285a76a1194a49c85b23239eb654d0e
BLAKE2b-256 0004c9fe98b01b2fadcf9c9e3002036c514c3beafdfb6b4bdb090409933680c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 441.6 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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470acf18103a80f388abe21e34cfe66cdb8e7660dc2d2d415d6a0a959cbbeec8
MD5 3876d48b09145f263bfcc4eafda51464
BLAKE2b-256 606256d36919f892d3c9f3225cdedbed860fa9614e00e4d6b8bd51d67aa68482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 408.9 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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 868d1747c016a9c3fc530efe3ec7c23b2f46d55607dc21b69cb0a38c3f377585
MD5 c3f2816c410e14941361520280195d2c
BLAKE2b-256 8b5a75f0964a77f95dcb75ed50f1043efe945f01b19533ed94f595c71354c114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 430.1 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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bf07bc7bd011544ec01f8d5613c7243e52aa8f60db4b8899b46de901dcce04c
MD5 daee26c76ad1a600a7780b2a96c15d57
BLAKE2b-256 5a60c38b62c78853aa66e3b5c457c3e098e8f9d2f800e83b4060ffe95f527d09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 315.2 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1aeb80df78a26f3122f22947491bcd962d4cfc7756e45ec09bc06d9b2799045
MD5 fee2ad8890b47f94d18d5fd95b27f3cb
BLAKE2b-256 1c591eee9d01c1843eb5f82036153491a190952f4d403a2f47b22b39b509a165

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 291.8 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 63d88e4dfbcbae5e07c0e0ce77067be187b7699f41d4a6cea0b6ad7fbb151bfb
MD5 7099d993c040275c52cb843de583abca
BLAKE2b-256 f105c71b0e1d4bfec5731f045a742e82100ed0826a6798ad9fd5e0eefba2af43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 681.6 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.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fe4cecb032afd27ae02723cba0b17708592a951242baae8a214f2f47b1822f0
MD5 47840e708d5af46efe2ace63c5c4371d
BLAKE2b-256 bd090de1e5f0af7f1da0a353e27b06d55a8e246feae2203a61df053582333764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 712.2 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.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 368a2fcf54ec82b6b55b0a578363a8eba60af540562f1c07a73fd3022c829832
MD5 d2fef77b21b07825b56b844be16c493b
BLAKE2b-256 7742ddc963980a7d34ea2989314ee2808a4d201c79763f36e14ee5d472446457

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 716.6 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.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e97fffbb2687278a2c45f660f09f0b8bd5bfa9bed72cf235e7d030d56a6dc96a
MD5 d0101279231cefb76aa4d5a10ad964e3
BLAKE2b-256 161dd6b05baacda78e200fc69a16d5ebb72367ed2b422b4fe4d880d87a6a66a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 620.7 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.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3a2d42d8186447d4bc8878f10e9f449171e504991a953f5c98718f8d93c3f8d
MD5 2774ae908dd9c8b52042421b4ce4ff65
BLAKE2b-256 9a4356162611844e9ff16f9dd7337662ba096c808102ddd683b737f27310fb44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 481.9 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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2217f3667cdb9a29335808fdb784787bb0e5cf866b5910d80fab37f87ce67298
MD5 6cf2bd280658495e0a8d49072fc7c373
BLAKE2b-256 34b34deab79649623d48f8487dc3fa1642101c59117f533791b179f1c5bf9986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 480.5 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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 272e151d76e09eb3283c6a30db0702e13147f320a982b3c52aa683865b895eec
MD5 c3d1449ea94726ebb1cc0c4b9f488629
BLAKE2b-256 95e19e999e4ef9dd37b7bbcfed091f578f8d0526efd1de7530e0add3d7ff8156

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.3 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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718c78b256d7cb433d90b0cf1ce687e4eb542c2236b00112f045ee5c0cc97ba2
MD5 f8385bfb1f777026d6112b627d81edc3
BLAKE2b-256 162a99ca5ba0ea657bdd3324eb65ca237dd92930d226e6c3b669c028efffd260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 502.4 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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e08b8b5f299b7f00f27189787af37cfe15a641c238c5faf9501b9669c7c3c672
MD5 2e0910b47f5faa82f3f1efc23b95b554
BLAKE2b-256 fa6a660cd3ec4191fa00c48b475b339eb8b7973ca0a1b80ea8651973c441ed61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 442.2 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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b7d13e999de7bebb965392db1829673c013f468a7ed38c3f33a3ec4f6138346
MD5 07a88c6d14594024cab80f0c42ff1078
BLAKE2b-256 0dae37852a07be166923c2821603ee8aa068dd6067582cd46efd8c0a8055509f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 443.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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fd020b633c2643df47be81086732a0793bb57184b23c05b898c829d957d38ab
MD5 a59a6c82b2b2ec9f4de982c44a61cfaa
BLAKE2b-256 b78147e515effbb2f6ab43ce980f3df0cc7d56a1615407a5be8a0109113b6d9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 409.2 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.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68989e029245668225319e3871dfc0f0cbbbfa6be9ae41e3e38b5a3ccf3ca7f1
MD5 a00400e9e7199d25af4d60c776fbc78c
BLAKE2b-256 915d814d049fb2439b6e2019a340977dfd6737bb3d5a54710b11e33ba9d35797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 430.9 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.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d079effb1c3ea1ceb1b3e934701a23a02f84ffa7939de928a4d8a4b7e0bf96e
MD5 b965ee49d93b867e8765618713ed6a72
BLAKE2b-256 40fc6cd2030ac412712bb0ebf4a71cfbf317ebd06d01088136c189d073df79e1

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