Skip to main content

NILT: Numerical Inverse Laplace Transform Methods

Project description

DOI status

NILT: Numerical Inverse Laplace Transform Methods

A C++ header-only library (with Python bindings) for numerically inverting Laplace transforms1. Three algorithms are provided: Gaver-Stehfest, fixed Talbot, and De Hoog et al. All share the same callable interface in both languages.

Statement of need

Many problems in physics and engineering are easier to solve in the Laplace domain than in the time domain. Groundwater drawdown, heat conduction in semi-infinite solids, diffusion from spheres and cylinders, viscoelastic creep are great examples that have closed-form Laplace-domain solutions that are difficult or impossible to invert analytically.

Existing tools are scattered:

  • MATLAB's ilaplace implements an inverse Laplace transform but it has no access to individual methods or parameters within it, and does not offer an open-source license.
  • Python's mpmath.invertlaplace provides all three families of methods (and Cohen method as well) and is written in pure Python with arbitrary-precision arithmetic, so a Python-first implementation is far slower when you need to invert at thousands of points.
  • The ilt package wraps a single algorithm and it provides an implementation that is too tightly integrated to the application (transient spectroscopy).
  • No other C++ library packages multiple algorithms behind a common interface.

NILT provides Stehfest, Talbot, and De Hoog in a dependency-free C++ header that compiles with any C++14 toolchain. The Python bindings expose the same compiled code for scripting and prototyping.

Quick Start

C++

#include <nilt.hpp>

// "Free" function - works with any callable 
double f = nilt::invert(nilt::Talbot{}, [](auto s) { return 1.0 / (s + 1.0); }, 1.0);

// Direct algorithm call (equivalent)
nilt::DeHoog dh;
double f = dh([](auto s) { return 1.0 / (s + 1.0); }, 2.5);

// Custom parameters (see Parameters section for full list)
nilt::Stehfest algo;
algo.N = 12;
double f = nilt::invert(algo, my_func, 1.0);

Python

import numpy as np
from nilt import Stehfest, Talbot, DeHoog, invert

# "Free" function - works with any callable
f = invert(Talbot(), lambda s: 1.0 / (s + 1.0), 1.0)

# Direct algorithm call (equivalent)
dh = DeHoog()
f = dh(lambda s: 1.0 / (s + 1.0), 2.5)

# Custom parameters (see Parameters section for full list)
algo = Stehfest()
algo.N = 12
f = invert(algo, my_func, 1.0)

# Array of times (returns numpy array)
t = np.linspace(0.1, 10, 100)
results = invert(DeHoog(), lambda s: 1.0 / (s + 1.0), t)

Methods

Three algorithms are implemented:

C++ class Python class Method Input Reference
nilt::Stehfest nilt.Stehfest Stehfest real F(s) Stehfest (1970)
nilt::Talbot nilt.Talbot Fixed Talbot complex F(s) Abate & Whitt (2006)
nilt::DeHoog nilt.DeHoog De Hoog complex F(s) De Hoog et al. (1982)

All algorithms accept any callable via the free function or direct call:

C++ Python
Free function nilt::invert(algo, F, t) nilt.invert(algo, F, t)
Direct call algo(F, t) algo(F, t)

Parameters

Each algorithm exposes tunable parameters (identical names in C++ and Python):

Class Parameter Default Description
Stehfest N 18 Number of terms (must be even)
Talbot N 50 Number of quadrature points
Talbot SHIFT 0.0 Contour shift parameter
DeHoog M 40 Order of approximation
DeHoog T_FACTOR 4.0 Period factor ($T = T_{\text{FACTOR}} \cdot t$)
DeHoog TOL 1e-16 Tolerance for integration limit

Test Functions

The verification suite evaluates all methods against known analytical Laplace transform functions:

# f(t) F(s) Source
1 $1/\sqrt{\pi t}$ $1/\sqrt{s}$ Stehfest (1970)
2 $-\gamma - \ln t$ $\ln(s)/s$ Stehfest (1970)
3 $t^3/6$ $s^{-4}$ Stehfest (1970)
4 $e^{-t}$ $1/(s+1)$ Standard
5 $\sin\sqrt{2t}$ $\sqrt{\pi/(2s^3)},e^{-1/(2s)}$ Stehfest (1970)
6 $t$ $1/s^2$ Abate & Whitt
7 $t,e^{-t}$ $1/(s+1)^2$ Abate & Whitt
8 $\sin t$ $1/(s^2+1)$ Abate & Whitt
9 $\cos t$ $s/(s^2+1)$ Abate & Whitt
10 $e^{-t}\sin t$ $1/((s+1)^2+1)$ Abate & Whitt

