Skip to main content

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:

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.5.tar.gz (115.9 kB view details)

Uploaded Source

Built Distributions

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

splotrs-0.1.5-pp311-pypy311_pp73-win_amd64.whl (321.4 kB view details)

Uploaded PyPyWindows x86-64

splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (689.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (719.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (723.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (626.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (510.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (448.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

splotrs-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (415.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

splotrs-0.1.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (436.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

splotrs-0.1.5-cp314-cp314t-win_amd64.whl (318.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

splotrs-0.1.5-cp314-cp314t-win32.whl (294.5 kB view details)

Uploaded CPython 3.14tWindows x86

splotrs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (683.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp314-cp314t-musllinux_1_2_i686.whl (711.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

splotrs-0.1.5-cp314-cp314t-musllinux_1_2_armv7l.whl (716.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl (620.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (502.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (443.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl (410.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

splotrs-0.1.5-cp314-cp314t-macosx_10_12_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

splotrs-0.1.5-cp314-cp314-win_arm64.whl (284.7 kB view details)

Uploaded CPython 3.14Windows ARM64

splotrs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (682.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp314-cp314-musllinux_1_2_i686.whl (713.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

splotrs-0.1.5-cp314-cp314-musllinux_1_2_armv7l.whl (719.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl (621.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (485.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (617.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (504.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

splotrs-0.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (412.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

splotrs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

splotrs-0.1.5-cp313-cp313-win_arm64.whl (284.7 kB view details)

Uploaded CPython 3.13Windows ARM64

splotrs-0.1.5-cp313-cp313-win_amd64.whl (318.4 kB view details)

Uploaded CPython 3.13Windows x86-64

splotrs-0.1.5-cp313-cp313-win32.whl (294.5 kB view details)

Uploaded CPython 3.13Windows x86

splotrs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (681.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp313-cp313-musllinux_1_2_i686.whl (711.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

splotrs-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl (716.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (620.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (501.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

splotrs-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (442.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (409.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

splotrs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (436.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

splotrs-0.1.5-cp312-cp312-win_arm64.whl (283.9 kB view details)

Uploaded CPython 3.12Windows ARM64

splotrs-0.1.5-cp312-cp312-win_amd64.whl (317.9 kB view details)

Uploaded CPython 3.12Windows x86-64

splotrs-0.1.5-cp312-cp312-win32.whl (294.6 kB view details)

Uploaded CPython 3.12Windows x86

splotrs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (681.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (711.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

splotrs-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (717.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (620.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (501.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

splotrs-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (442.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (408.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

splotrs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

splotrs-0.1.5-cp311-cp311-win_amd64.whl (320.0 kB view details)

Uploaded CPython 3.11Windows x86-64

splotrs-0.1.5-cp311-cp311-win32.whl (297.2 kB view details)

Uploaded CPython 3.11Windows x86

splotrs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (686.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (716.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

splotrs-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (721.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (623.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (618.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (508.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

splotrs-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (414.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

splotrs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

splotrs-0.1.5-cp310-cp310-win_amd64.whl (320.9 kB view details)

Uploaded CPython 3.10Windows x86-64

splotrs-0.1.5-cp310-cp310-win32.whl (297.8 kB view details)

Uploaded CPython 3.10Windows x86

splotrs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (687.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

splotrs-0.1.5-cp310-cp310-musllinux_1_2_i686.whl (717.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

splotrs-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (722.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

splotrs-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (625.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

splotrs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

splotrs-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (486.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

splotrs-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

splotrs-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (508.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

splotrs-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

splotrs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (414.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

splotrs-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5.tar.gz
Algorithm Hash digest
SHA256 5c864b82fbdbe73eeb56e4fcab8957130e71699891166e1939299d8a84165b83
MD5 8e634a9f58de63e74b07cc14cc66e5de
BLAKE2b-256 2ec55be3b825be7c511432380f9654456dc36b78aa07271c8a2122c15efca95d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f4916eef0363bf8ac2261b841013a45c6c7cdbca35208454376a82a06a01b4a4
MD5 5fc0320ee242b795bd78e9c092416be5
BLAKE2b-256 be3ac6c6b5d3878889db2ce9a8f214c94a71f4fd900ead2075c50a16a04ecca5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43ca4c09ab9456401d527ce5b7fc497bf02d62952ec6663180fadcb10448ec96
MD5 b480ca96e0d7197bdcd93ddb1cfe2188
BLAKE2b-256 6c1e693cff224c5165ba80069361d01da574fc9e5b16b0b52ae15af9d48ce531

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71c1ec0371d2ba76af66f8349b1832afb29cc151ba6baec7e601e3e69ad8ca6c
MD5 214d78cf24b9e38792a6d43171e9c8b2
BLAKE2b-256 af09ff3de3631a09f78eef6a112a3792e0e8178e2746d6335774a21105d920e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa6f2f73919ba452082509cc56a0e363d490caf8e44255ca3a57661254f81eee
MD5 86efddd1220148c7435f45b69690fb5a
BLAKE2b-256 8f6efd67e47d5f7bf6be4d00db769a99251562513e1b54537c3ebbd6d8bff2ee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb2e79bc9b3d93764eecef92e1dfd29208ccd8009385b637a8c1b80535b53b56
MD5 cb1530bd59d922da5236ac23c6997b46
BLAKE2b-256 4e8fda7d037acdc68348a4c3b64a48c4d404a0258f296e59560982290ba93739

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 620bf1d45717c67c75e6fca589b25e43db7944a496e29bfc67dfdf68852655d6
MD5 cd369411bd1b20614185c3f762226811
BLAKE2b-256 5549350888f454ecc41aa4a712c8d3f4bf518d6d8a76c9b6affed4e80704bb5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35378e6c73ff2574e1ef3e1fa33307f6d78cbf7bbbbd712d7c69586b907785dc
MD5 93e5b76201eb9023df91ed131687f1f2
BLAKE2b-256 1f918265b7cc2852e29d84a26ec7abdb8cbcb5461bd4126a1686479e5dec91d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73751de9211285d2d6f5a5ee1202d18efd41bf24bc89843ed3219728deb77274
MD5 c00416acc36adfb9128ee2fb73f9fc40
BLAKE2b-256 d06c62196990dcd94793e9dfd8388dba7d064959bb45d67c8e428f0b67ad6c8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 643ff20f9895cca568b58ed477b82998bdacf879a48e847665b3058630408e6b
MD5 a42d182ada09fb6ed136e12b9fef7257
BLAKE2b-256 416edb493a11c194ec88b23351598379b52348890ef2230492eff4954927af46

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3950441998bebb0346c305f7eae3a695be6538f989e48d8440988152f77d52a
MD5 42f43010668a1b74172c4d6c107b7b41
BLAKE2b-256 8be55d96a3df1bf5080a4b81872ff107c11befc183463b52e4122783d70ae9b5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4256affd4635b3b0622a61bf4a5a6e151c88e44624bae1872747e7770c78d840
MD5 de312e66a9f3a0c219b03e98fd98eedc
BLAKE2b-256 227e1520ead15c44b949fcfe7f924ac57f14e1c6cb7e31c1fb3d132285b9775a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9add0745473763bb505211f35b9e46823fed6c29f566e31a8319d8fce36a4c
MD5 3f257e4cd48219ea615cf39ed5e6d3b1
BLAKE2b-256 90a7aef09ca8c366ac81249167c7d0d4b9f9dd98ec7ded627b6aea2a888e683e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a97bf7aec41d6918a53c6a2cdfc9fe6703c7dfdaf31752fd9e1f1072dfc141a
MD5 19cdd7e79940880ea734caf14b4b4bc5
BLAKE2b-256 068700f46fff6fa54c8b31fcc21498f9c272a427b08074f7076717d049099711

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3bdea900ac4ad74d82a4cd6bb0f07d598da222974b0ba006e91e1a58b804b600
MD5 32162ca175eb697ef270904aee88373a
BLAKE2b-256 ee696f45f55ad26420c306a3652a3c0c90cb6a9be2dbb5c6c7532a6ffa5448e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b5506823e3a035fa9578bc389909fd6af799a4de0d9ea05626f9399b7c216889
MD5 b991d56e043f72a571f17fa0e1fdfad9
BLAKE2b-256 f9705d67109f2f4eabd6e50050eb59ff616ce68a45a874045f580107ae8f5047

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1234e105ba7912c7925c996eb91e11b4f7239922a68cd75f405c6894d0268406
MD5 b2ecda37f480ec639642817e123ac415
BLAKE2b-256 766b10822d962ab876f6808727f364b9a16edf30f92a138e6796cd93220375ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad547310a8e3a75157cd0ae9e34faf851e36f91300a8b83dbe7594fb534e31a1
MD5 8b6ff569f75402e033b0f0121f2a3e9a
BLAKE2b-256 cbccd30ec02495aeb354bb48aa374038ad70890ebf645a7d93e41287b24d3d91

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cd86f9d565583a012e28694a070375adf2564064802c93da7ce8b07fc79fa47
MD5 b957305f7ff3070495ee87490448e2f9
BLAKE2b-256 d07961ddbce12831c78119ae1a5ddf01c36d6c00eaa3d1130b1754d3e48b9920

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd8f6a7d5675a5b80a401efacce19e6a3db715f390100e5952edfd7d9b30e1dc
MD5 6cfe6df6030ebd0a2c08bbc07a35a0b2
BLAKE2b-256 e7d54583961ab0e2cf82cc4a490858faf1b64561404f720bef19a3122e16d526

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f312940a62af75ddf6c5fc8bf5ca1a0e1ff996a28a10d5416d117854b9d84d8c
MD5 78eab302b9d7fd0ca875a2c6f069b13d
BLAKE2b-256 e19668148b4f79f770f71305679bd36b4b3c224c65d0b7bbb52452e4fb4e3696

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53707bc1d962da47a529c636a97328d78387d090a0a41fa7c0a5bf6e62dc1fd3
MD5 434e7b4b2a9c0fcb1874eee385745c07
BLAKE2b-256 518aebbc5493d4ddddf7c9f30cd9a40692bae0f7397c985da6eeadf5bfe6da92

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 983e01ee345d7a31be0c31feaf9fb2e9610a323d6d3d0c79a4cab59fad9dd7a0
MD5 394fed22b583ae643731efb373917ddd
BLAKE2b-256 fe3bf1e032b0a6ed94af602cebe4a7d35c91d03284898b3c87e4555fc395246b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63a769d9f7767757a7c429aaec3b5156a0323b14fd583a3a750dd7951510298b
MD5 e05126516278b8c2114b6d1ddd21ed67
BLAKE2b-256 ed888984c6f27d1f08db646c585dc0acb4cd5376609cba18cb9d01a392448bec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eff7e01c3ff62f445e5971f73c9ab33adf406444310d5c24c2b28456fc6ccd69
MD5 25015876aa8aa927a92db39ce0eb7944
BLAKE2b-256 1678d7d5f277a8a1994dc1e20e5c2905c0866e14e06fbc079eeab49b1a8b5957

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbc18a54e0416527a6fa23b660dff192a1b41b91882fb762ed413d490efa0365
MD5 469f7e3d44ed2e1db529905e5aeab0aa
BLAKE2b-256 f648d813786994f5b66d0984d41143679bb1b949d22cea8ce66a294d5e5ed40c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa74102b20887f01540cb58b553b12edc392a97b4898c09bc97fccda6c40095
MD5 14265387aae87af35cacc6018845ff7d
BLAKE2b-256 70ab530b9c0b7578c4bb71985f74b448e62bbe5bf7950496b2b9d6c5d0153066

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa061d66e6aa98597a72ae192380276b61db2ec6765adb46d6bc46e7e9d4b0ba
MD5 7d8f07d19260ba67c8780dcca0a21120
BLAKE2b-256 c192f5bff918526ec6b84921d8528a0bfe2710704b6dd82daa8b37f605b77a22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d188cb80825173276388186d56c60e30e973081f6046ae1397ffd19ee67cf533
MD5 13fe4e0b4bdbf8b4b6e12f10fea845d8
BLAKE2b-256 454cbfcde6edfc191bc72849718d6a723c004e3edeea4013693d23262e9a2b4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6310288866913b687d1b0d32eaf49bd2d9133559b863f889074e50e95031bda
MD5 0b0a7f21697fbc70f78d9da3b4bb3f12
BLAKE2b-256 7256304052298b753f841f3749d699cb2e502913a22e0f17fda4d438bdd08869

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1257fdaa7d854ec9a42c0dea19d254874e4c52e84b47d3ec7a1d9334ceba90e
MD5 d33d095406bbb1d085f8328a346f1a0d
BLAKE2b-256 f8933a19a4e03ff963e14f015287fae0c5357567b36c511a84d572da75acc410

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b126bfa272be3c04941273b17d953a18bec8058dd7ca3da7c31fb0c110c6796d
MD5 95cb01196d5bd20a0444e6205e921e3d
BLAKE2b-256 42cfb0184401ac7d582db14b6a7d3e8405877c12e61c69d50867c08bc5b7f533

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7882bba89a00080ab47a74cf01caf943366da63a07decc8951f31fa819a381b7
MD5 e6a819dfe71990dfe04725b5d10ee109
BLAKE2b-256 52e873887ed282e836bfd68ae7376b643216edd2d98f49d1c533fc5e9e83eea8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5cbc542bc7d3442c927424225b0b55891ebf529bf2f56c35dc50a04db760bab
MD5 f059c5b526613ddd4e7046bfb7311f5e
BLAKE2b-256 26d9602a6f78b1b35917f1e761b9d5ee951d53d99894cadf22625589ff3383f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86d1dd79d4adb22514ee421959c3fa145c6aaabaed140608922b60e93882c94c
MD5 f54fba147b67347697e0136ac3a8b078
BLAKE2b-256 1415c130ce33e054010101ad67527c798df3623acb24555e91c90003ccbefc5c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e115f2726a35fc030f66ba6dfa1cd19202d66a2549d76cb2d29e9232c8b5ca02
MD5 c5ccf1112f89a0f6a2208888d2822cdb
BLAKE2b-256 06bc48de301c4dda64a30608111e6fc16977967fbb4b91130a6479fd965c42eb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de953b50d5bf439532ef531a3d439f4132ae3eb3107e633ea35e6a7eca34fd85
MD5 78fa282a451439c102852a7265b794a8
BLAKE2b-256 e3b8958e936d80ff3626d9bfe9543c864f74e3621066a81205c52afcb8c6c4bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b029ed4fc240209f08eb558de8afe9bec232055b1e8e64b80c124345ef52ad29
MD5 e34e0722cf36066cd89e5811690f1728
BLAKE2b-256 2c1668386d2f51e282b42a261bf9fae30fb993176eb0114cc80634fa46c37b59

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c49346d6c5243c5df71a766b77ad183433d0545d907802def6d7fbc9f04043fa
MD5 7d6112badf4ed9e4814557349ccbfc1d
BLAKE2b-256 8665415dc7ee4becb5064d893ff256369e59eb7da4de87e1de92b50f8b01fcfa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eef018a4394b0dd72d9b4570233942cc742e8ff6861ce3443fe1f396a45b08d
MD5 4533977ea4fb7157a6442d0f4d613a54
BLAKE2b-256 7d6a7e86bd857e1dde2d410a99e6f0ac9c2ec46bf622d4b9c2fdd18b03124a08

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 986433f6d6d5ac75c249df010f9dfda807841966348f832489e8d4ece5bc3c55
MD5 63e974d53eac0a7d0272453e05206845
BLAKE2b-256 5a269c756f558cc9b501e1d48efef1c3587ce97c4995d2cf143e1088504f3d38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4a0b219cf8329e63d0f10d0b0daa00b47a0ae6fb5f10fca587b57b3657bbf60a
MD5 1a51642b77e08aa208a1d9490ef66b8c
BLAKE2b-256 8200732e40181fa4c0414f72e4b2b7bdd5e0038168bab814c1f1d24e833d06c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb3a72151610f77188d0b6d05720f995b4e590670d4b3adb50eba77a2b24ddfb
MD5 63a95537383fc35bddaf286263501cac
BLAKE2b-256 7eae76e0e0754a634b17cce7bb76b9422b5d2fb41ec09701a25626392b45a297

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 50ce71cd004ce009fb15fec08f604619ca94a3ee216825a9ad3274882e77d785
MD5 07b18d7ccc21dffe1f429b07c2b2e2ea
BLAKE2b-256 441a1a793cf7a0965df6ac47891e22e72f042caed0682477c5c255df2fd33c88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39ad236bb0ff007ff8e867e1e642a7c5d049d2a24c1f42cbc5c519b1bef99b91
MD5 5c57a902b4926c3e111d4ad2308b5429
BLAKE2b-256 5cfcd7d52db5e576983c0e28b20107b064bf805623517e33e008ad20d48718d1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 644a7789a653a94dbe5774ab4dd46b7e79d5d46c57e5b1cef7ea579f81cd23d8
MD5 f939b2b9a2a1da5db502748fbae66d09
BLAKE2b-256 e78b26b8f6b3fa5a8de4b38e262690abf96c149baa24110fc8299dd803b8bf8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c7ff8b1d35ca1b03e3703816060c16c3059330aa4ffca51e7b8709bb05be4463
MD5 d0745a8d25955b78e81ef2d57e26a7ba
BLAKE2b-256 986c20d8e4d72c50d5b47662f3e71dcd89f1b282136fe2b2ec71094d8ad4a3ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea93e88060e17a95c7adfafe16b1fa87954e44fbc40b056671019d33ac6810bb
MD5 e0eb133a7bcc7f2e1942037425db2e46
BLAKE2b-256 0b48039bc54e7ba749cc46878103bebac0ea96b835b37b1857457725dccd654d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caec969d26fd58f65ab36535136789195a2324e578eac3b377294ea0ca196d6b
MD5 dfdcca88b1b4fe19420ceee70b71e716
BLAKE2b-256 9e555746591fc0fe24be82aad4635d9367ffd8d6d1cf79136b7ea980048b52c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89aef9c05812dfa3e580a3af6be9e2b6bc0f166a9bdc839eb606f3da669c9e77
MD5 414f41624fb19a57ee64c6ec01f20efe
BLAKE2b-256 4b3f7a9e187bbe718d15c045f6383c5102363dc80627ad96d2e0bf23f0afaec9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35f176e606ef9c73541e9e594b58e84574cfbb0c75dd3b3728a7a5af78e297ca
MD5 44125b383e7f156c3d4bf0beeaef09fa
BLAKE2b-256 c22a3451bd5c135652778cb79818e438241b3757c3cfe7d379fdb79795f1d058

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a3cfdfeaba458eb00c77217e69102e98cc997318a263c1f277ceed0b3ef67a9
MD5 786a99a11c481d4ec4c726cb282219b2
BLAKE2b-256 b71dcc03cae155fd4340ded3748a52f29e2823496db3eeb2d1682be78c3c2abc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3373676743fe16245f51842c6b5da21e8948e73f0e8a3218e899cd9f091e615
MD5 1df28575fb98bc8e149cd45578136907
BLAKE2b-256 2c6a6ba726f1d883f1b8da84666a6e96b00cef28d2cd208d2c20a9d9ecbd34ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8846fa10683985fa9ce5d128e79fa1302ffa71e5fb4a4985799155eb601ad05c
MD5 0c1612fa4e5ccdf4efc3cea1c754c4e5
BLAKE2b-256 d3654791c413852890bf029c74677c8d166b4e65ab640c0187c649c1f0610dc6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391779ac1dd7191adf87c1ea04b4f40494e4fe59ae185746d3cf63442a429b59
MD5 d734dc5183a5053170c0e7c7d503a5fa
BLAKE2b-256 9588b88d7a689fda638eea879da6c3db61ee6ebbca1011f595ffe1a91f79154f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee190985399aacfae5a6af57676de566937cbe34a25872ede762064f2c114381
MD5 296ea28aebec7ba0b8acc9b8955063b3
BLAKE2b-256 ac48eba08f9107999dadda1c99969ddbe78f93388836e2492c11e40b18893f6a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 61ec7f9d8097aa7ab1440bd9d57bc11e5018972ea59b5ba15bc34a673a3637f3
MD5 dafb41cfffefd125b7c67897660320af
BLAKE2b-256 391246e3f4f711ced4b663d454a446ff7f17cf3994c8fe61863e89b71ec4a3e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d3f274c20298a2358ac49cb5fc194bd77f2a126f7f22b9c657ba78e88da2de2
MD5 30c2d68049e6b1824d62a2b006c523a3
BLAKE2b-256 212e5722c9b8cca2e28aa7675b2f72bd4e2f9881ace45dd1c84eef07a41d25dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51d73506d930c6705a5b4f753c8d3e572d1ca33bd8838f048033ec11fbc49c10
MD5 a4fa05df94ccb5095d055891a766f93c
BLAKE2b-256 fb870e740dc7b0d28287fc77debf219567cd51bdb0f471b360ffb4d26fad03bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 812242020da9fae1cf0a3e3e18fcf7f608389914b17afa8e424d1de59fbae8ef
MD5 9a80db22729dcd4908168b2069a9ebf7
BLAKE2b-256 b5e85e939199f1a4041f6b36953ed0af8f3fb2b80dee29ca10350096f0ed40e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 187654010629cbb78891df652866683c3de534180772d46bb2d1bcca01706ec7
MD5 a7fb161fdb9deffa0688aabf5e20b084
BLAKE2b-256 a3c346a2ce777e15c4b22937ea05eb7ad9ceb97deca9cd743d6c6de322cca33b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68fd5a0ca9c23c893fcb831e2d3d49ffd2b66c9e48607e8848083ab2a561bff2
MD5 8980b997ae77a5d1c82ea3a525c4a4d6
BLAKE2b-256 c266456d9d90173ff4eab718a2bd0bfd71e247b0b09b356258884ea3232cdd9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba993692a4eef1e79b5e4f6edcae9390b6d9de0c97c5be1c6db094c02d07de86
MD5 e2675078070f64e81d46f9f5245b2a81
BLAKE2b-256 27e7027f47daa2d3a9590b7f7a5310bef5699820b896dcc2159db7605569cd7e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd610892018fa7ef80484fc983ff85cea12dc626218522cfb5646100c5eeafd6
MD5 1e516d4098e8d07e4eb2a035588d4cd1
BLAKE2b-256 9534df0dc13958fe430d35527b4b23c56ba30a3c3a997a465a15de752b39efda

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e55c3ff0d02c02e48414f176d93a9bb5a33980a19c06c12996c2af506ee6f02
MD5 ec50c9f3c63d1ed31596071d1708a6cd
BLAKE2b-256 da2a7d04788b7c01fc17b3eabe4b174a1d0c91840d0c66a1e2638b088ac647f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac079fe4f9f90ea3e88a3c5c4f0f76a3f3431a2b23173320f25cc45efb38ab8e
MD5 cd210523149e889fad9143457d20f65d
BLAKE2b-256 d0670877c124a0a10a16fa3f88cac14e9b2bc1920cab5acb1f60ae219829ded5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e119a7dc91fc034a97543a0f7a64b48163011717fb352de1b93ed5da0ea89f7
MD5 2e6f3e7e96b437ca4fa3ec058aeb3d0c
BLAKE2b-256 c453bc08c10546928a902be37da26f16532a4e345e79e156d5cf2bf58ccd15fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3df3964f06ee8cfb74f88dddbbcab83a764b67ee900a8525cb77dfd038c18420
MD5 6dc8ea2ad7be0c9ff5c1d604d99a2930
BLAKE2b-256 d3d3ff6ccc0a792de629bee1aa81ffd3f6c6cf2c2e66d67a67c04aac6fe042a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a0278a63fa799aa933b9113cb8ed97028f00920f84388e305a95445c42de552
MD5 519bb601921db48dc72547cf6b193ed4
BLAKE2b-256 50fe93d9ad403103fcd6e4d03929056305a506fa279629a7e08f7f344606b37e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ef01f631f9843c5325b4ca91299d6a417909058ad051b2db030f3f51cc371db
MD5 14e66051f8f4302ba2f3c359b3a2bfaf
BLAKE2b-256 8f0a87c223fad24046956dfe05ea0a377b5a270c64b92274aea7c2e98abd82e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d422983f5004067e2b3bfd59e7861c7190f7fc1dc957c5624dca99492da5872
MD5 0e678e8fd6821ff71ab6705d18181263
BLAKE2b-256 b7550e5a445cff27fe3bc3a1af4e2653cc4a88a116629c478ee43d7bc4108b24

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 292b4c785f53717f5f5742ea370b873a7feac84f6bf20338b8c3ddee085b6e8a
MD5 e1b3028e1a8bc9ade853cdab149e93d1
BLAKE2b-256 f9e59481a167837d0e57929483eaead3a8bb8999c65c9bae5c0a7aeb94825889

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ecdd50b92559325a9eb7fc703d4ccee10b9676c773a2fc96e4edb3eb09ebbcdd
MD5 9ff1781db39b7bf48dbd64887a090a63
BLAKE2b-256 aa6d6fecc864578595fcf8c50b155b0c4697c422319d05ac0ff00a23d2e9b700

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3b8e34edf8bd11c563d9343320f9bf2467a044c213a25c7fe88962e520d2ebd
MD5 baea9d151fe2eff584bd9230403f868e
BLAKE2b-256 e1d16d3bf190d483a22d515c7fb9be48450c8ef029c21353099ce84d9a4a0ee9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8215642233f73aa2952907aeca5a55686c58cb4df2a43a8a10521185995e555e
MD5 f48126f2979fcd1b09fa982679a77c38
BLAKE2b-256 ab9e30a01b0489d84e49822a158a45b399751500af2b864e34d1a37c75879b61

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec9fd5bd7a8bbf0c80887c87f6eb7593d3021f4747515f9d256bf68ca243a2b3
MD5 d9dff1bfddbf58b0564ea5ba19994c65
BLAKE2b-256 e95461ceb65389461f412fd13ca2312240c1953207138c20a2bae465d28447fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a01eaa64af4c8de003d5ef44eb2d136d684503994fec62b0ec5dd128195b45da
MD5 df46e5fac2477a8f1416808516fe9454
BLAKE2b-256 961fa9f29002bf6916ba4ecac64ba2ea818e4ad31521493c8ecaf3fd09a64204

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a82db1ae1674a180af57e23ec34b9210d8639f782687ccd2c309a3e6269214b
MD5 8c8a26c7abb3efa69c6b63810d275a69
BLAKE2b-256 abfa91d1dcfa8b84a18f12f43ef89c7e8e7b1fc084187e43d5140e54fdf6fd58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fc9ebfcc21e40b38c366b1a1b9586a126954a28da83b832f3bff804c4978a9b
MD5 e91f288875aa207e80690b014ae087cc
BLAKE2b-256 272f5ce9f4303bd80ae946cb941a00455b9fbdbd9f638bc672213c28bcf7dfab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9870ce7f1172d68b6fade2689492c2c4141b94c5874c665ba3d88c82a881ce0
MD5 74ae3d192be37659bc98c76b948d5d61
BLAKE2b-256 19ce535aea11ea8ad3dc384e20fe5fa8dc9e107a0c3b1701345b391cf2d8f32d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9de0f542af11e291f8ad94bdd80d4d3877aac5d298ceec86aeab8243f79403f
MD5 7fb590ba97b403706ccc574a73788326
BLAKE2b-256 f077cfcd47d14ea71c8e52ccb2b59ef003ed592214f9c3e359d55da04374ad62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbbf110380f0f503cea286db47732f3c654239c02ed2da7b4bba21f4656eb248
MD5 208031d7014feb050f1b88b1e7ecc619
BLAKE2b-256 b3d5e62ca638f0b72bd29586cc51f17cba0183095f7279f916d021d2ac608985

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c676b54d1efaaf3bc5e4356c65794d85aa92b875d46d6ceb15c8120d466b223e
MD5 bb8a3278a3a26d60dd3fc1ff3d3202ca
BLAKE2b-256 4002e396cbd91299e5e0108ba28a392d8845305e0f60100945a71d94ca765ad7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b430b405ed010618dcc029bd50cf6204b9f9594c36f312535c07761c3190d4f
MD5 19691e839ceec038e7d3bf7d206f24ae
BLAKE2b-256 ee486d877fb5fb52fbab79da56cc52284b83abca8142f7a00e737566377a486e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d92d3c14583a002cfaaf89003c0085727c5482c6275226a6b4cad8b049b6f404
MD5 3f3f1c48718b7014712db83928603eb4
BLAKE2b-256 821dcb83f2e9a77541f24b96faf6779816b3df1e7e7b66d366894baa15e3858f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c27a9c9a57ab95d5da925cba4dd29a0ec2c874b1a79311f8276a69d7fb0d13a5
MD5 9cd488d0c0715f6df7a41bc6383c7648
BLAKE2b-256 1979369be5a5525b10ccf0465488c67b5a2c7fb1e82c18aaf3b609cac24c0214

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bfce13824334c50c9fd1b4d0c1cb63e07fe97c5e8a6f061f6f188bdd296ce8a0
MD5 0b9e1953c3624c314ce58e35490483cf
BLAKE2b-256 ca8fdd2086cad5158fa8e214e76bc084e2beea3fb34d9d0256e34b806e0eabe3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3353a36f32a7cd6805ba9dbc074a0b560499705f810215445fb0d49cdc3f7aa9
MD5 df6f6e726bb08c6d987389951103cda3
BLAKE2b-256 c710382317195d69ada099afbb9fad3464f8a53315112443d2b9e5e81b9e173c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b77a7abf28195384d5f73e0cc45910c09738ec6e948523016288ee41e87d8c7e
MD5 8aef430a66337f76a667a973359504d6
BLAKE2b-256 2b4fe9e858afa90cef519af5bfebfda6c08dd9706a83c3891900bad07e152c6b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48bc813cebbfab74e18ebdc9bb7db92da453b65f0b5bee213866d5ae14e110a2
MD5 0ee7c2142dca5eb19385f25f76c45c4a
BLAKE2b-256 f16da9a3df6728150d8a67770e6c33928f8d7ba480b6dcbd2e12351e5ff63827

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaf2aa5bf56437c734229e64b664603e8a84e61832c86c96fa495760ea39d21e
MD5 14db32e16082ad96bd6d5cc41bb1c605
BLAKE2b-256 696363390b0686025b3d09b6bc4ece5e7158a8ea0dd6386505ff5fb051647cb8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3030153a012ca1b2fff427fefd377e94d9029bc474616471b4e28ed9ea49dd79
MD5 e7ce14027bd8be8fe29f256a4f80861e
BLAKE2b-256 4ab8acbf8ea7a9c5840e9d076b280ee57827cf62ff9860cfa488ff7349564ef6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16d27adb067d494adc83f04407b11ddf045a00752e49c8e7701c40aa46b5ccb7
MD5 a6e620b05ddee2c7f74ab0d8361813dd
BLAKE2b-256 6ba39784f8d09c6acc93804d3bd0b4e3db467d7f0ae60b2ba0c36df1bd115441

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e3d7cc1bdaec30c3014010dc7dfeb1a005dbecc72babe92056d6407a453d69f
MD5 1f4da60d26641e1249393fee3677a7f2
BLAKE2b-256 818719f543f16e3d70cc6069e39e3c2d73b3b107ef0ce7b1d5b4f392163da3a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd6a4d837be5c7c2cc9b208007a88182ed33c75dbe214148b77289a0bc807cfc
MD5 92442984589265e2709413cf862e67b8
BLAKE2b-256 54171c01dbc30348cbd178c723b8498374f50dd8a06a69fc5fa24c83e9cbd267

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21ff241a67da4049ed55202017fb2b23698a288085b3cb7d04db77766ccfcb78
MD5 12f68df851efe17d9b31cc0907e9e3fa
BLAKE2b-256 be516cfe059bf836b767dde2b788c5337b762018956f1a831f6069497b0e5246

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a17ba8b12944530dd7d49f558f2ac444b33fb8122f3503aef330907a697d7d4d
MD5 a4ad62556888f9b07967685127caa814
BLAKE2b-256 e6d447fa9e34e505246834705e7b5cc422c440d7a62df64151f436be3ea2df09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4ba030fc3a3f517e17a123e43392aaf53c9ea0bda34715ea3a8246e6dac793b
MD5 4f13ca92befef108310d01f8959ba01f
BLAKE2b-256 c5b5bb63b30e725cfbbf584114ac11f052cf974036d4b4dc8c65c84e3671beee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40c60f8c9bec627dfdf81fa095b2078b99e09198c2de749e1a6843c279edaeba
MD5 ad29050d5403893e66a448579b2229d1
BLAKE2b-256 2e2a63a38c8a79bcf51d4bd9d3dbc38b7d3354fce093e46104f9ab571580eeff

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.5 This release

99 files

0.1.4

99 files

0.1.3

99 files

0.1.2

99 files

0.1.1

99 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page