Skip to main content

N-dimensional interpolation/extrapolation methods

Project description

interpn

Python bindings to the interpn Rust library for N-dimensional interpolation and extrapolation.

Docs | Repo | Rust Library (github) | Rust Docs (docs.rs)

Features

Feature →
↓ Interpolant Method
Regular
Grid
Rectilinear
Grid
Json
Serialization
Linear
Cubic

The methods provided here, while more limited in scope than scipy's, are

  • significantly faster for higher dimensions (1-3 orders of magnitude under most conditions)
  • use almost no RAM (and perform no heap allocations at all)
  • produce significantly improved floating-point error (by 1-2 orders of magnitude)
  • are json-serializable using Pydantic
  • can also be used easily in web and embedded applications via the Rust library
  • are permissively licensed

ND throughput 1 obs

See here for more info about quality-of-fit, throughput, and memory usage.

Installation

pip install interpn

Example: Available Methods

import interpn
import numpy as np

# Build grid
x = np.linspace(0.0, 10.0, 5)
y = np.linspace(20.0, 30.0, 4)
grids = [x, y]

xgrid, ygrid = np.meshgrid(x, y, indexing="ij")
zgrid = (xgrid + 2.0 * ygrid)  # Values at grid points

# Grid inputs for true regular grid
dims = [x.size, y.size]
starts = np.array([x[0], y[0]])
steps = np.array([x[1] - x[0], y[1] - y[0]])

# Initialize different interpolators
# Call like `linear_regular.eval([xs, ys])`
linear_regular = interpn.MultilinearRegular.new(dims, starts, steps, zgrid)
cubic_regular = interpn.MulticubicRegular.new(dims, starts, steps, zgrid)
linear_rectilinear = interpn.MultilinearRectilinear.new(grids, zgrid)
cubic_rectilinear = interpn.MulticubicRectilinear.new(grids, zgrid)

Example: Multilinear Interpolation on a Regular Grid

import interpn
import numpy as np

# Build grid
x = np.linspace(0.0, 10.0, 5)
y = np.linspace(20.0, 30.0, 4)

xgrid, ygrid = np.meshgrid(x, y, indexing="ij")
zgrid = (xgrid + 2.0 * ygrid)  # Values at grid points

# Grid inputs for true regular grid
dims = [x.size, y.size]
starts = np.array([x[0], y[0]])
steps = np.array([x[1] - x[0], y[1] - y[0]])

# Observation points pointed back at the grid
obs = [xgrid.flatten(), ygrid.flatten()]

# Initialize
interpolator = interpn.MultilinearRegular.new(dims, starts, steps, zgrid.flatten())

# Interpolate
out = interpolator.eval(obs)

# Check result
assert np.allclose(out, zgrid.flatten(), rtol=1e-13)

# Serialize and deserialize
roundtrip_interpolator = interpn.MultilinearRegular.model_validate_json(
    interpolator.model_dump_json()
)
out2 = roundtrip_interpolator.eval(obs)

# Check result from roundtrip serialized/deserialized interpolator
assert np.all(out == out2)

License

Licensed under either of

at your option.

Project details


Download files

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

Source Distribution

interpn-0.2.5.tar.gz (235.4 kB view details)

Uploaded Source

Built Distributions

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

interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (488.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (510.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (575.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (477.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (331.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (489.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (510.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (575.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (477.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (331.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

interpn-0.2.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (298.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (489.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (510.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (575.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (477.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (297.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

interpn-0.2.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (299.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

interpn-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

interpn-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl (502.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

interpn-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (564.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl (468.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

interpn-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

interpn-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (320.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp313-cp313-win_amd64.whl (226.3 kB view details)

Uploaded CPython 3.13Windows x86-64

interpn-0.2.5-cp313-cp313-win32.whl (218.9 kB view details)

Uploaded CPython 3.13Windows x86

interpn-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (484.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

interpn-0.2.5-cp313-cp313-musllinux_1_2_i686.whl (506.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

interpn-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (571.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (472.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

interpn-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

interpn-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

interpn-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (327.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (327.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

interpn-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (278.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

interpn-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl (293.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

interpn-0.2.5-cp312-cp312-win_amd64.whl (226.6 kB view details)

Uploaded CPython 3.12Windows x86-64

interpn-0.2.5-cp312-cp312-win32.whl (219.4 kB view details)

Uploaded CPython 3.12Windows x86

interpn-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (484.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

interpn-0.2.5-cp312-cp312-musllinux_1_2_i686.whl (507.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

interpn-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (572.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (472.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

interpn-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

interpn-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

interpn-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (328.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (328.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

interpn-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (278.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

interpn-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (294.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

interpn-0.2.5-cp311-cp311-win_amd64.whl (227.1 kB view details)

Uploaded CPython 3.11Windows x86-64

interpn-0.2.5-cp311-cp311-win32.whl (219.4 kB view details)

Uploaded CPython 3.11Windows x86

interpn-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

interpn-0.2.5-cp311-cp311-musllinux_1_2_i686.whl (509.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

interpn-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (574.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (476.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

interpn-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

interpn-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

interpn-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (330.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

interpn-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (282.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

interpn-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (297.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

interpn-0.2.5-cp310-cp310-win_amd64.whl (227.2 kB view details)

Uploaded CPython 3.10Windows x86-64

interpn-0.2.5-cp310-cp310-win32.whl (219.5 kB view details)

Uploaded CPython 3.10Windows x86

interpn-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

interpn-0.2.5-cp310-cp310-musllinux_1_2_i686.whl (509.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

interpn-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (574.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (476.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

interpn-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

interpn-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

interpn-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (330.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

interpn-0.2.5-cp39-cp39-win_amd64.whl (227.5 kB view details)

Uploaded CPython 3.9Windows x86-64

interpn-0.2.5-cp39-cp39-win32.whl (219.8 kB view details)

Uploaded CPython 3.9Windows x86

interpn-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

interpn-0.2.5-cp39-cp39-musllinux_1_2_i686.whl (509.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

interpn-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (574.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

interpn-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (476.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

interpn-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

interpn-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

interpn-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (331.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

interpn-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

interpn-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

interpn-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (330.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file interpn-0.2.5.tar.gz.

File metadata

  • Download URL: interpn-0.2.5.tar.gz
  • Upload date:
  • Size: 235.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5.tar.gz
Algorithm Hash digest
SHA256 f9a4aa8c718518dec78aaff7f4cfaed695ba0a8f99344f9ccb0084ec68c76b41
MD5 df038fc621a0f6c22c8488d3b1e9b517
BLAKE2b-256 e38189f6b5f0895d4a2f0ddc75205c243229eb1a6bcc7912b488658afb803ba7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44153189517d3d9d8d9dfc76c5e413350157b5bf54d5c4bdfd3c4bb4d1593cb7
MD5 89a3101888153932a9fdba0f99d11eb3
BLAKE2b-256 9280ae23ab2f09b8af4afef3542c85f2284114a6f2dde6b0aff44716d4c601aa

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbefb8d4c20e2821b89b987ed98ee29b536f2c467cb8347e1a0cf0a7d6d807c2
MD5 3ba3ed33b198ebb15aff058df4c1e97c
BLAKE2b-256 cbf705d8ff645041d8b1e255cec937e0492046ecae097bfa8c353d68e5389c5b

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2acd17ea0a2b2761ba79d0519a9bc43b241259a338bebfc9ae267232e1c691d6
MD5 35bbe367ac8e534bb4d84060754117cc
BLAKE2b-256 22ff9700d72748ab0d8216b695fe312d9d7843cc517e9cd25a3137e0df19fb8e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c8b226405d129daf9c69c2476cc8c3baedcccb1e045b15f28e298ca5267a9d3
MD5 596c1e1e0b7c026e8b4ce08e55fd74f6
BLAKE2b-256 79d7bbf08dcce8c46c33dfb7ad0664304b9f8a072e36928a66710924a579f3e0

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac56d3d7d6bbf64103a446e617c172df57a8ee818c919711a00af77a64ae4194
MD5 aa1a80b1162aad65d298e9c0e9dbd787
BLAKE2b-256 d02959d2f2682d1cf7a4158de9018427e27b03569527709504e9aedc7b450231

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cd3e2ad62dda365f1e9a9f9427f611a9f8cc47ce94adba57260e38db7269823
MD5 34d997d69a41143aab6d90fa8628ec61
BLAKE2b-256 c9b160ccae13ef89e30fd82eb4c0be3429e2697c78d7e31c7477d4ae157bee5d

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6072633c19580d206966cdfc864ad7f915bd14b10861f98bdc2cef211f0772a
MD5 26302b0e84148471e545f82c0b54014a
BLAKE2b-256 3cc00b023f22a773794e574e1fce45d34476ed61a01d6c4b713784e91ba7d5ed

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43b61915f7dd5350e6d6bb6d875519753acd3bca9c4df50ea93c2d7912f58227
MD5 d32f26bc0e1a2317c98203b28575fafc
BLAKE2b-256 6104cdfd7fdb865fd17f88e766cb19bd989fe866923ddc36bad2c883ce337834

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80c15b4d79b9f5f789355d10656b88aaa93659269385e92c481bb95a15294ad5
MD5 507f74ba78a407f90b46baec4751d8b8
BLAKE2b-256 145e8e2e50e8662af4ce24cf5b651f65d348ce47d1ab4bb2fbaf758da4865224

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6dc8a4fc4bf7fce2718f093745821e81c983d1596bd051d80479fdaf60b00026
MD5 5468173564fee7d250f32bfaa991cf30
BLAKE2b-256 0fcf3a050d8bd0b98e1463709a42c8f53451a30d489e4ff6db8aed3d12206a8a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21bf77a6ba27313ca436b15b3f420901fa85a22c105c58b6bad6b219ab235a26
MD5 40d3e5e0bbee08b7de71ce9d9b170e9e
BLAKE2b-256 ef1e7689759ad6f870d993c7c0154a0fbbd7a401ad96fc4a9538bc9d21fc226e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 868b6259b737cf0ccfb2d4e5ebc4b1f06fd15731586450359ea693ce830bf99b
MD5 b0d17b3777b35beac98af3de8f2f21ae
BLAKE2b-256 a4f2316dfb94e7f411b5745add23d1cf2240bcf2cd91bedb14a6983f8a853dd7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00661beee381f518b3f6ff53a5dbf33317c5a4da73bbc85a05fca02a3580021a
MD5 85ec4a2406fc52daa290017513f5b7da
BLAKE2b-256 675a11231a1dff52ecc555bcde40b3e0e1b78b2596b126fa04b3737dc26f2efb

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b19afc8131d0d076a5e61570def4003b1e99d84bfa816c0eeb37a2493f9232da
MD5 103a260f961bfaae355b41752fc6347b
BLAKE2b-256 9325f45e72cae13bfefcf351716bb4f9bbc8af0ec1d541240a25aae5815480ed

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc66f157ecdc778c6a6b7377becbed55f7391da7ca44899c878ec3d1d2c4ccb2
MD5 6feac04f9fc728d566257b4398c8cc00
BLAKE2b-256 48b5c4db8a1c2c3be7a052eb732109e964ceb45ed143bc131d07e915a884e79e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4074bd754aaf1e7714267ac1fc129daa171ed296554ea4cd7104fdb14f451770
MD5 eadd8daf2f39797d310dda9bbf99a936
BLAKE2b-256 081b2ddd4f4aa1403b489b2c0b7f92b7ed68aefff3f91248d98de9d46ba1065f

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa4acb96a239819eb39818ffe7d82d313306485a75a07e6249752c7e366f87af
MD5 1382a547263c45342d3d91c6b8291921
BLAKE2b-256 5b87d2aec9ad6c402dfc41cdb08d5715c5ad8830dde6d05f4ee809c5ee2ac0dc

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ad9cbb8f89e47edf609342dda40fd8638c75a93709e18f6e0dfe1bb9e93d85a
MD5 08b5ac5ab7635483e42e6f8f89d17cdc
BLAKE2b-256 e007f530f545922cdfc98dd3299686062ee6cc1904996b65a48cd847968c5772

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efa80c0a8b4f9f9d42ca58d2c09ee77d07a425a8a80169c08d78dd1c26c77395
MD5 b5c66fb5bbd3d8aaf129c2de7c31c65b
BLAKE2b-256 23da4179ab27d62a7e3b79b4cfe6c97b8f9554a65bf06ce3895f803b5e89de17

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6c14c706d6ad2e3ad2ef6cb20f52fab9506a042df9c1b8e2eb7e97a2ab59165
MD5 0214f37dcfdbd8f2e6c487aa40775a4f
BLAKE2b-256 71d9da5a2bf88225905dfb12757c41d014b54e9fb18d71b4fd3953678750b317

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f366c9cd7cd353eaf6c633f6edb37842743121a6d162c72c888138b8f5bb6e54
MD5 f061b9cc5bfc9edd81aac3737dcbc0e6
BLAKE2b-256 bc4ee113d0403e35cd380c78f9b3680011f594d860da61c91516d5729e817696

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbe0d1fd5037ac678dc5acd1fa3311f3a64663ad1fdaf161275c24e68079e6e4
MD5 92519a2dc1b33baf270f97b7e9271f0b
BLAKE2b-256 a259fd7fe1e0cba677d3312813c564c62df54785a94a4131e71b8c09b8b620f8

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83b846b635113822adda5ea62edc0e7f08167e05d5857cc1a4d913cbb4c8a957
MD5 1bdf1a88274ec8ee3d619f30cc4f24b1
BLAKE2b-256 9fbae8e0d454898a1110cb9702d9efb6854d72511e8f06af0b1c612517cebfa6

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1195aa4a7f7e46ef998f55755a4a002a7cc515a3648e4ad4ba0240c3f9f7fc3c
MD5 98cb8e6c42a530e3e2453720afb4de75
BLAKE2b-256 cdd2a6e87a64d7f0cea3eebd972bd118d03633d3dd85b45ab062e485196e8187

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c469ef6b62da860dd52b3906fff2540bc8a7607d95f74bfda811d56ba5ef1a60
MD5 e46a77187971d0f6f732a91d850dce1f
BLAKE2b-256 09514badf7f6ef14c0440e1291693b7e8158128b37a30ec9cf454e0a592d49d7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66940619faeebfe2bc797e94733ce657db171d3d3688f8343faca12ee36e4d52
MD5 bed24414da41dc89af7bfedba2440661
BLAKE2b-256 06908dc7dfc82ba55505566ae86ce15f9926de104b8cc443da855f86e18aeec7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fb4acbfd75c811639da792437630d6b2bc0e52c1fc61bf1ceff7782dbc1af59
MD5 4655f4cfbf7f5abb21a8c600db99ee42
BLAKE2b-256 f2d57990c58b9e2e616f998c2f125fa43fd401bedf8819ef37edd1c75b6a95be

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9f2d73ad48d282a918ee012d1706e30117011315a56f45e09487fa09f8a3baa
MD5 00ca96f70b393bf8f89c563136bf870a
BLAKE2b-256 0ab5f6c78fdb90314849d1054f8165a12fb5795da119007a5ca424e51292349a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 927c9017871e68f548206c3408db3bbb49ed9227fadc7893382a715e9163d4ae
MD5 d7e905b8c2dc68fdd8fb4fb8a0295763
BLAKE2b-256 41b325f2f30ddadf3bb3cf261ed4bc17e563b4b08d38400296bf8859799d9e5a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4551ae49394d8e0f64e352389ef5fa4a8e131e8c87c9d92c4280f9374ffa489
MD5 ee502340805ff106e462ae540806ebed
BLAKE2b-256 8c896c03eb2edc99078bbcdb70674786672b9ea37a2ddda86ea9df0f66db3fe1

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f366e15c0dc1e98f9eaeecb83fcbc4f37b0a068d76e9e590e1b347afbc8b2338
MD5 023418ef44f3061b5cff9d81670a90fb
BLAKE2b-256 c38ce99d20d4f5f990c9b27bff6359681ef85816f110d80c0e0d4222ebb76158

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41a42da4dfb36f807c2836e487cee7e23647fc7f4c3a186b90c8ec60690eada9
MD5 512fc5e836c4a3b0814a6e1e4f66f1ae
BLAKE2b-256 ce4950b86c2921093e3038d36824f5f4fdfc2316c2853045d1c9f65f106c4ca0

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 819ba478fb4c229becb796fc5d40e94016981cd362ac889092a1581d8b213908
MD5 f0ba4effd86d1bc8a300139d5cd8f6f9
BLAKE2b-256 28da1cd169e8e717738c59e525c3983f302a02d059d2f59eb07fc92da8f6863f

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 decbc4d4dbc163d4494e031b8cb253faae617b14b9c2f667eed6c431bd6bfcb7
MD5 d666967bada239daec51fdbae5ace24e
BLAKE2b-256 9e7ed0cfaea8126759c3b637ef18db673b982a5c3c8a503bd0aa42fa0e8a92be

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7a711b18c7a5f64e0e60c47a6d4bd5f5b715f98bd9bdcdae472f57379e9de3a
MD5 f54fcfc76eae1424a77a77ccdb8584ce
BLAKE2b-256 fd78d5d00524349bfad839937a4fed3c40f55973833fbe69f36c6acdbe3d0110

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1caa261cdb7134a797b037650853af7e10b1a35e8e73fb4a6421f309838412e9
MD5 decf8b41cd4b5016000165b3042c556f
BLAKE2b-256 ed2b2871f7b0933de2cdf81bd1e35de608015e43c3e5df1f6ac71c334c7f240c

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73df3179aa5ed384dca499e6e1566c23e7c89fe18524a9d25f771e36866d7f3e
MD5 b470b0c88c542f809156f22353265878
BLAKE2b-256 9b721b71f34800e1b00d3b2b6b6f07e5a38d2d2ee658b1cff86db5b157f1ae09

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ef9b4067e3c7bc48b49e3574eafdf56bd0efae1243d41badc43127973c32e26
MD5 5d27a018905962a78285f4da1f3eb28e
BLAKE2b-256 21010566d5802c88420f611db5954947d7fd0741298ad270a673dc31479c9944

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: interpn-0.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 398808233723aa8e2de99f3084e962d936e9f57fc228f5b47325a683480be01d
MD5 5e33ce7f8ef99d30f435511eac5a9148
BLAKE2b-256 5a9dd515c70ca9b22d6cc8b213567e467553db977de66922f6ef023a9399f194

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: interpn-0.2.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 218.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2a06420dad23f8de9d1e73f2b5c3cf5663da7f6ac0ddd99fc1ac5eb364e0a0e9
MD5 2a071cc025bf3accd0c335e8c16c2845
BLAKE2b-256 09ea3247412be7646ee32453953eab96c671d1494937535c705bd50d7573a5cb

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95f4b3c21ba2a6231529e05f6dddc2398f1f3cb8219dfede6164c8385628594a
MD5 30169921061e8a80c70b3fd14c378a18
BLAKE2b-256 d024674118a204c0990b46f5e6bfadfa83b10553acd40d5afe3f3acfe0d3dcd7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de4c33418d6ddf8a49b569abf778f3dfe8eeb79692b5d2e3a441e13dbf24449b
MD5 287ad016702ee77b82d2991af4238443
BLAKE2b-256 762b6124d801a6fc52f8b25b4f6c71f3f153bae55694e92d34ef285ca76b3b93

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5bc7cf19bb84f47f7d800fd51352f2edfe75f7d5eba7a28d673730d550a8c03
MD5 c658bb4ded0e9a3a05386fa4db433942
BLAKE2b-256 aecd569fdf5be9c267989df47b8724aa35be63cde446da72dad66f15fad11fa8

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c25c42620d384c4b8b0ae6f0728716014086dffe2215c9d26406ab0c207cc6f
MD5 2e526ba47b99000e4a0035dae41a1e59
BLAKE2b-256 10a08f1b31a3ae5de8c1512a7418d98b27e07d5b0cc186f339ec67b0276bc3b9

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3e7c596be4b0c73d4bae815bca20412c33fba509cf707d63ba4a6914322e132
MD5 5706a99bf14922d642c017e430347435
BLAKE2b-256 a4de8f2df21c5aec1dd155ad1e21719ee0c44e09304ef2fb75b16846a13ba2f2

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b12e6a44c419e889c2506042c75aa910513b9a3ebce33ff8d17106cc0817a7cb
MD5 10a5814f67d62d39f86fb17d1141f242
BLAKE2b-256 bd0def4e1da319bddb708d4a2ec21af39c9662d69356e4783ee5e8df247e8f98

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19b64aae4221a683a5c70482867e689e053e2cda873c621be3e43ef18e755cd8
MD5 de821da6ce094ce2f063f4fbb00212d7
BLAKE2b-256 d015353089f6a92e3e94a782e259ea4a885631420ae6394ab60440631fafc540

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40ec560b37e448656884b3c4c7d4e8973e88f1c7072e90b1ab7765312151ca47
MD5 5cbea44e4b82412ca38ed35acc49a70c
BLAKE2b-256 14b58ef468751197ecd52485bfc2031506eae20cc0aa2cdbca95081bb0d9541e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5b20359b3c34370fd163c67ecd8bfe21d8d6fec088b95157c5c9841d7e79521
MD5 fee3764397e64db42b0465e9a253b2c9
BLAKE2b-256 6cb8b14b681be0a52e11f5bdf619bbd2cedf5a49081bf51804b723db2b7e37dd

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b0d8c149f07d956037484aef8b97d7645458c6c16456795e0a526b8b87bac78
MD5 3c9d5f761934a3375b2fa67ca3c28a91
BLAKE2b-256 8fbdae9c36e9d4acc671210d96306d558a5f5617f463bb520e4502d38633ae88

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9836b44ba0a37c52bacbaa1e6b7600b99c07ee863a6dec0b6575daf73b737993
MD5 fa46cd9e2c5b67104bb90911982024e3
BLAKE2b-256 d166e5f796bdf15c965301d385da61c6b5a2eeb902b7efe24bbbdd7a6c5dfa18

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab272f3a5c0dc665b4efe20636060e7be93c0e6e25e8d2621733d7b7a3fc7a37
MD5 874c850d414950b4f27f9783af1ffba0
BLAKE2b-256 cfaf531981c5e91a194a606142aa107ac322c7f07eff47d10f007976d3028538

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: interpn-0.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 226.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c0d7475621bfcbb2a53eb1427b43a4b71f58a7a545dc5f6d95e764a37fb04a8
MD5 c1efc87840629e6f288ca30f6234befc
BLAKE2b-256 a4a782f199716e52dbc1c3a1fce4544e89f3b4080518a67a59ee1525ceb0e11e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: interpn-0.2.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 219.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 845e6bd823b89e6742e56c7ee2b455cf34778699ac4deef00c6f0d28af2e307b
MD5 18fd8c1fe5070ae5df146ad68e7ec8d0
BLAKE2b-256 a9e4128daa6924c912b2e16bb6062db1d3e114c7a94966547eeb1d0694cb5d5e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 403c44258eb3fd560d099e76aa0f79190eb65cd84e97fb9f43aafc4d6980b422
MD5 dfdebe45ea31fade271e8cf6da3f3c05
BLAKE2b-256 3a288e0c7927695a274156f4a3cdfa8546f05e6098f5e901783b325cba06b7cf

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b425f496f811a033301541ffd44a505760782b41ca7742198525580a1947c7b4
MD5 d341d9c3279d9011f6b9581cf8b06a81
BLAKE2b-256 29265cad7d7d8b33c293b1ffbcad8924b002ccc110cb3b65a5682f1d80e302bb

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 576808bd5183ce1a274e5466cff39935c7cab5642d2c79676fc8a78170c9831c
MD5 7ea753ee1a7f419f3325d1d7a80f0b99
BLAKE2b-256 f632e375fe5eabccfc3096e44f6f1b83ddb4d25a4e0371952e9248eb0eadfe0c

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad9ace41be8db58d4f1c988b3ef3ccfe8d1af36492e70e81175cded7c4688eee
MD5 01854b849d79ac30197d3844d262fee3
BLAKE2b-256 ca09508c9f1dc09cb6f64d2a09c8bb0a3aae9e2b6f8c06e448bc192281d7daff

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31a8ba3e209459c61348e20fdc18f2c9aaca191474cacf76014dcb2005ddeb00
MD5 d303f71d005af7bdb0e198dfccf04d04
BLAKE2b-256 8ba76f2939f29d82d47d2b39ed1930dd6313d3a964c015b358488662204e8f31

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cad154fe635eb447ab9329493b73054ee276c30313d2e09ab694ede7a8bf19a0
MD5 2ae16239cf741f30469b97e9de01a889
BLAKE2b-256 4d2c73b086f58f2b99b565c1cbdee970ca27f6fcafc10872589ec0195cb5f695

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c0c2a6deb79404d2ef5178180ad532ce18eb1030788822b20108d5b5d523607
MD5 d6805b5ceef0054f9174889c86c176c0
BLAKE2b-256 f9c09b0b38b535cd1c6e93f40e1ed7ce2025963c94ca4823465f51502a41bff3

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12a2217d0f8ae53d8a8ecc1aac2f1553dca7daf555a13ec40fe752f2fd6cd255
MD5 5bb5f3b2e347d2fb8ed28270fb8b882c
BLAKE2b-256 db72aaead82c1b0a08c63f82bef1ca380d8c8be4d792b2490382c0f21ea9bc23

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93ccbb8c75c9b0bb4acc4bbde46b130544f9eb85569fc647c1f3ae90f13a546e
MD5 40f36ad39bd232471e170d7e6546476f
BLAKE2b-256 412bf742336fa48866c891b5acc47d1506e558dd18d1b4800965f06796a97f0b

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c28dbe71e4b68f68d61123e141ac279b1f7e3b245f9a17145e5c2fe5ad23bb7
MD5 f6c05074efcfe9d72b58a2bcda3bd319
BLAKE2b-256 3382b66d485144d19de20ae3fd856fa1efd3ccdea3c00a2deb4687222409524f

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 184996a637885df3a525e106c437f7a2b53fd823c964a5490998c2d9e7842b20
MD5 dc22890c7ed98833e55c4f1eb1a57c2f
BLAKE2b-256 5e66a80a1da8543d9ba4c9d2d6ae6686f659ae596fcbae37ca790efceba09e84

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59a88bbcaf299de42d38faa1d4ed0af1a8bbd4ec7ac028a584186661611015af
MD5 6174c2642fd659d5c544dbcabc352fdb
BLAKE2b-256 2f42ee7a52284bbd7421960ab64fa8e19eb200cfa4f48828a9546a0b8fc76e31

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: interpn-0.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 227.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 28b92d524cef4744c47cee626df4b89cb07ac6194dc5d24cd9215c71b990a2dd
MD5 3133c8ffe9cd787e23b448bfd54a309d
BLAKE2b-256 c31a255bb34e6640f39789c8a480d871a43daadc820e1720c91e8e40fb59350a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: interpn-0.2.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 219.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fdd6191275e3cba89803b9a74d48bcc784913d44a2be164031e48fa0c112ec9e
MD5 36500d9ca7f1e6001eb32f152d0df8ea
BLAKE2b-256 ed13ae6457e9298cc988fe0308006be60bb831964342462858a383863578e68a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f127d05da2a65ac60e5a1aeb0be3f7c14367877415f0ceae6c8015306db8d21
MD5 e17e395a23853b7597e41cffcdbb1e61
BLAKE2b-256 96dd7a73b8b99d6e699cee7c26f2d7be8f1a131450263babb503be599032580a

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7df655a421f58111f8decf4aec364c75a8806f082ecb1f1a1cecd259cf8589c
MD5 7cfa2ee7cb2bd2e01d8a067859546c4d
BLAKE2b-256 0971b35d4284005833424f2aa267665a71964b11905fefcc932a978b5fd0a882

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec2d1d4258b38e353649eed884e4f99da728cadd3421a90e9ae08ab167aef688
MD5 d0b2fdbf74af34532bd4391f571001ed
BLAKE2b-256 48a7a0c4e5ec3ff8a61c669e6f93b4e0542c31a813429adf1d690693013c6417

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c6518a44fbf47892340d61dcfb1bc621a45aab25e220205f253d89c535b5391
MD5 074965a8eefec8dcf80d2d31d7b5324b
BLAKE2b-256 891be5fe816df7a18b3cf71ca95b4d9defa48b70dcd9bfe4dd8219c13c7fe6bf

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7574fbbe02a13aca97e8b5b689fbb2189d2e41a995ee802c50e584e7d430b966
MD5 d87f2e2a8a5aed12ed8228718e5c73ef
BLAKE2b-256 a90b706ffd35f383eaf623d9c98aeaabfc56c80acba7962526ec04c3c56caee8

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4a6961e1e0888d2e93b891f9ab34a56c1445cf778902620bc8cf16477d4cb79
MD5 b2ae701aa704bbb311d844f661232b89
BLAKE2b-256 2894e8e22382fc805c4de8acd17fbaebdef9e0f2c5303f69df1f02be013096ca

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10fb4a4b6703d2bf243dab0a8f85b70481e6e220570fffc162c13825cbd1f958
MD5 071647988dd67bf05dc5d77ee97e09ce
BLAKE2b-256 dae7afbcc9d0fb3c5d8c88eee4f8b4869f06218d18f7ff1b94956e3aa3e3c459

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55784cef0b776fe4d218f6f27612545a79835ce3804ede66b5c23cb5143d8a8d
MD5 e56b7f1fd9de88ec325f3deff8ec2125
BLAKE2b-256 8fd6dec47fabad73c45371c986680099f1fedd47be835e4f76efab7b4b9b4e22

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5074317e4d2237327444da917fc2c8f35fc2773255de879f1988b3de0fa1d06
MD5 3b5927ead85c9e66a992de760fb52a4b
BLAKE2b-256 5c37fb9d88ac4c552729dde43237d22b2c104c3d8ddfd7e51133f2653d9af1eb

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f4c9250724e7f80e9e61f6d76cce1ba6be91023f906abdb4fe90405e1e97095
MD5 0254eafdde14a19accec2bba9d06fa68
BLAKE2b-256 26076eb57eed473398645734f07fdc845aa4a887987da8a6e7d97f0934212bb7

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4faf5ddb781e781496f6f7b0882ec28e0b4ce8e9622d75eca528527cf88f28a
MD5 afaace626a72c5092eec7df785d289b8
BLAKE2b-256 6f0b1a8a11d069b96b4e36c634464e395386479d9e89dc5e58a5d84c5e395cc3

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e34b8427ab1923db0488f185c8ddd75f81ee7f166ab80e1c273d150ec0862aab
MD5 e5a5a911e66b8441231267eefac3b4e2
BLAKE2b-256 adfcafad82634c872e1b1b9c5c05ec33e0e184fa9bbd5694ba632d5c41179bca

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: interpn-0.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7008714d410dde660a6a2a1419aa3bcbc03d8cecabcf719e8272b7ce09af76c
MD5 2b8da80247bbe114ccfa0ce77e1ce701
BLAKE2b-256 fd25d7152b3b73cb5429c7a2eb467f738e05dd8ef46ef55a012078e6186e7ed3

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: interpn-0.2.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 219.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f25ed83c71dc8e908da7267e401e69503d4257d1c59517e26dc2c4dbdc0215e8
MD5 d09c8285324d5c4e853b256a0f5d7707
BLAKE2b-256 a1f32c2ee9cd49623591f9b436bb1908014d479ba4cf04ddb80a148ba8d70aac

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4442ee800221435cadf6ee14b3bbed9add8ef8156aafc97c302103ecb4f998d7
MD5 c12d2e5023a513c078d13b57b90653f2
BLAKE2b-256 d9a29b1db8a4ce25f0d81432c4b1a6a7791c405131dbc5199f368f66f792401d

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84a177c81c6d89a5d8dd2509a295c556ebe289164d60abb031e195f3c24e0b9e
MD5 2d81216ef43cc36accc6d67f60307a9d
BLAKE2b-256 8eb711a2ec08ce9a9aea96b7cabd19a5ae7a388f7ba11dd10a9af0ac24cb2bbd

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8853a4b6b6abe519933590d5cb5f1a2874b7892174cdcfd2945dd2ddb24f1f88
MD5 8f0c860fc2e3a8a106c3f26be36ba5aa
BLAKE2b-256 0d4d672453c61a192b23dcd8046ed000f03a9818b1f20d95d40d77ba127db501

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7cbdf1996290edbb3a5b717260a80a491258d1e0a7c5634dc38b8edc55f4c66
MD5 0befb76fbd91cc487aa3dea355931f46
BLAKE2b-256 cf4557848286a7c5dc0f0c033eadef8af3b90513fab48347a5aac5998cf4a62e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adbb92b627a78994e3a82bae052d91f7a3adfade609a7dd1105991657508841a
MD5 c7b855a48f17852844c62eb2dd01527c
BLAKE2b-256 aecd74e98be2d25e8e3be80a10e8da91d0c4b4f6445c2b1bf5a9ec1db7d5c5c1

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 241443329ac21d6705d6b55b94f5169146ceb25654437c9564288954a7c93c68
MD5 0b64a8b75b92d6e5ee419e2bbbafe3b9
BLAKE2b-256 9734f8fef7507f13f75d64edc123e76bf0a0f3ccac6a2fb007be732aa570e814

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d3002360dfa7d52f0d8e5d532abf2994352f955fc65abe01511af1ca9a72d00
MD5 55157900d116e635db625ea9f983904a
BLAKE2b-256 bd0d9dc25a6bd4537cccce391dceb0cdf443dff3aec2ee11bbadd7328abc8fa4

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77bf809f40b198d4dc089adc9db7350921abe5f6429582e08da546666b5b205d
MD5 b0353dd9d81d4e5e8a79f3a7182ea033
BLAKE2b-256 30cd46ae48e96e5cb33a2e2153b505b41b8dc7fb780e35342d83d964061295a1

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6802733432a610d951c8fbcc04c88ad3770f6eb86b63f53df107a60837c4d4ac
MD5 f025aa2cfecbb18ec70919d95ed568bf
BLAKE2b-256 6e4fe830a8d25f0393fd2d870ff1756c95d7f7680faa989bc232fe524484f5cb

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b31f4f36d48b83f5d13e432b0dc643db7a2fdeda9904646be65815bf5189f740
MD5 b02c6ed0582c5bd935ba5ef80a22757f
BLAKE2b-256 ffdcfc6bcf9c8e0a3a6f32c5392eb8e92a78fe331bba997f9628b2975cf2cc8e

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: interpn-0.2.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 227.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1357f5d9f8c4e31832d5254375631870fe9b4441af55281212e15bc37106dd81
MD5 185f5c0aaae74053060247961e53b5a6
BLAKE2b-256 f2dd056e4c39ebf43ac01527c2a4d2251d6cf8051c17cde0c47e6318716e1f52

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: interpn-0.2.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 219.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for interpn-0.2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cc062d6c0d946294aed2778cf3c4742c6f6d926b70e1fc1b3fae41c7a8eb34df
MD5 1525b79258be7a224f3a3964d8f1ae1c
BLAKE2b-256 384f210be6a14f9002ac6ebea5f7b0f022b93a0b8d5df8b83036093c4181e3a6

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48d80adee516547dbcb1678174a158ab63276eb678d4d9e166e69ad42849f210
MD5 13768efcb4f0db757debcade15ea3a6e
BLAKE2b-256 48140b45ff7262ea09f0f3bb3ad6b51404ab4947b55180f2edc31e8c5ad1e14c

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a50cea873deb64dbfdb00ea0ceaac3b844aab04c3934d001044ae0fe9d7ade2
MD5 d03d26dbcdf690bc7f4b30f013053399
BLAKE2b-256 993da0696fa6cb74da44276752d61297ed0dfd87c2e1ea554de057e953cc8c47

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aeacfc24db65a20126953a3a0827165ef990f2351b5417c5a61bea96f7421df0
MD5 e1e8ae7e21468d9f314230b91bcac7c3
BLAKE2b-256 3e7633243e1af9b4ea27d53d0ab5e63b6ea288a88a1b58024927cf3917928bda

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ba65a3b7f5f586274c374c6570fa64344922c73f7c2185de1df88bed44cfce9
MD5 a993a9e43f9f0e0de1a0cde6a8aab799
BLAKE2b-256 7d0bea5bafa7a94dbb49419e21db329927eb79b2f55be84f37e511535b308d6f

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21647a0f26fe2c17148125093c93c667354e7578f1c09e812baea39e3d123379
MD5 fbc9abe0ecfa255f341fb55db1c0da6f
BLAKE2b-256 d4aa119176d365e6e25062a331ebff079a9a8c82b2b8f141bbb164a9a508df68

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cac53be82d53a97099ca238c95c7f13748ce2d6402ae96f38621618260a3d78e
MD5 c63141cbbb931951e8a8eeec85ef4422
BLAKE2b-256 79c49d834be9be0ad05e26ea887dcd29a544874d9c38c90a1c7e17fab1a67c7c

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8148c422d8219a58407208800487ebcd85baeb0613c68e77d61386a5fad9c66
MD5 7d081a96cb42dc86d6cc8d6f7556bff8
BLAKE2b-256 c85bd0704551de26fd4ee3c454cdedde62eeed261a6fc3396c3144e9a4e84769

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8022cee135d1ae80986d8a890d3001c10d1fc0662e517b2dcb924f257a57564e
MD5 564c5331c92e83c1d79ae8d98e4a67c7
BLAKE2b-256 6cf693329f678e855d9a518507c8fb8eef9b819a5a6fb20b062677be99656254

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53e57e26964170405d79a0c5d1323a566d4834b34c7f146e64246500958c6cd4
MD5 88a0494bff0fd1754cef5b10331fe890
BLAKE2b-256 20665984a3e847811e00a82df70a44ab4e0a5aa47f928b554acaf6c5053d4be1

See more details on using hashes here.

File details

Details for the file interpn-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for interpn-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96dd5ca5f1d8ae1923419c0c2b89df0c93103b2bbf4e4dc369781a6767c4ee1e
MD5 3773a93185b0d4c86af17dc4200f4bdb
BLAKE2b-256 abd2a7dec1e10f17bc27a1471454b947ad3d02d046a7e16de2998f9fcdd4fd4e

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