Benchmark Results

See the verification example for full the results. The table below shows a test function from Stehfest (1970) ($f(t) = 1/\sqrt{\pi t}$) as an example:

t f(t) Stehfest err Talbot err De Hoog err
1 5.6419e-01 5.6419e-01 2.17e-06 5.6419e-01 4.63e-12 5.6419e-01 1.73e-13
2 3.9894e-01 3.9894e-01 4.92e-06 3.9894e-01 4.82e-12 3.9894e-01 2.70e-14
3 3.2574e-01 3.2573e-01 6.34e-06 3.2574e-01 2.74e-12 3.2574e-01 2.11e-14
4 2.8209e-01 2.8210e-01 2.17e-06 2.8209e-01 4.63e-12 2.8209e-01 1.73e-13
5 2.5231e-01 2.5231e-01 4.24e-06 2.5231e-01 4.87e-12 2.5231e-01 5.06e-14
6 2.3033e-01 2.3033e-01 8.70e-07 2.3033e-01 2.54e-12 2.3033e-01 7.58e-14
7 2.1324e-01 2.1324e-01 2.81e-06 2.1324e-01 5.25e-12 2.1324e-01 4.14e-14
8 1.9947e-01 1.9947e-01 4.92e-06 1.9947e-01 4.82e-12 1.9947e-01 2.70e-14
9 1.8806e-01 1.8806e-01 6.24e-06 1.8806e-01 4.61e-12 1.8806e-01 3.26e-14
10 1.7841e-01 1.7841e-01 5.70e-06 1.7841e-01 4.84e-12 1.7841e-01 6.02e-14

Building

C++ library

The library is built and installed from CMakeLists.txt using CMake (+3.19). If you're just installing the library, make sure to turn off the examples using -DNILT_BUILD_EXAMPLES=OFF.

Install the headers and CMake config files to a chosen prefix:

cmake -B build -DNILT_BUILD_EXAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/path/to/install
cmake --build build
cmake --install build

Then consume from another CMake project:

find_package(nilt REQUIRED)
target_link_libraries(my_target PRIVATE nilt::nilt)

C++ tests (Catch2, fetched automatically)

cmake -B build -DNILT_BUILD_TESTS=ON
cmake --build build
ctest --test-dir build --output-on-failure

Python bindings (pybind11)

The Python package is built and installed automatically from pyproject.toml using scikit-build-core, which drives the CMake build behind the scenes.

With uv (recommended):

uv sync --extra dev  # creates venv, builds C++ extension, installs everything

Or with pip:

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

Once installed, from nilt import ... works as expected. The invert function accepts both scalar float and NumPy array arguments. Using NumPy arrays is slightly more efficient than having to evaluate several individual floats at a time.

Python tests (pytest)

uv run pytest                  # or simply pytest (with venv activated)

Running the Verification Suite

# C++
cd examples/verification/build
./verification                 # writes CSVs to cwd
python ../plot_verification.py # reads from build/, writes PNGs there

# Python (from repo root, with .venv activated)
python examples/verification/verification.py   # writes py_*.csv to build/

Examples

Several physics examples are organized by domain in examples/, each comparing all three inversion methods against the known analytical solution:

Directory Example Physics Dimension
verification/ verification 10 standard test functions (Stehfest & Abate-Whitt) -
transport/ sphere_diffusion Average concentration in a diffusing sphere 1D (radial)
transport/ cylinder_diffusion Average concentration in a diffusing cylinder 2D (axisymmetric)
transport/ advection_plume_2d Instantaneous release in uniform flow 2D (x, y)
groundwater/ theis_well Drawdown from a pumping well (Theis 1935) 1D (time & distance)
groundwater/ well_dipole Pumping + injection well dipole 2D (x, y)

Each subdirectory contains a README.md with the mathematical formulation and a plot_<example>.py script to visualize the results. Every C++ example has a matching Python script (.py) that produces identical results. Binaries are placed in a build/ subdirectory next to their sources; the output CSVs and PNGs are also there.

