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.3.tar.gz (115.2 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.3-pp311-pypy311_pp73-win_amd64.whl (318.8 kB view details)

Uploaded PyPyWindows x86-64

splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (685.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (717.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (721.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (624.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (621.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (507.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

splotrs-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (411.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

splotrs-0.1.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (432.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

splotrs-0.1.3-cp314-cp314t-win_amd64.whl (314.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

splotrs-0.1.3-cp314-cp314t-win32.whl (291.8 kB view details)

Uploaded CPython 3.14tWindows x86

splotrs-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (679.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

splotrs-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl (713.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl (616.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (612.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (497.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (439.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

splotrs-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl (434.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

splotrs-0.1.3-cp314-cp314-win_arm64.whl (281.5 kB view details)

Uploaded CPython 3.14Windows ARM64

splotrs-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (679.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

splotrs-0.1.3-cp314-cp314-musllinux_1_2_i686.whl (711.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

splotrs-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl (717.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl (617.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (501.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

splotrs-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

splotrs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (404.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

splotrs-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (433.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

splotrs-0.1.3-cp313-cp313-win_arm64.whl (281.8 kB view details)

Uploaded CPython 3.13Windows ARM64

splotrs-0.1.3-cp313-cp313-win_amd64.whl (315.3 kB view details)

Uploaded CPython 3.13Windows x86-64

splotrs-0.1.3-cp313-cp313-win32.whl (292.3 kB view details)

Uploaded CPython 3.13Windows x86

splotrs-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (678.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

splotrs-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (709.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

splotrs-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (714.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (618.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (498.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

splotrs-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

splotrs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (402.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

splotrs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (431.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

splotrs-0.1.3-cp312-cp312-win_arm64.whl (281.0 kB view details)

Uploaded CPython 3.12Windows ARM64

splotrs-0.1.3-cp312-cp312-win_amd64.whl (315.0 kB view details)

Uploaded CPython 3.12Windows x86-64

splotrs-0.1.3-cp312-cp312-win32.whl (292.4 kB view details)

Uploaded CPython 3.12Windows x86

splotrs-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (678.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

splotrs-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (709.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

splotrs-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (714.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (618.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (613.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (498.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

splotrs-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

splotrs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (402.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

splotrs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (431.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

splotrs-0.1.3-cp311-cp311-win_amd64.whl (318.0 kB view details)

Uploaded CPython 3.11Windows x86-64

splotrs-0.1.3-cp311-cp311-win32.whl (294.6 kB view details)

Uploaded CPython 3.11Windows x86

splotrs-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (684.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

splotrs-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (715.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

splotrs-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (720.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (622.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (617.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (505.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

splotrs-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

splotrs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (411.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

splotrs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (432.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

splotrs-0.1.3-cp310-cp310-win_amd64.whl (318.2 kB view details)

Uploaded CPython 3.10Windows x86-64

splotrs-0.1.3-cp310-cp310-win32.whl (295.1 kB view details)

Uploaded CPython 3.10Windows x86

splotrs-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (684.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

splotrs-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (715.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

splotrs-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (719.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

splotrs-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (623.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

splotrs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

splotrs-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

splotrs-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (616.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

splotrs-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (505.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

splotrs-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

splotrs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (411.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

splotrs-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (434.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: splotrs-0.1.3.tar.gz
  • Upload date:
  • Size: 115.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3.tar.gz
Algorithm Hash digest
SHA256 90645f836af68a50df23938f2df6e706df82ffbcb8480269d79245ae26508d40
MD5 55c09e28e8005c59698b271a7aca733b
BLAKE2b-256 668a7d5e6e914e2660ec60d7fc8ab230e97548d49b90cb768e78dd766f66a208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 318.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cf00948956be3a586402204848d503ba2f132d5fff549701412df4cd20c6f48c
MD5 e71823136e8525a6908b2a3ac7f92b0e
BLAKE2b-256 93133681f0addab1049d912829aa37b18aa853880a1ad4d4dcae33aefe6f6ac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 685.9 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 671b19da251277637e8e5690a5c0ff2920168c73f3ca278b67e50276efa76459
MD5 895203d63dd08af41207ed266ec3672b
BLAKE2b-256 9d0b3d0949439c45132e9d2331dbc88f0fff0d5ee3b192ad87efecf2e715dbc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 717.1 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97b92b959347f7cd0d68118cf69f4cce27cbc4063b975acae811bc612a20d950
MD5 ad738f7038a217cb7e0da0b0390d8c6f
BLAKE2b-256 0d931a0581736460244b892447448fa856e452dabc8c52934a3eeb7529235986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 721.5 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3422c5926004be900f32ceefd88d39dcece078c04cd97588702d883a6e96ef84
MD5 ad7fbae065f4176ffc96517633aba9af
BLAKE2b-256 e9247d00ba09a83a2509e5a534fd3b17cf689aef4d81790aac4b7921b64f6086

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 624.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 725177ea1740f492f1352675c3c10051673ea95393e28664ee5600ce520ec4bd
MD5 ca241a3aec6bdbc010206f658158197e
BLAKE2b-256 fe43d706795f25adfba617d63226da968416a79cb649283a0b2c2d57f4bb26e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 486.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1b6d8d72697e446d996810078999354635ab6b777ef31d9e9fdb91b60d2f8e6
MD5 4d898e27bd6df138ffd0209c8721269a
BLAKE2b-256 4e1a94cbb33eaaf30f0dff135f3a2754bd65d156ba5cac5bf716c328a233b626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 484.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fc66bd68af06164debf3f3c6b037351e08337f57b6c9b8264e506b0b02f96bb
MD5 51113e5150dfaa22a82efca74f37a5a1
BLAKE2b-256 8c8041549904b74ba5b682a5535d3457417cff40c7550f2e9518c1957d8d25ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 621.1 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e16eeca03e699f4e4ec6cd42a9b5c946d97ae3017511b5319aa68ea85e671b5
MD5 f9ecc877bbb9ef84984b4e4f879648f6
BLAKE2b-256 00c022a195326d6bcfd9fcfdb81ab2d89d0dd621d21650b852c99bd7ec0e1cab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b576d2919e755239549a99081cf9b0d9c311b79731c3106a9bf7bb761096aefc
MD5 00d46404bddb2a8068f68dd00bfda6da
BLAKE2b-256 07dafeb1b1c1158ad566ce56bc68cbd3b233f137901fb1c3c5fb45f2222c5c1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 446.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0571d3eac564df93ae7dd5f185487e3788161171176affd75156910314c133f
MD5 7578b3c91ed56d01372d6f02ec2ee712
BLAKE2b-256 cc750db1a3dfdf6a1821cca0fdf1c5aa4456ef09a6d56514e83c8e9fa4dfa85d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 446.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 927fb63d215dcb0335a7e99ca4c19c9a4347ad1b0a81e4ec8c163acb5eeb8baf
MD5 30a3715c9044947c2c098ee985bc84ec
BLAKE2b-256 926bd11660f1e97617978b3170f7063f7494a34ff1183d70f6d6fa1de0bf72d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 682f0faff0eab8372413094eb301940caa01235fd89abd07542e87152dfcc9dd
MD5 b58d2b2347d4ecd0bcfbcec58f10122c
BLAKE2b-256 4ac8a4cf71e1f40567be6cefaa8df3062c4047cbef67c5e9c3318bc1461276e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 432.6 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a76af6f0b344c36645ffa79d4e4702347afb32c607b798b23f114160ba74d14f
MD5 0e70bc1a6a518c93cd94346f4c52e390
BLAKE2b-256 b99b4027609f6c5f443826c00cfcddff3ed9183d37705de5a40d9214dc3cc61b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 314.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c32df29e4c1c8ec6532bbd6df93b69279729c8e66e743fee7a9c81643e18b52a
MD5 a968f9ae39f535dc7595d8f6b549c811
BLAKE2b-256 5f52b6a4c39c7f59c696dba740946b4f1709d98e16d28582db39a777ce89688a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 291.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1eefba7c0634fccdef313a4171fcd05071c927b4c1c6294b762e2b2f66958249
MD5 971d73b77dcd06999340a6ca841e2ddc
BLAKE2b-256 6f3682b035639228e565c1c05a8088ab68e03350c04f083e9c96aa001085a475

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 679.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b68ebb16e60e5962a506533f12ba5692cc4793546732f14ea395b235f0e07aaf
MD5 f9895cd8febd9f37ff1b696e5e7e98a5
BLAKE2b-256 8f9ba5a29294b7c16689f462afe069e26df1f115d504ad37a4cffcf50f8616c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 709.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c3f0faf431c321ee58414b862b37aa7323311ea1cdf4488539de9f6b4675e0a
MD5 9ce87c9e77bb360cea5ec34137eab6a3
BLAKE2b-256 dec09a73e7ad1b35623352b277259acc3f0c5d2691d9ff2de215136002327d22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 713.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b78a70d0a183b9b30abb0044b9eb0067b6783bd30c86ee55033dfd907951a9e
MD5 ff762311ab149b75d8a7c281582c6306
BLAKE2b-256 cf098f3c99fe9dbcf5cb4452714bfa282a67bcd5e6b4cd77f99a078e1cfac00a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 616.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e46f7f98ff0f45a0aa0d4526f0b49a9693d69393a597f4826ded35d9bd7e2024
MD5 a63ad9891878a6de5dccc35d20169dbd
BLAKE2b-256 196a3e23f8881f8e20d029676bb08014aafb75041de51eddc80ddeae293789dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 481.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb2cc2fece11e3a7eb607bf86b3b2ededcd63244de2f2bfcad56e3e1c132a25a
MD5 1e3726ae995c05c2fd2d2552689b7cf8
BLAKE2b-256 077a6651070d0de2aee38bb51a39a4e454dbf59a11c1518f464b029b41640680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64d0307fef6b80b8031ec49671031e545ea6c707e2c2270945f95676b5729e86
MD5 9a456e3166359b81bb95686c964a72cd
BLAKE2b-256 11688937dad76dc3cfa90cebf7e11dad6a1748cc86d0ab64724baedfb13f7589

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 612.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bfa6bbb4ecdc27d5d73820df079b02fe672584d1f0c2fe76dd8132a249396f4
MD5 90cc73c28fe020c2b997458404a3cd99
BLAKE2b-256 8d8dad5b03bf1771fc5541d082c9a6e5ab81426f3853bb448ddedc96db3d20c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 497.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1867737ea0bdec3ab095130455bdcda1652c5bd816ca0adbf98efe488c6fb07
MD5 eabb5559f4d2643d04c870e7714e1095
BLAKE2b-256 5c7acec49b8882c4845061105c0d4ad17c0a789c7654e4481a9a954957999a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 439.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 072f19d97ad9a5f182e7879daffedeb58ff163474d7bde1f426d674737d6eee4
MD5 5ad50ca5a7f6dc13802c823a830c5453
BLAKE2b-256 cd48437bd7cdd9df8a76ed92244e21f087706c9b522dc049228e7523e8fe81e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 440.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7ea67cb424d827ed10a3d84c7869e70add3a6a5cf90fcac5c88b4b9e4d93d33
MD5 05fad44c895c08f0ec1da136f1b183a5
BLAKE2b-256 78bc40c142bbc90adf3685a4ee1097ce5aa35462cb43043440b06c0010aba14a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 406.2 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09d605bf020480335609523f2f64a579299671c14c8f19d3ba6348b909b1f36f
MD5 019c9689c3fa545c9fc3a33aa62bc850
BLAKE2b-256 c32d657f763e47a94a79905c90d54b4f68cd5a8df9fae84c426706fada033f31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 434.1 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0054e6ebe5c8e54dad4edd70cc825590ff04bb50fd13804eb5a0f6a4480b421a
MD5 db28d245c4559313f44b49cab388d41b
BLAKE2b-256 52d8acaa9416163355d19ff375803b34230b59f37c22c3ac45609fcbdb49fdf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 281.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 73b605d792df142d4542040567de2ff43f266b958ea74ae1ed5505dba846d830
MD5 59a3599a35f27d68e4bdcf0d06d02cf4
BLAKE2b-256 4a8c0e37d434bf45e8bbc426acaab96051464268d695e19b8c7cd8f3765d3aa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 679.3 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40ed146be4196e95f1cb25be855a5405a71c9703359a1780c7a94c942e53bcd3
MD5 0f34d2f5563270269f78850187ffdc78
BLAKE2b-256 50dddf9b0d8cb8a2de1fd9418981b0b2e8ed04b41527c05b8c5a54e3a89e211c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 711.5 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a66d6eb15dbf5d2d8fbf9497f0a42f9aa649c5a0f957133f9df2c0df74b0882
MD5 891c11d48d66e92a67729a364d59d4bb
BLAKE2b-256 397630937a26e40cf184df23a43a985a29161f3a222b4ea67888dee24b2eb183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 717.1 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1aefd430ba52075bd7d63a3693bae1738c09821b12a1eb65ae713b6712c5c56
MD5 30aa19bccdd476ecc9ca8ab9bebe381e
BLAKE2b-256 bb47c55d838fe29c5768861aa88e3f3945fd5e4940ccd19f71e38829e1e8925d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 617.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8fafdf24c31f68b29bd4400873ebb178f9d12f09e4ec9a80e8718e723edf14b
MD5 6d0d2b29990b23724db83844833b26a6
BLAKE2b-256 831b2a06a2fc20542a5695e2ed7f0bbce5c305179fd56f19634476a6a1d3d10d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 481.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7682fe6eb19564cfa13f9c73575cc12d049715393d90424cbbecfd2e3ddbaeaf
MD5 ca75cc066593a09b614d971e0969a99d
BLAKE2b-256 c166c8e175e93bfd2a44306177b143d97ab9d14b0b7db077c8a2ca0bdc84b4d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 481.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23122b6c57163a303629edbedad34e8346db157f58ac5af446563817b68615a1
MD5 8f05afe29a90137a12b9f7f1aeb7c935
BLAKE2b-256 57973382e5e4253f3c7147b1f3d4bfda36f66d10324fa5de11315bd9a8f69f4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5db340574288bfeed603f20e05d10b53004958885782e84a46e830c891c4bbc5
MD5 bb0c7e61f35264cde2424f4a041a391a
BLAKE2b-256 cb0ebe6b5b0f67fe8686be12931adfd81a853f2adeaeb8c2ef4ce09956da10d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 501.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4c4032fc5cdb0266850d7e1feaf16e39630ea97d44f7f892494356342c2b15a
MD5 34b8da1c52169412d11e90d362b13178
BLAKE2b-256 60affdbef852e281b29a14a54268fa90dae890a48ce1774fbae1ffbb74c3b0fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 443.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ae9e441242f8a680465e433346aa28ab783c3fcab58f94d5e37e71c049fbd02
MD5 375fd6540bca7c95fa3780ddcfe8ac24
BLAKE2b-256 5cbbfe08bc20372fcd4038a3bebb491d22ac0d4e190d7814fcf2c09a77d89f9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 441.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91b0b450747aafa3119185e92595ad686ce130c9855b5b1ba121fb3f4ecfe4ea
MD5 799befeb35ca2a433187273f49f762df
BLAKE2b-256 714c649a3eb2b844e58106a2728c7d0721fb19e3cfad2a7aa931cdab90038dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 404.2 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e16743b6ecf9bb53539634b0dfd56b09fa8bde59824e3634f5f9d2ab0633864c
MD5 7d1ebada7303e1b44e9580438aabee9f
BLAKE2b-256 1737728d216c2833910e9742bb04e0b8d4accdcfad8dfff85e6080edae83c2bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 433.1 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 464285e68dcaa3058c0ddfcee444364176cc687ad02b54b9b6983ee1625dbba2
MD5 6db4fc44c7b240dde8c2e56f13454b1c
BLAKE2b-256 b76e687dd12e964d02c986843961324921aa04fed1a7cf9385bdbc3203ca2c26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 281.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 61f94c6975fa7c0562d298a6d43088e89be7c25fea54c7cd7b6e26f5ccb1d9b4
MD5 e3f60320ea3ffed4677b537a198db414
BLAKE2b-256 a8cb6f0df9eb792bf447611e6b581fc7ffc8d3af5734c981a49927382df83d31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 315.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 832d37eccf95a8cfcdaf003ba0609d83470335758947c6f0550230f219f543df
MD5 ebd8e271e8e7564c335cccbb9558a856
BLAKE2b-256 a79b32cc3a11fa41bf13787db79d5104244a3dbd3667a276459766d3fcdafbb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 292.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6a1620af2b120b51d469f66468fa974b5c0b16e589db222a6d78aa41c6613f3
MD5 5e5f774e30f890794d30f412e73bf044
BLAKE2b-256 b3da97d0e7b0cb7af804255b7259994fa231d96156f692ca72798a32cbb07f2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 678.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8926aef5dc23786e1ab718cd75091c74ba0d370996c3be449245b9b2cf9abe6e
MD5 130864a7e6ef6f5720e87c047b898e8a
BLAKE2b-256 2db5c2b194be0878f98eec20552f0f21c8ef447f3ece3f499ca160c6dddff4b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 709.4 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7f65038e25df88afc898d73a4e74749cb429526f8d4218f9cc7b90742070031
MD5 37971606cad90415ff042ae02489eb5a
BLAKE2b-256 739db08ad119ae04d4d6005a36a8fb596dfaf9c0bf1ff4407661affc7930a54d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 714.4 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d71a9c54758ae56a048442e46fcc1ecb8a09993c3b2e675198bd0150a662db85
MD5 4163bf83cf899a1d9bd1c9844da253fb
BLAKE2b-256 a722a74c0f6b34b9ce328b75f9d306a63c2cb289cd022fd9cd6c3b9859832a01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 618.2 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a695df339dce5df0c13de9aa610a61ae2a02937ee15a835612c37030c9f24ff0
MD5 4603d12871751f2439dac1b38b69e006
BLAKE2b-256 f33b831f982ac1ce39f9a3460bf94f7795cf0b1554547c1547f90d6e2a13b29b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 480.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e36eff9bf9afad487274403b966b079adaec4a3f3e4dd4d24bee38914ac092e
MD5 f33ccd41fd176fcc2bd69c828aa70674
BLAKE2b-256 8d2fa89a601403b617ea0e6903d692ab1f60fbe88c728160183ef0152ac390f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 480.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0c1525c8a90ff3bb364eadd4654441c24a082899beb907ef6396d64b9a1d6c5
MD5 52d46630cfbd7f1fd7f641766102dd25
BLAKE2b-256 cf61fb091a293470d8b1c44ff4c6ddb20dfc553b546acd482a7172ee6421a51d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 297e2d19fca18bb3b4eee29816b01581eea6e345954beb8a9f8331aa9eb32c12
MD5 23e866a79e53e985482900e25b0a4479
BLAKE2b-256 607a7ffb8bb26ce494a236812deea23ad3ec5d50e594c06ac1dc0928c852cab4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 498.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 087586451820711ed5b365f5ba578763365fe6ca62a0d5be6f5d3fc5e76f9435
MD5 e9f815ce61f3be4ed32cca45ca16ceeb
BLAKE2b-256 5a51bb9d3683f1719ff899228d36106e4fcaffa1aad0a60ccc15e73afca371ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 441.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e98f8ccb718dcedb6263344156911f61c0f053201bdc471f363b188eadba6b68
MD5 29caa012a89c9c60a172afddf4414c5b
BLAKE2b-256 9936ef4422a08636c031bb4e4dcf92eed7c1bff2d01776e768f2f5c73d3eb5ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 442.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6158a2879266672afc59dca05bbba670fac6093becbbc10921104fa6540668e8
MD5 a0dde6274f2e97937277bab12931fcdf
BLAKE2b-256 c6a2d45673df2fde9e1a136262cba94320478074e4a63d11d5f9b89d1ff679ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 402.5 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c34b32a052fedc8a478201c5c425b0cad62e9d31bd10ee66ed6617e3aa14a653
MD5 8225e677709a9ac1417c05b0e2738ab8
BLAKE2b-256 2eade6bea46f9c9cc65739cf48c014ae21b43dd4e8b1424bc5a72d5b36332e18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.9 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b714b5c4922014ff5a4fc542f842f379d9bce0f8c10f9d699cbe8ff8e8135df6
MD5 7f43ed859b6691dff5620b1463069b95
BLAKE2b-256 952f5d586825f4636375740b212e329328c970ad1ebd4c75f1ee457ffc86604e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 281.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 261b4fadea8ec0c8999e0ba4e016d6f674c8c78b3b54a65feb78cd81f71329c7
MD5 ed7757826c8b6ba600f6efc0e48d691a
BLAKE2b-256 849266f34fee4e034b4a7e4d20d84cbeb6e0a2645ec3ad265f88f97b42a58f84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 315.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bd5b2cd2432f85704bb350e54d257595cf20d052f1a1fdec3810f566d134d8f8
MD5 fa80bf18cebe2bb6af8f0732b3c1d78d
BLAKE2b-256 e5a63d83d56b0f831b6878c79e27172bd1fecdee289037fab4d958d983db7c4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 292.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 08a12979c3991ae27c062e3aa7f08061b14cfd9963c04db46d0d4f83401e994d
MD5 2ec1789c2c330554e8a53d67b3ef169e
BLAKE2b-256 feb32f610b873c09467c4a98085dd5b534adb409d5ac27ac9933ba6002492c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 678.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5ebfd2079f7d2aac7e39e9d2af35776dd9591afbc3fc95f6d86979036adee37
MD5 aa23f6caa18c92341a576cc2f8a6457d
BLAKE2b-256 970164ffaac6a92527db18b896d9c8dcb0067ac478839ab6531ba9f8956d6418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 709.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 858e7d5b4a4cc913a65e993dbfcc117f456556d3c52fa6f13508b8b0ad5aa673
MD5 f27ebc3b4a1886e03a19284c1e5ccc53
BLAKE2b-256 eb7c483c1bec88dcd0d67ed1557d8acf8530846900595328219253c32e93baae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 714.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 442a4034eae0d5bfcf7bbb4f9fdc10367792c34a021fffa038d78c0ce6d0dc84
MD5 bfa5b3b5af84af4ab87be0ff1b88888f
BLAKE2b-256 7700569bc032ccaa72f193fbf73cf09cdfd6ae645d3c5fdbf2c07e2d6a70c342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 618.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4694fd07bcf52a80e1765b930448d9b96667c4d0547b6d6cac7068048250f17d
MD5 da248e5f79de5a8efa5c82b04644aa26
BLAKE2b-256 64528f496e10c1036e819d06c0f8138ac6d24ae8d24f07d8f4a3f60904cb874d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 479.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86cfc15f289af03e9dd6d269e8460a4d84868968288742f080d801977f5f7878
MD5 421fd1ea64368c254d07aa66456eb9cd
BLAKE2b-256 f7873430f0b14e8ef7795a3066058ac462c2adea7ec0eeac03b2cb90da483727

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 479.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c355af7702c07c126000efba05010259f75063963c4936630206d44668a12d62
MD5 f3ccf3401a3dcf1ce3488d4d7136464a
BLAKE2b-256 cc5f954fd0d9ee1f0be53b63202c727951a4b310a0a08327e07f1ed0c53bac63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 613.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 054972eff1883ec2b95416db7537374a2430b67e99d1c3257dda35268262b5a5
MD5 99a8b98f06fcd6e7a4239bf6a48cb061
BLAKE2b-256 283ee5e8ed5e89622c0841d5c85754dfad610b248bedf66ad0b14fb7e17d921e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 498.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c28614cbe8b1b086bc2d50751813632789ec4d651b5089294ef771eaeedd17a
MD5 c68926ee1ca53d6f88f9e7a9d2720583
BLAKE2b-256 335cc9a60bdff37628ff237ab1448f47625f343b1d03e04dcd6947abefb2f71b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 441.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da106519649d6393fa0b807ac8996dd08e7410d4cd34dacdb6262b8c388471a4
MD5 9118567d7ee96124e659f2b46a12eb70
BLAKE2b-256 e79a53f24ea66c24569c672e44e944badf3a291c9ef62eb55a3e0e5722c05c27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 441.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c7b6db9af156dc2772a4346cbfd5782d6e71e378bae2e9726b1c2dc221fea47
MD5 edae368a829d223a444530a35289f75c
BLAKE2b-256 5505749b57f41399169c82e44bc53d2bfafc2c0433d96aeda0f622292f6b3141

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 402.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64cdc86ec69699ba8f1c1086bf6691fcb2f822fd8971131246eaca20d135d0f9
MD5 76d6f70375ac058242c017d0af801501
BLAKE2b-256 33a1c1c66352eaef6bbc8f5bbf913e219f2a86755781b62bb2930afa6dce132c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 431.9 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e1e8f42c47bd4ba1251707783b9565f9f3239cd441085a9e93a47d667fbb7d5
MD5 b043fea34613896f1dffba5aad1566f6
BLAKE2b-256 b3d7756e379392fbad0a8f5878e349f7ffe8971a85609273c3840d0161d5c114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 318.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72053cb028142fd842bba62ce669a82708c3d42421e759a484468fde4120711a
MD5 a4eb9a8c5b93674f65cbd696375ef82e
BLAKE2b-256 49614a9d6250120090278ee856d70d1069b6c74335c0e2aa9740151b58bf5094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 294.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 61551fcd98cdca842d1018f1fa988a803dbb15c7cad3ddf21ee825b8d5f981ac
MD5 97a80c6cacf721d506d077a08d0c4837
BLAKE2b-256 33138c27433c0891fc19668fda7763f1afbb61cab0c44144fe17f73a9889416d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 684.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 494600b2177dcaa1297fa319fe72c8d28a14573d20145221e0ef90f6b572e466
MD5 12b04ad7edb6f812c120961bebbfc2cd
BLAKE2b-256 0eb3277f69ce4f59260b7fa1c3f40c82579c2eba958ca0ae54744ef1c6fb4ce5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 715.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b39ca75109f8452f38808ed010071cc75218c336aec6c5a9e7303713cdd0621e
MD5 255a847252755de0d5bef7efad306940
BLAKE2b-256 8d10ae405f1d4961bdc8173fd7f35e17718967452099dcc2750f30e442f70fd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 720.3 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02cc3fdce393169844df084958001601a694b1bf18b661f7fa325c3136abc03e
MD5 0c364d1bc34a211dc4d9ab8782b447ec
BLAKE2b-256 0e09a2ea3819b14504bb40c6e9aba7fcfbab58c22a0fe6c5b632b3149e1f8024

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 622.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb53ef38f32f0b48eb0579e5b1f855f8f83bf164b62523902064f8fb52564afc
MD5 4ad21ccc008fc6746df5bde5d5ecb09e
BLAKE2b-256 9172c36dfc835ee17c1a0bcc4d86c737f4b83f09bd0b277d007ae293fa2d9f1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 484.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80fa15d55a69d75a287888e1e6875ad98c48d9845173cceec87b143ad550875a
MD5 d7129a29c7b94dbb949e88469c7f7b05
BLAKE2b-256 1f98f38a113d53a5f8ab88a584b592f8024dc0e70b70a6dc2db05bf996ba4b72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 483.5 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68028fffc362e280612dbba2f964db4e5d938591aaf3efa25f1b896986e9abd3
MD5 1ee2f076e0a65b0ba8324540f15913a2
BLAKE2b-256 12142bf7537c0214473b73a105912992dfd6a8686fcc10846755be8ad48c75a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 617.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17b6ab15fe543ed11dd2ed8dca428f7830dacb314807de127731fffd12c12e7f
MD5 4b5af28e47eff3e38969cc4a6a9dfd6a
BLAKE2b-256 1bbe3167ea78cb59f7a0501d1ead190f65e19898e1b19080fe9f7f6a2ff6a2b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 505.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c52a382ad7781ced68075ae1cc2ec8a121a8e70f6e0611193aa43173cf58107
MD5 39bd94cfc32ee23319100aafbac7f4d6
BLAKE2b-256 ff722a1d8036ddef0e444e1b2b7cb40b75f1583c469023b1d99529aad8dfbdcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 445.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c2bf7f82748c5786bb290e16d12ed3bad824a21d9837ba3d9e2e17337279cde
MD5 1f1f24fe3ebebecd82a6969d09f8851d
BLAKE2b-256 420fdacee88b70b30383cd5d4c8919afa31f160c200738d616fb910ec5ab0cdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 445.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98b2181f417ad47ba738fec94c5c5701d8b57c17847441a0c0a49b626533faff
MD5 a3ef253595a274e7922557defadce366
BLAKE2b-256 8ef74aa7db1a0b94fdbcf0c2b7acebc02f31c6934be32ce084da36d77a1a252d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.8 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ededba8d1fb04ceb6a107fad5e6026eabc489ef959fbbb87ec13b151392b243
MD5 7fad47a99e932485bad2d3b50b5a99bf
BLAKE2b-256 c343e1c52f072c9c7b22db906399b477a3a82d701b29376a2a4945db5024b9fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 432.9 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07fb98d0bc4cdbd9fd3977e0790cdddb41070fa3d8b5008f5deb50e246b8aaec
MD5 915d776c55cd76871eeea2522cec09b1
BLAKE2b-256 652d8eac730e03dab35d70ec5141d670edd34177e80f8ecff20f6822c69d0b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 318.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2b20f3563dfa259b4d75a1ccf522d931fa26d7f12c59eed05177655f5aab109
MD5 975bb3fa3acb8663b22b309c79df8c9e
BLAKE2b-256 f0a5f996bcb5f82562699159d07fb8b79ab9c17752432d8c6e4c5f122968cb5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61893b331dc4c6ae22ca47f35a7f4b75875d0e74ce7e96a1a7b5915c98dd3519
MD5 6e93b8d7d88d9d8cd90f7ebaf87ef1d0
BLAKE2b-256 b086403d7dd9af5afc1fe866c541dd2b9585f8786879bc34948d3e08791a94e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 684.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 242164acaef48177d51c10f0a6987941a677f0294349ba43c40acc784cdc9c06
MD5 3ae9a8b7dcefb52deb101d89988dfdb1
BLAKE2b-256 73980fdd0b34e1c2c3e1b4ac4bd88158ff43f05edf4d7c7e21c63c83ce73e06c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 715.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab559d2181b64b45a3479a9615926ca73a32f6bfca87fb100b0b50191ee92949
MD5 eff63c8c75b30a192d3e8789f123747f
BLAKE2b-256 ce8d2fe84a67e2597a7c9ef69a67389362239b3a831ffd9ba9f3f53d589e54ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 719.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad9acf07f667f7bdc1471f571d8bfdff14591029210ec42fcd886ec60a9929f5
MD5 9524f188a9c80b2bc4acefc07d03813b
BLAKE2b-256 63e009c6cc1b1414b75a03c649366d81fd1730d74d478cfa7d60c7643a5efa77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 623.1 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fa55e56c9f994846f8c98af6c087c946929dbf44206287ed88459fdc106785c
MD5 fbf881040c9b492552140a411fc3fbf3
BLAKE2b-256 0b4388f26cedbe69eca7cbffa4ea149cde54f545579ba49855bac423afa0f218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 485.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78c6a114020b7af96870b940a21c36518d23941d0bbbe34eba3caf0c52dafc21
MD5 9d9623be666c4644420288e7b4d010ea
BLAKE2b-256 c7f61dd45f000596524af85a2ab82e5eb5625a72ad95ef1d22871bfc47b1fda4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 483.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 137270066d595220fa6df1cca33e557b159203051409564891a8e59420e49f31
MD5 4a7bcffaac27b06365ae77a5d860e0a3
BLAKE2b-256 4bbb6516f4e4fac8e203ff097058a79fab9a8ec6c29a7791a524e3d2fcd31c86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 616.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a504b19e9386d83cfcf80f50053462a15030133340d2cd41e51703562901482b
MD5 9a4cc260e7c1965b76e4444dd1c3b90e
BLAKE2b-256 418627489c4f4fbaf504d9e85a832b053682f39549c37f95a3416003df269992

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 505.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d05b30192b3cd6216d4bc10544365582373bd28c4a177626269a44d835723175
MD5 07dfa78acfa78672b88541620e771538
BLAKE2b-256 9d16eb55bf2f7a93d5f557c0fa833bd1ecd98ec3c38a4c06dd43c0d2a2c24835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 445.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f27c9d3d554b7449505779353eb82ecc6d4e4a8aab30fe57c08218891eec24f
MD5 1ac952270c3c438afa8130a5a2ce9150
BLAKE2b-256 2920f57c64a3e2e1538da49fc6e5d9f7e7ae5272397c38ed14f03abfea6e5bfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 445.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dcd2eeb0dbc550f2d078f3d8d3e3e92bfbc8d58e46ba675870b105b0bc49152
MD5 21ea6b5421113999fce7fb3d3b1c4cb7
BLAKE2b-256 5eacaaea0f03eea82bd4456df00b7ce38bc9231af4d3fc53b730183820729c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 411.9 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b005aff234d042edde92d336df19bae234e0e2afb8255963068768ec107423
MD5 c627ef39316ef6add6781348d893984e
BLAKE2b-256 6e4b4e86a5f54333862fa31b6cb470a127f123908fec1237f76557dd7b870a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: splotrs-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 434.1 kB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f87db3d022ed8e457545af80ac03520325522053b136a3c850f657f23676e5b
MD5 989f3c8bbee61ae926ad557a5d981d4e
BLAKE2b-256 469ee782720a8095bcbc178321f1fc5aba3831f02a160918ad08dca26ced5f41

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