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

Uploaded Source

Built Distributions

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

splotrs-0.1.4-pp311-pypy311_pp73-win_amd64.whl (319.8 kB view details)

Uploaded PyPyWindows x86-64

splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (686.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (721.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (623.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (487.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (507.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (446.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

splotrs-0.1.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (413.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

splotrs-0.1.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (434.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

splotrs-0.1.4-cp314-cp314t-win_amd64.whl (317.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

splotrs-0.1.4-cp314-cp314t-win32.whl (293.5 kB view details)

Uploaded CPython 3.14tWindows x86

splotrs-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (681.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl (710.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl (619.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (614.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (499.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

splotrs-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (440.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

splotrs-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl (407.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

splotrs-0.1.4-cp314-cp314t-macosx_10_12_x86_64.whl (435.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

splotrs-0.1.4-cp314-cp314-win_arm64.whl (283.0 kB view details)

Uploaded CPython 3.14Windows ARM64

splotrs-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (682.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp314-cp314-musllinux_1_2_i686.whl (712.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

splotrs-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl (717.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (619.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

splotrs-0.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (614.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (501.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

splotrs-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (444.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

splotrs-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (409.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

splotrs-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

splotrs-0.1.4-cp313-cp313-win_arm64.whl (284.0 kB view details)

Uploaded CPython 3.13Windows ARM64

splotrs-0.1.4-cp313-cp313-win_amd64.whl (317.5 kB view details)

Uploaded CPython 3.13Windows x86-64

splotrs-0.1.4-cp313-cp313-win32.whl (292.9 kB view details)

Uploaded CPython 3.13Windows x86

splotrs-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (681.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp313-cp313-musllinux_1_2_i686.whl (710.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

splotrs-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl (715.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (618.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

splotrs-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (498.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

splotrs-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

splotrs-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (407.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

splotrs-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (434.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

splotrs-0.1.4-cp312-cp312-win_arm64.whl (283.4 kB view details)

Uploaded CPython 3.12Windows ARM64

splotrs-0.1.4-cp312-cp312-win_amd64.whl (317.1 kB view details)

Uploaded CPython 3.12Windows x86-64

splotrs-0.1.4-cp312-cp312-win32.whl (292.9 kB view details)

Uploaded CPython 3.12Windows x86

splotrs-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (681.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (710.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

splotrs-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (715.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (618.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

splotrs-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (615.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (498.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

splotrs-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (441.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

splotrs-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (407.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

splotrs-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (434.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

splotrs-0.1.4-cp311-cp311-win_amd64.whl (319.3 kB view details)

Uploaded CPython 3.11Windows x86-64

splotrs-0.1.4-cp311-cp311-win32.whl (296.1 kB view details)

Uploaded CPython 3.11Windows x86

splotrs-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (685.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (716.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (622.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

splotrs-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (617.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (506.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

splotrs-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (433.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

splotrs-0.1.4-cp310-cp310-win_amd64.whl (319.4 kB view details)

Uploaded CPython 3.10Windows x86-64

splotrs-0.1.4-cp310-cp310-win32.whl (295.9 kB view details)

Uploaded CPython 3.10Windows x86

splotrs-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (685.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

splotrs-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (716.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

splotrs-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (720.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

splotrs-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (623.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

splotrs-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

splotrs-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (483.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

splotrs-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (617.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

splotrs-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (506.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

splotrs-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (445.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

splotrs-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

splotrs-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (412.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

splotrs-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (434.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4.tar.gz
Algorithm Hash digest
SHA256 27a21557ed50a99999be39b6a6d2562d73daa470fcabf77546fb71108a3de353
MD5 a52d102365649008dd2d7b542a3c63ba
BLAKE2b-256 6f11b396a5528e7f229a6cf1ec9dda9382d5522103450bf7445b2b904ec8ce5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 54ce528b62fa4bdb99b9a6afff20cd4a6fe2fee53c4c18a0dd82e39917a84584
MD5 00969125e43d9bb6d4a42a0242838be1
BLAKE2b-256 f6217f6882e6011fabd792701b964b7294bd3076490391aea91451704a098b14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baae2b51a5e59060da2b87b4f73dbd103ed3fdd2b8cc2e252cae3f706ed48a15
MD5 fbafda277afa3dc17a77182ef21fb67f
BLAKE2b-256 167bece650a52f6b1b96b7bcf100a334b4ae0bd02b7462e5e903cd7485d7ed84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e0e00127ecf8f8fc262c19c71e9c2505a5eb1117283d80ab3dd77edcff685fe
MD5 99793e3cecd1382405f1d122d2c7f1ae
BLAKE2b-256 dfeeab48ecf192ad978f3a030eb6c5d3b51a7e54e252e6223e54a5cd3ec06247

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb8a16cc7124469005df003e11a23e41ea4785a0277b7cb6868971ff92525868
MD5 dc85022156373378dcc0ce0001635f4f
BLAKE2b-256 505092c97d6c46a7a94df73f0a412b536f339d6968c1fc2243ecaaa21f872108

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dd1dace06bf4e4bfb1bf5b0ddece6a3d9ece4fe3952b692242a39c244e3eeb4
MD5 8fc804bd111e270336e76bc168001f92
BLAKE2b-256 bd1e607913f0b32252df5459a27e903488f1a9ff579d2af7b266c614a23ff914

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 548eead9a2e76e3dfbad775fdaa137a4223443562ffdacbd07fc50d5271f8763
MD5 3a32ef7fccaa963efea673fd4dbf8706
BLAKE2b-256 90b583245c448c6e70ad315de98daba835b4a97e2666318be38400966ad26a8c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d4d669bc147df3371584f0c0118a241405729d52976a27c6dd9af2acee92387
MD5 39cf926980ce023fc5daff76ade811df
BLAKE2b-256 517a72e637b6b32adc9a8c2568c23e891d47beb0cc01a48a5234d0767a901e94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c371125f3f41ea3c5341b7b99a03e6fa2af06294ffd6b7bd11ce053ba312115a
MD5 50df8147630a8b2e654ae9d4ede52577
BLAKE2b-256 26648b383438777392e88c3ffe580d0dacc0dcbe6eb39b60ea44763af9af4d02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 438d0076db10965cf8f7f8ce69b1d7e58867b62602a513f78a4550c6454b2100
MD5 4704f3a33ebcc1f8508926ba61dfd51c
BLAKE2b-256 93391593888f4ef9997343f02cd3cd9d16955e93d8809d5e7115723a109a731b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de87a440c910423f6e8991a4486201bac20f1cb31a76242220b1eb573d0bf72a
MD5 b22637e0f243ee1375a6d74d89c3d561
BLAKE2b-256 c2742626ca4b71849a9e28238ace3b3680fc7937164e99161120feaf6114a93f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e2a32e2db6617700d00f3cbfc0242a28362c889430996fe098d55804cd4c550
MD5 30aa11d5a2e1e8330885cff7f11ffb55
BLAKE2b-256 5849c34b2db878fba036d33fe862600e301b7650b0122faf46b919e80200d719

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d1adcd86fafc224fba52fbb83784eddab5746c2c5f453e3e124c178bf0e24a5
MD5 b0e77a1af196575e8c5a446bd5deda7c
BLAKE2b-256 798716a2c297cf670722e4a1d065b4ffd78b2c111dfcc68d2ca99963d8e3a345

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2df7f9f37de7806b72b1dd00d7b59223600b8657237b995ab28153035ab283f
MD5 86d26caae46aa5c19f4fe6b11778020d
BLAKE2b-256 5a2229a1bbeeee999dcd695b45bd8fdc213d7aa8a2da71049d1f4d7e8b7db05b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d093f584565c557169a491c05f4822002b776ca1403ac0d6e3ab43692ecb828a
MD5 e164b560337a3382dd8c02f0af33eb40
BLAKE2b-256 2c44491c7942eeb846a6fdf34442c41886a12c8f3438cac2381974a006f61211

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 72e83f12ba9698b8d2f4d3f8cb5c72586e0b23d8349b2ef03bc0a1e8d74ded48
MD5 23eea53722f99f43bde7cda99c3807f5
BLAKE2b-256 c30c21712c768fc4a340cdb0d4ee0a12dd601bc92778bc0631edcdeb0a66bdcb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2d38acd9355714eb90f2b333cd30bf0dbcf0ffee9c73875791ff6362efd9935
MD5 bbd782f6e94d14599488dabaa6123672
BLAKE2b-256 dfd0e7456de674dc40ac03f7fdf22cc79bd3e019fd540f8d2755698eba04db88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1aa103ccddcd98436b2447ff58f0715754358f8808ce85ef4ba236e6b1c28e53
MD5 f5343927547e3f904c763930dc453b54
BLAKE2b-256 b96568776847dcb72e49bcaf495ce14fab84050dcdaccfa08bff8dc9c350ecb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64e65fbdb16aba32dc391a427a8b79e03337b1090c0eff21442646b5d1a8fe26
MD5 88b948b829f052d36f329d6a48d5f687
BLAKE2b-256 35648f5c9cf81fb5cdedb3a67f81b2ad4acd0b5300209ff0d23bd8f01a8d6ae1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39aabf40b1a176c3190d3df0c38e1cc0d56f4605f83331c2682b123e6a2feca7
MD5 dad6b6915feae7b9a17cb2b79bb11e52
BLAKE2b-256 380b7fc2454864e99fb1afdcacc1f104c680a787c16dfc1bfa88dd468240a643

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ff151bb3717e73ae612fca8c41538075d9688ac8ccc144135eeb6967c43ba0
MD5 caf619c0ae642780a796722bcf2d0a33
BLAKE2b-256 143440c6dec04959d58a5684ad4fde292e117e22b4f238c21f18fe399887ffd3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fb1a3be298edbba114124383e6dd43095482b693a05ca6273f67fb7936e5ebf
MD5 679b91c5a1dd173ccefa7f06981299ba
BLAKE2b-256 a5337a1f7726da85c1de20f60e57cf4cbbf47682f2609e210d725e37eeceed9b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2faad3fe5602016156f7a07a399a9c493fb29e77a6cc535f4ebcc75e4d06cdb
MD5 9e0507619754b1ad2a039d510e4c7ad5
BLAKE2b-256 a2f94c23ebd08cbbc67bb4edd484ea388d753455fc89cf85b126f9ecff534672

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f67792bfe2c865492b67eef6d15f47e8cf594c316897f90b2ed34c9a5a1ce511
MD5 4a59afeae170a6b3f251970ff8f90d0a
BLAKE2b-256 e2b8b47d366c4d88e6e9924be34e0584621bd153d13c13cfa2b9e48fca8ad47e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7384cdeaed672a51993258c37d306b615fb03ce189acf14aeb0a2d3653c49376
MD5 efcc6a41a7dcd7cf927f34657d6e9564
BLAKE2b-256 8c0ed506848eadaa85bdbc8ac12874e36110f7ffd47a529d1b86ef3f77a2a39b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1368b3ad684adba1058b6a9d3ceb3dd1b00f73898091cb7353bdc7d672394aeb
MD5 06eafbb972879a7738b22e59d3b328f2
BLAKE2b-256 e4e95bf6903897cd26b836d4a586f96d5e402d0f924e2059f9b4438a4d62c6fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d62884e4da2f65c2d7884ff7461200e168a7e37946219ddf1433d27be88812
MD5 ab14a2f5db459ea9e18e4c8a611f155c
BLAKE2b-256 e03b6454e70955be2bf496ede0fda44d76c6481e5f2d440277846d857aade4b9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea9621c81d1372014357288422f494cbc4c0c27dfaa2a454d4e00b36341e74b
MD5 ec17fe5d743462242e3afe10be88527f
BLAKE2b-256 4c97f9da69d6e8a96c14817a889481fe2a025740907d7125a2eec0a195ef2649

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 247f82902290062ac9ec2d9d0fa88d6902021e28be285ac8f3ded705a3c7fa48
MD5 798c5f98a5a4904e7b0b4df83c3b3077
BLAKE2b-256 a144ce206e301f6385401e2aa495dbebf0a2b6ad91356a317dcb0e9052aee6ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d53550122ba88473edd0ee07e706708627dc29114c25bc799d36586329acf94
MD5 7da8be9797dbb519ec866be0a0f25044
BLAKE2b-256 7c05abfde00028d5dde1a7c87603a158149931c7d222f476e27098058dd5eba4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4239c9ecc4af17a175746ffe9dfd2a8efc3ef2eaf3d1bd33f16c80c4470691cf
MD5 b2341a409b28722e2b135d464690dcaa
BLAKE2b-256 bb6b3f6d40d7c5f462f6d3b39fee9099b1baeb4c0191f250e5420dc85ffb706c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19b4781c6871f30588c096e3a4acb7098885d0dc9edc42b142489444963df45e
MD5 62998f1342ac8a57e367ce83893df900
BLAKE2b-256 73830e4e23537ef7a33301ff5975a2f4d5c4e37acddf8bdba643eeb15668ca80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d92f2cb9aac28cfedf00447e00af85f9e41b90928e51706a94d5f8b516db9ac3
MD5 d6e44ddd5c256bc4b1e527ba3d067359
BLAKE2b-256 90798e73c327b6d14858a29ed7980b86ed5cc2ed1c94326f26d87ec8b0a2c35d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce3a780d3a9ee878df146195f5e796deffdaf658a2049124e516856ccb23dde5
MD5 96180f15b7ad1485b43abab9e870cb63
BLAKE2b-256 c9172abf5ad87f357dfc8cf9ac0b3ea091f7fbc6ee7893544db245061eb26b06

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 036e7580359ac9cca9ed9e92a2db5371fac1814083a5d76cd066b8ca33a14caf
MD5 8a60b130ca50a1a1d739b73ed145175b
BLAKE2b-256 879a214c5eecc3679a6a33fe8ebb5c8aac744f80ce79115c7cb71f5348d271d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b16aaf358b8cb0fda15dfc8b60495fc08956a47caab531939e34557a63578be
MD5 571ba7d154f61988b81f4ebe223b8a47
BLAKE2b-256 fc3d1ff63c45962cbf6cd4ee483f8bb6285bc1bb4a3f313351ab3a84f8304dcb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e30302ba1f485b17a8771661962b00570067c3759e9c4d83e5745ba4e4efad52
MD5 36b7b16fc50e2da35643d17a405842ba
BLAKE2b-256 6a8279147a639064ca03931834399c1ec29761b8890ff14a1544d0f0792ccace

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecc16ab8c4bb66192ab4e703d711947272d0c87b6d5ae47f82336727b007cad9
MD5 aa7d58f2a9e64474aab2503a1f45670d
BLAKE2b-256 15188f1e32f8b02f8b795537593cab4d71b0511196350a528768b3aa9d2034ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19fb1104de00921e8a7ffde47aec96cbddcc37ff22b66c894abdacf5522b0cad
MD5 2b8f3e67c93113c6cd994189a679fc52
BLAKE2b-256 1fc28e52003a5e130745a08acb70b1c22c27c754076df8f735faaae39e7ce1b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa89fa77b3ec0851cfd497e3827de80bca869a12877e68ac4e8ac6641864e5c
MD5 d3520f882ac8e6a1f927998e24d39369
BLAKE2b-256 407da4e2aab57dae5dc3cd6c25e8084a37511275cbe4b5c830d6704a43abe195

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 272c337f94b7b05679ee74bf2e8aba7caaf2fa8e40c62334d55b511ca3905532
MD5 2b24ca3914982b980df55c58e316f1c7
BLAKE2b-256 14e9c5e7cfe9535c68169b3f0f3fc4aa940514fcb6c85229849e1bbb373be90b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 87c2a2779feea435b7b1c7860e1a4304c279105e8ae8f4b98bb2e48b060aac08
MD5 36fd92f2265f6f4a2d7f95a67ca0a0d8
BLAKE2b-256 bde776855cde3fcedb4fb8b70094a961244e9a8b4a8c966c3a7d45f653503603

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 956ba079dd1062c02ae84a114dabb27062903db4d6fc7511e5ad0bf92a8b3281
MD5 82d1ea73a7a7477732988eb856c3fc2f
BLAKE2b-256 4353f96dff6cf8da7feef7ab46f24b456db34cccaa3e69d443356a3d921750c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9cd4ef4d1ecb04dfc0b288cbf2046cce649b36e5d4ab38587a2adb8e3fa4c827
MD5 e7ad50246f48c4f84af8d0653f519636
BLAKE2b-256 08143529d60047f7065667aa8e16ac69018ff569f5b42bc677aba5375239b2dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40a2a0f8c7536ec7a181467dd6a38ed5af0062dd0f5bbd43725ac88b8adff042
MD5 3e674b2ad25da2a4507033127a2ee14e
BLAKE2b-256 c7b82c917b3506b153487bdc9d0c24b379276da059f7bb9ce546ef98968b909e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4edf6c041d4aec277e079e4e76c09d91de07228dbf66abc1516115b659d7d621
MD5 cabbe285b6b36239f1a9d0cb6b3c1365
BLAKE2b-256 29becbd6611226d5d08d1ea1bc509907c39653e3b52529d3e28bd753997ce7a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9b1be73e2aea4e10953ad7e7f17f5111bb6973361b0ad5a03a35890e71154ea
MD5 b57acf361e4d61f4083a4549b7ce5127
BLAKE2b-256 a3ed10d684722f0cdb6176c8f131937d6b17a3018bb7335a96bac4d8657bdcc9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5526e43357096447e57000da45bbaec2ff9d6fc93e6a21a464aeec28a88ecfa5
MD5 a54288fbb0761d6909ab75bac5306478
BLAKE2b-256 12343cdd9c99f224018156d5465f574cff310f3239fc1a6e5adf643ffeb17baa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6afba8004f5be686ff147facaac8793596fdbcbcf35ceba2eca6b43ac0a6fe6
MD5 72cce18d20c692b8cc037c1cbe0dff3b
BLAKE2b-256 978436d52f8c7c8de217071f472aa42e464efba34d46e478fd74e441bc18aea1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e6ea2c99d1a1e0bab6c4fd7007873ee6e9545cefa1ec660fd4120e41d66001f
MD5 2cea936e15d31c50be3083bf50d1ef52
BLAKE2b-256 12b75d0eea776d62cf3ccbcfcd07eec495f5cd725e1d8f71d53c16edbe5791f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bc1054460d8f2e56f45bd205be2e065669fb738368003321e32a033c8a655ce
MD5 1776856c7e789f8f9479f2c140949ce4
BLAKE2b-256 7631135766d064d230d70718727447393862c1cf3d7e39026ec7766aa577ac83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 630f6ab28857cb1ff1087335240630d8090ce5bf99bf7532b794aeecbc0b1587
MD5 ccbffd6c38fe0e1ee00fbe00d267368e
BLAKE2b-256 6e9df807cd49aa386fdad31423e34f8dc79d77934a83f7b339bb73f7d1ef9f10

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6389e4b9a6c8c51d7882a819a7c735691f090bbd43697e4c454510a152d320a3
MD5 1f4ac64a4484fd02ec76777803ca6264
BLAKE2b-256 2009aa1c5ab7fee13baffd0c2775f89fbbb33d52f1a26552da1197134ca6174d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaced7f913d917fa7c09f5cfb478a92388ab784f6f59ce7176d637a560b1fd4a
MD5 b009a69e2196dcdbb3c121eb712b93c9
BLAKE2b-256 bee37da4074c15508bfd7726cee68969a876797ab4f660c5fc40b29c0837807a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11a79c821a07abfc1b4f4a9ba971bbafd658f83f60c604518eb72e22921fa644
MD5 92c85b905a336d979a1b786e04bb9892
BLAKE2b-256 3d6ba3ccab295838a02540a18a22ec59b3c7e5110b829f98dc6c56101cf7bb98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa24ffebe47e7349b7574db25035256d273d8e6645193957e5d3edce478b9a95
MD5 5c38c3f8858757f335841388865934b1
BLAKE2b-256 3d620e63d592cdc692ec1dc4ee1861eebd8bdc54685612bf515e9721616ac0f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5e58a081141340a6e648a8399f709c779d0055251511e41a600326e908028cef
MD5 2cbb04af3b23826526d9f083c53ad181
BLAKE2b-256 c7e4d559ec9e26d6a27fe13ad3aa894d62dfabffb52d40b64bdaee729510a186

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e552543f4fb486ffce9e681a0a7c7ff9fd0f64bfc47f87e181196dc5578a8a27
MD5 fe065c1c3deb26553aa8713b24d4c07b
BLAKE2b-256 1e48e5e4a6a4e21f4eb158e8757dfa62ce9b1aa4a6782d77576c7babbcf87fb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 92d33e15bd7861b153f8b35392592e56586f93355d571547039459462788c169
MD5 8c844047736ec9dca82941fcfe95c9bd
BLAKE2b-256 828f37b095ab88d7ef2adc2641233b337273e805a958fc7beb0fb55a79faa679

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95b47327b83dcb5374a5361ee44b0bc09bed7fd063d38a2b3ea01524089dd0c3
MD5 e23bbdca5078b298dd112a8153b6fb21
BLAKE2b-256 3b02d638d332b9966344073e7a7bc0f6395a606de3b0d0ec38606243066d73d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fd8a647f8e1ae1e3738f349ad940d17bd9b6e42e3bf17b93ac98957d3179854
MD5 23603300e68fdbf8a43448eecaf30961
BLAKE2b-256 5bd1424b893f40fa486edc3bfe370c6083cc3ace3060f1dd834ec559be45b087

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a70a887edb86fae9f580b18648258c7c76f1acbb8ef2041a4689840e6853cbc6
MD5 9be4b3c16f93ef1d87c39a8f7795ec1d
BLAKE2b-256 c32bb6431827bf4383dfad45db77fb3df138b43f96d413b9c6901dfac9f8cab4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8dc1903751429e4c5bf07ccf34ef6a445bb8b33d6697f298edf520e9dde4b82
MD5 39b0422bf2750f3d9ade81e10149d72e
BLAKE2b-256 e4d38f49f090ca957a643aeb76004d428044679123751e24038856e09472e111

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b35be0ff571ba87dee881ea0014191e211386af8c588c58c026b438e5de736d
MD5 a4daa3471d62692c7d6e8079eb5f9649
BLAKE2b-256 05e1fda6340106e89943b269a1e767d8b5cf04779a7ce409ccb09ee12b01b96b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b2e6983d96527540a894b3fff716d5a3032f4bd34048f0aa5605841419e2a52
MD5 bbb5e27b942afc8f4836692181f61dc0
BLAKE2b-256 30c51241972c4f246fdcdce0e630975f51b7dcf20475d5ab1ae352e1f3c878fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eafb340e41d4ddf12d9a35ca6c857ede4f27ad18a9db1be52b881cd92ca9fccb
MD5 b86925893e3108245c47d34c6939c9ff
BLAKE2b-256 5c9a1cd26cb36e9e6d93629856e2b411cabb7bbf01526faae9287a1467f5f99f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e21594e5f7d8ed07b5291dd119b35b68359c4b038013b93fccda40c6eba21c13
MD5 30abdba5d4c02504f9e72db682f44b8a
BLAKE2b-256 9293d894b27de038f42c3bf1e1e43085c33c6242e6e01885ecd76b4498140e30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76ff6586af745797e492ae2861f42f2c0993e6c2a6fbb9c112af93a9ac76a603
MD5 d513a367675eaee8cfab06410cfe454e
BLAKE2b-256 ff8e81b41b792346adbd306a8f2792dc5fda24cc05022705a2d7c09df41c3dc8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14fe65412ac65d4d84bf081d2e3acd337e5155a58facccc8944ffc029353fb5c
MD5 dfa4ec8072cee13e4cf254ff7b2327eb
BLAKE2b-256 3b6058c06b2d1357ac7377b4a7991a27d38ea2230f21cb42fe48d9d5dddfe05e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c426ec383a04da262527a42377d70861784b35603825ea285f00ba8644f23865
MD5 9040f561bd74b2c5579ac1a65972804f
BLAKE2b-256 5f7dff5f072d35e3e2afd0a435da657c3306b81654f09d87793ace9802b77c36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46595312f56c75284a457da3d0e2a82a9e8606ffeed7557f5f706602321527b5
MD5 8d7f115e4e65e606f96488553e7701b2
BLAKE2b-256 bf1bdd0ed6fd346165a6e6773150fbdf9f73011c9547c1718dd6497bf71961cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2472b9eab1f9759c46d636258820c117149f4f2c3835452a5e0a90fa1d94660
MD5 30405e62f3607986aab0ea00fe015565
BLAKE2b-256 698ae2e8e724c87f91db2629963399c9cc97a4adaf53688f1305865cc5c9fb9a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8ae6f66354b22e5acf675da9faae9e517363bce1ec067618bcf86309e88e4878
MD5 202324bfafc4438c1625854e58f322d0
BLAKE2b-256 2ac31fa53f0850f3b3db90a8a8bbe3f21d953c390f823174de81e02ce8de993f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 322e07036a29bd3819dbc5ecb76ee32b2271b179fba952fdeee087352e48f528
MD5 c1764a391b4a51b9e9eb15337e907d4b
BLAKE2b-256 4eebbed0f305262a01b54c0e2832e3c2aab7a995601cb72d1a7d1b2173ab046e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16bbe0323d7bd2955e4f3a6057790be4b6dad33664cd0485c51ac99e7d5b2c5b
MD5 3765092334f73433b93206bfc224aba1
BLAKE2b-256 657c7e8457729262189fd59970b26bc4f9617285f7877ddd4e7b6519b395b49e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff4b6c4edbf59b91854a6a5138cccf4e78e2a3f4f83939932a33f6dc75ca7a4e
MD5 b5459e6ab00c8b47bb479239c4c9a361
BLAKE2b-256 c224bbc3cae7b1e1c642dd0435217e970f0253934fdea68fb993d3ef35873fc4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35d26f05f2314a1c4977718c8f5b6327ce814eaf4d337fac5c95c0fdf73990aa
MD5 d469c9340eed7f941f5fcdc602246d2e
BLAKE2b-256 dbd16f8da636cfa017c30496278e71b58f487b8f002a8b5b6e407461369ebbab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e771897e645546c849cdb856a592b28ff8d8117cedd37635be5b349e61a5e50
MD5 0cedf2069d39efa3ea362e910aa0da34
BLAKE2b-256 f31af9f7b4f1670540d1e7634b2fa33616a4a87cceee5c0cba70a26778800b09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89d6e7877d03df7f5bb169a7044233d7be5e5cfcd165a40501ac2b2aff9c1e14
MD5 e83a806d0d3fff3d46556b09790e3ac5
BLAKE2b-256 3ff85541c9da0c32dfdf37cb5ff5e0c09d85bde4b22b22e4d1e83dfd32fa6355

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40569ac0f754316121516c681c66ae32f124b3638a1bbad8507a3181309bd313
MD5 f2f14739a52a82073efc033202403a09
BLAKE2b-256 5ef15edb81aa7e0449489eaea70cb1f074b0eb95665a58387438e692bf9d8de3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cc1822180a584ec1327e7653c276037f33ff9887f5a7c2f1f6b034751df1ff3
MD5 7e8c91fdbb3284c887935a4239788757
BLAKE2b-256 96f1ffcb1016611e8d5052c96ebe4bb28f194b0ad7fcf5cba7f54a918b313bcc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e5e914647c9960c4df5db5ac44bb8c9c52a21130509ee35f0c9d6d35fcfd965
MD5 36bf3911c75b1d673f667311abfa5fac
BLAKE2b-256 c2fdbe0ee66f68129053895c8a33ef22b6b3909fbf123b8d8a25c7eb7d5f4f6b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c599736b3e1f507f7fd3a66577be33397be541353e31b165e4d378e44eaccf7f
MD5 e4ba0ea839caf7b64c2d86fb2c3a4e6a
BLAKE2b-256 cf34814c0c3e2569a816ce9b58c1f02506a2a1ef0ddf15f16579abf3ea5710b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c48b9ad68a43925a37ae314db0107f058ea99a8bd5c6601ce0a5ce83507b5f08
MD5 d23fe2e2af67250b4653350266d41031
BLAKE2b-256 e007e91ad1e8e419e703f1a585b47057ee35aaeffdfcd619c91061b2f2755c52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 732f71e677b51ea8fa29e58caaaabfa168629e519788920ef1386443a2865ab4
MD5 6d9973750c4b7b0cae5778a4e26d96c6
BLAKE2b-256 9e946e16e353de11fa38e026fa34a3ebc63570e15f47d382a84ea37e03265459

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95572f2a16d821907ea74fae6e8a71435db59caee386acf34adc80b619b1554f
MD5 eb8a899e1346e803c6b2fd8c2d5ed889
BLAKE2b-256 ed68b1110ca23117fc74ec18cd80d1a38db6b5a3e3f3554d3af49407937902d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3bcb0df7a4171665f6f50d11107108f1254d1a4bf742b52eacf603a98b8f6351
MD5 6a44c19d1017100129f6569a0022cb9d
BLAKE2b-256 8e101b29a4889bf2c040ff62e326a63e777ed4d778c4e77458def50ce197b4b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 085f20c4a3e76c8968c0ed977d17cbd5b930b72976cbb4c4a5c3f6a3d1f847e3
MD5 c819b3e4e4f642bcb0a994a107df14bb
BLAKE2b-256 3a47abd47d9b327830ff2d22b5764f27f0608dd10e7077f0dacb02d3e946cd34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d86398442a4a08dc300786b60ddf42b934ba4dcce7642a18a584cb0e34f2fe2d
MD5 e3068bde8003822835976f60efcae06c
BLAKE2b-256 c93a83033872c31a84ccc167d31bbac21573856a2979bf9992f2b45923b5f217

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f55994e9ae6456bf843b36ee86af979a811c02fbd2350ae1ac7b2e1855d992e
MD5 a4972c61690de7afbb6f6f5762774238
BLAKE2b-256 bccbfafcef70b0d5edbfa106a38ae4cfadb6aa5d6be28795d030c36dc3718675

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 581e531b00bb539d6a4945f95754e191c03e79437c2964e6f2842df132da4270
MD5 e45d62031ad7741c59db8559aff4f0bd
BLAKE2b-256 f0f0aa7572f9ff6412fd7908460e903ee5f1d40c0375b45d2c3ba8a67aa0c215

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 018563545670b3b1749aa55a381e5a1b81616dfa5bac97d160981c076bf8671b
MD5 bc7d6721b9fb7cb19e4f42cb627073d6
BLAKE2b-256 0f67c0feb6b65da89c5b7e423d4f41b2417868107970c35e554dd7b588da9a78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f05c39ef212fdfbf5ea24cb427ee0824a536b7de0e6bf5e474b74675932401a
MD5 3b0e36720cc6d1d7bfe66b18d0f884af
BLAKE2b-256 c3a9d0ed62a72414271e5ef8a37cbb96da8e9bf362319081641d3db0c58adfc6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08b6004f7a3885915c10d769fecf09294a5d955a24b9899f6f3cf07f153bb32b
MD5 19fec789ec665fe3354c0ca485c23116
BLAKE2b-256 b94f0322a54dba7080b2e15ae109708b13968cb477fe6619ecc7d393d6242e6c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85de74b3acc5794831618f77fb324dcc7b2d85d1dd9eafef34b23e89b5e50c5c
MD5 3b810a11b8798ecdfbf24d4955dcee5e
BLAKE2b-256 43c562a638ae9ea15d56474da0b30bc95cf4e38f7f7c7a1e131ad5617f8fa477

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa2fe46d081ec0ec95e6a75169c67f4ab45e967f2aff536ee1b8d8a5aaabbebd
MD5 98054fba512f29d53d26ce5287ada7e9
BLAKE2b-256 64c50600b0ff812ce78b35710b87790fa1a1e4f8081fe8d501afe2d6d92236f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94659d044283e450237e430cd44cd48f5bbf2f363853c6f42a302f68fff6266d
MD5 228500c9228b265455be110be4c63b08
BLAKE2b-256 d5c96b63906572fdf39a78f8bbd08d514ba66cb3f59703534f5fb2869059bccd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f0c0fdb9b8856ce3b7133c8ee17151bcb489ad6110038035d9d904e52ad1f57
MD5 c5b6042c86113a395c0eeb5c64292a7e
BLAKE2b-256 f3270e79e8d41e272ccec6aa53f279280bf9726afab94632d3b3d9df27b9b261

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for splotrs-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6457bb4514596a732ed4277617dd3b2289a5babb295e55aac588cd9cc4e065d0
MD5 6e95cd2357320df24018054f859448fb
BLAKE2b-256 8b1235f123ba4715d7e8c1c90e9fd5266cadac8d4cf31944458a2391dbae0679

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.5

99 files

This release

0.1.4 This release

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