Contributing

Contributions for bugs, features, other methods and examples are all welcome! See CONTRIBUTING.md for the development setup, commit conventions, pull request guidelines and etc.

References

  1. This work was partly developed in Oliveira, R. (2021).

Project details


Download files

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

Source Distribution

nilt_python-3.1.1.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

nilt_python-3.1.1-cp313-cp313-win_arm64.whl (102.1 kB view details)

Uploaded CPython 3.13Windows ARM64

nilt_python-3.1.1-cp313-cp313-win_amd64.whl (119.1 kB view details)

Uploaded CPython 3.13Windows x86-64

nilt_python-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nilt_python-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

nilt_python-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

nilt_python-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (131.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

nilt_python-3.1.1-cp313-cp313-macosx_11_0_arm64.whl (100.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nilt_python-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl (108.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

nilt_python-3.1.1-cp312-cp312-win_arm64.whl (102.1 kB view details)

Uploaded CPython 3.12Windows ARM64

nilt_python-3.1.1-cp312-cp312-win_amd64.whl (119.0 kB view details)

Uploaded CPython 3.12Windows x86-64

nilt_python-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nilt_python-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

nilt_python-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nilt_python-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (131.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

nilt_python-3.1.1-cp312-cp312-macosx_11_0_arm64.whl (100.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nilt_python-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl (108.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

nilt_python-3.1.1-cp311-cp311-win_arm64.whl (102.5 kB view details)

Uploaded CPython 3.11Windows ARM64

nilt_python-3.1.1-cp311-cp311-win_amd64.whl (116.2 kB view details)

Uploaded CPython 3.11Windows x86-64

nilt_python-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nilt_python-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

nilt_python-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nilt_python-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

nilt_python-3.1.1-cp311-cp311-macosx_11_0_arm64.whl (99.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nilt_python-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl (107.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

nilt_python-3.1.1-cp310-cp310-win_arm64.whl (101.8 kB view details)

Uploaded CPython 3.10Windows ARM64

nilt_python-3.1.1-cp310-cp310-win_amd64.whl (115.7 kB view details)

Uploaded CPython 3.10Windows x86-64

nilt_python-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nilt_python-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

nilt_python-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nilt_python-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

nilt_python-3.1.1-cp310-cp310-macosx_11_0_arm64.whl (98.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nilt_python-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl (105.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file nilt_python-3.1.1.tar.gz.

File metadata

  • Download URL: nilt_python-3.1.1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1.tar.gz
Algorithm Hash digest
SHA256 6cad4d0ae8ecc638183f0e3fefdfdaa427e7ee8b2739172881363afd6bf0dd60
MD5 6a87c31df1b1855a3947e0c655ca684a
BLAKE2b-256 9eacb82c115c2ceaf3c753d19aae4c6bafe251b64ce4c054759fb3757f3d997c

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b6ff281a517925c304e4c417f19c8171bbeb0977d909bc878c4c5192e7123557
MD5 3e7448affbb31bf181bcc91fe254af20
BLAKE2b-256 5d5c1fa24d90b376a046d9473746fca2542bc60c1fa82513a410be05f0e80022

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f87bb186964161e2235d030e055dcdb9e06e9beabb66a9a966bba1d79bfbc80
MD5 3422bfb36bf326771644cedc4cd7f9fd
BLAKE2b-256 133d169a2b55da1aaf2e5fd26696e7d127f9ea9efdc5b7afdb1dba83d03b5e0d

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fcda213ca17a7533be8b47ea218a14c6bd2f32240736457347918d2de28c86a
MD5 f7f7e6b6a97b530ce04bc464190667fc
BLAKE2b-256 d42248a4b89cfc7d5f755c4c09e8a31f6dfe6f1c64000e1af347c516bea37c2b

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40c9386a9531402771b7ccddfb88d8ad15d517d679f26c6845825708330ae8f0
MD5 f17871e231b805c7c08ce8961b73de7d
BLAKE2b-256 4025dd9376b5646d9ecf8dcb26ab035e47f40bbe4629ed4ec091c2e7c8b6001f

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d1e7af055f0f6cb6f0f0b60ec4b5688664ba91dc49d59027376e5551f410aa0
MD5 da739a7d244c993cb87461f05406eb0c
BLAKE2b-256 f4ca34f6854039b012c1feaf612f0a5d91f4852a35d6a47fae5ac16b74a479b3

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 306659506bd272a984e79d56e98d81f21b8dedd8cdb60b1b626bffb04b4c3a7c
MD5 369f049741a5dffd46560954f23fc825
BLAKE2b-256 6d7df081e8a03a2847b80abe35671500049342eac2c9ca0d8524b8e8159924d8

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 629b5d4d57156fd082c9a31d53bd7f2aaba368a738b7eece07ae6506581d5de1
MD5 4d0d93a358456cfd1ee149075f337b2b
BLAKE2b-256 6883bec7e21a189b2f65f4317d04975e0ede6c8981d2c2e55af79510d2de8225

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 108.6 kB
  • Tags: CPython 3.13, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b6d2347415bfa36411c208f33e4f7feacf3769cb65fe4ee254c0899282bf43df
MD5 119e42d22a1e9ebebee970aec2db1e95
BLAKE2b-256 3dad22b9298f54e32f8f150fc4011ec15ade88943500f74772ddb7662ca2ef55

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0a17522095a10744d50c693c9b65d44000e50a68d89e6b951a71e583ebcb40d8
MD5 243fef4e859edb19f60aa0c88d921aa6
BLAKE2b-256 22a7909cf3313f920c3ffe0e0d52168d5a2e478bae564965654263fba8d8eeb4

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4dfa38d587bce2d75a81e112fbdb9324e7bd5cdc000f30995608bc80f6a8503d
MD5 735efe125a08695763fe326be8cf0e40
BLAKE2b-256 c3e273d65218aac5cf88906961b8713a2b508efb3e03bb2d5cbf693596bd0484

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 635a631b3f9a113171e98bdc2b11c561becc043c0edaf9e1d6109a193ff2c769
MD5 2ba4a2c1b2cff2d27a0f46b50ba8447c
BLAKE2b-256 125cd10e3dfa12f461fd1d2f8f35f7d55d788ea09d7433723d4a863686ca866a

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4f620aecf7b8ee610e889b9b6b0d9e2dbd75c93a70870fbcd5b7565da27e61f
MD5 c133e1f80a6c8c06ef4200143f140606
BLAKE2b-256 d2598d5f14e4e3e53c325ed8d2cc12a547e022bedf4fe87ff16747a6df601b5a

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a51d8d9019a0d22a913fca708128b5b610b74752d5abef7a9163ff5cfa22196e
MD5 a0475a4219d717dc134062dd64552659
BLAKE2b-256 a7420d2a00516399b0f857b5551c80c6cd514c832ee332d3b213b43a6b3877cf

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81fc73296ff43feded8a9b7ff2777c703ae109556538f6f829436435936fcfba
MD5 71a57161c4acf48bdb9f57082d71a232
BLAKE2b-256 135286db28e480e605fbff767a2a226c5d8dc1289f9d6271c397350e4c69076a

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43d5d78b761a46f60e2bd80e15a705bb290a1f994dabab74780a14915906ccc0
MD5 99cf3ddd0ba81b9f79941ca415bd5f6b
BLAKE2b-256 7cd7fc43c788dd485b4ce8a103460c2a022418e08572fdc07f213a8de3999890

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 108.5 kB
  • Tags: CPython 3.12, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ddad95bcca8ce589df3f50a2f71422283673dfe3a9ca5fa108394fed47b79c7
MD5 9870f5b562c4ddef48f00f7cadfcc521
BLAKE2b-256 9e4c6ae77dcd43bedc929519fe0d56bfd1910f7cf6b0a3668bd55e006961bb22

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 102.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 68b49dd654b24b77350fd8e3210eae8fc6103187ef39cc25623c61269dc10e65
MD5 c58028fc46e1b554a6b584c46225eeee
BLAKE2b-256 fe4356ba50a2ec75cce71a2ba282f569b820a20c911de49459d1974a2b6e8cc3

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f78664d7067523f6a77fcd7bd182945c93341b22506964591be704771db0418
MD5 882b7ecb021eec067dd12c588d62aa0d
BLAKE2b-256 cc4de6068c6a49bce6a1c66d6b651f1ed02be05cc745512e50f4273929de9a76

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2b501237b81c8aa704c794fbf2e43f83b82f50a91becbc301221401df5d17cf
MD5 c5295682223b831e77531fcc91f9e984
BLAKE2b-256 b91a4402e11771f0d2f7f1334f977ea1890fc2f0a6ec31dfe5c49fd12d88182e

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8386768a51fa593aad7a48bb84a55b9f0dae9e0e96b55713910ecba006fcb7a6
MD5 1b5cb32cf92f91323604c61791998f4e
BLAKE2b-256 e4db14cfe7f7891ee5d6f934a814e416423a0e66e6aa168dfc1f9cbd88efba9a

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c9ff1f1415d3381fef8fcb877e7822039c0e02aca6cde929b3be1d43c535c51
MD5 4eb87d1aaf93dc997626d252e6984699
BLAKE2b-256 232323fed353b6ade6fbfcbae64910daf96fea979e2888018f56ae8b37fb2c39

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21769abecd3349339bd3b2428889903966a71d3816608427570a778bce5dd37e
MD5 e23767a74d83af68c65d7cae2d3c2768
BLAKE2b-256 ff98836f1fec520a7b0a464144ff52b21b6a0aa6444c5e4c1eaff5ba31c825ce

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a12a16a0dd5fcb38b2755a9b594f2fc1e680cb3201ce096eafa9f6d72338e445
MD5 8c717b415f06ec9978c47b6572f00172
BLAKE2b-256 afadcfe7336334d87d89e2e5c7e8b3dd4cb4760330cf3f6b9aedd516d1859cdf

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 107.1 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c82653b69e6ac68625f86b11e57c137260893ef63d285f267f4f301ab5db88d7
MD5 1a7d6a042b2d3548463d96fae1b9664c
BLAKE2b-256 cca416dd7306b80c06f03d1c66258f449d70cce9c5c6ce262f38ef8502c6cb4e

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8f988984789d7a58ab27750f7f6e870c4bd9b8bcd2dfc0b75c3b4d7cc92a6380
MD5 62da4ca83f923bf51a9294a6231bcb1b
BLAKE2b-256 4721413ad9670692f22d82c34a413e9766b87a207265016a33d3e04613519fcd

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ca4d15dc7ac99d5f39043589affe08cbe8cf6d8d687fb13af614a02733079c4
MD5 42816a89a8135aaaebaba7072c60aace
BLAKE2b-256 472e5c61a320d5a5ebad19ede5de609b08e6dfdb3033502daaefae9a6cecdf6e

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 988539e76b2a65377e2195e2792ef203820c9d5f58d91ae4c833d0ca2c0f8ea4
MD5 7f9c55d23493dbc2f7fece401c3082d0
BLAKE2b-256 80fafca7e596335ed125d43892768a3579189ff788d556681e69681531235613

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf859fcb0fb83ce4871d4d75868cfa2badf17ec2caf521433d5bb2ff4154e07a
MD5 c27e138095cea6a01e9c93ce12ee7a95
BLAKE2b-256 e8790b1c54d7019613fbc4b313c0469f5a33c414586de378cadb9319e48f6516

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15f97b3fe690493d3280c5e6230b9198f93731f2a675ca4eb740c60aa6509bda
MD5 dfae5eefe6fa509cc6ecffa1b1288675
BLAKE2b-256 307ce89ad7800703d0c20bae2cd068e56989f862295feee5fce3b8034ff7b3a3

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4322b23c89c2ef612b5c27e2db88434c795542ce7f8b49124610b93853136d51
MD5 a7c5f3850c210e82e9b5bc9f2d660345
BLAKE2b-256 782caba656afa7a37fe3024354c84002799cc92466383e28505817cde028c010

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78596443badbc2322f20cfbb8944b2630e80ba7cf9f516781a2d505c2aab0c29
MD5 cfd6467768aa3e4202340fba4ad440d5
BLAKE2b-256 e15c3709d4dc2e693422af3c58facab34b0c7e0b4282835ff53e32230db303c7

See more details on using hashes here.

File details

Details for the file nilt_python-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: nilt_python-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 105.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nilt_python-3.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66c4323032328109bb01b803d0684a037082cb3d3a30c900b6f12b9349f46d18
MD5 7daab9928f469b4af1d188bb3d25006f
BLAKE2b-256 5408a6bdcea00f6e597e422e25f5cc7e31814036f1ad58295488a42af2da2f37

See more details on using hashes here.

Supported by

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