Skip to main content

Interpolation plugin for Polars

Project description

interpolars

interpolars is a small Polars plugin that does N-dimensional linear interpolation from a source "grid" (your DataFrame) onto an explicit target DataFrame.

It supports:

  • 1D/2D/3D/... multilinear interpolation
  • Multiple value columns in one call
  • Target passthrough columns (e.g. labels/metadata)
  • Grouped interpolation over "extra" coordinate dims (e.g. group by time and interpolate over latitude/longitude for each time slice)
  • Non-float coordinate dtypes such as Date and Duration (they are cast internally for interpolation math; group keys preserve dtype in output)
  • Configurable NaN/Null handling (handle_missing): error, drop, fill with a constant, or nearest-neighbor fill
  • Boundary extrapolation (extrapolate): linearly project beyond the source grid instead of clamping

Installation

This repo is built with maturin and managed with uv.

  • As a local editable/dev install (recommended for hacking on it):
cd /path/to/interpolars
uv sync --dev
  • Run tests:
cd /path/to/interpolars
uv run pytest

Notes:

  • Python: >= 3.12 (see pyproject.toml)
  • Polars: pinned to polars==1.37.1

The API: interpolate_nd

The only public function is interpolate_nd, which returns a Polars expression (pl.Expr).

from interpolars import interpolate_nd

expr = interpolate_nd(
    expr_cols_or_exprs=["x", "y"],            # source coordinate columns/exprs
    value_cols_or_exprs=["value_a", "value_b"],  # source value columns/exprs
    interp_target=target_df,                  # DataFrame with target coordinates (+ metadata)
    handle_missing="error",                   # "error" | "drop" | "fill" | "nearest"
    fill_value=None,                          # required when handle_missing="fill"
    extrapolate=False,                        # True → linear extrapolation at boundaries
)

You typically use it inside LazyFrame.select:

import polars as pl
from interpolars import interpolate_nd

out = (
    source_df.lazy()
    .select(interpolate_nd(["x", "y"], ["value"], target_df))
    .collect()
)

Output shape and how to consume it

interpolate_nd(...) produces a single struct column named "interpolated".

That struct contains, in order:

  • all columns from interp_target (including metadata like label)
  • any "extra/group" coordinate dims from the source (see next section)
  • all interpolated value fields

To "flatten" the result into normal columns, use unnest:

flat = (
    source_df.lazy()
    .select(interpolate_nd(["x", "y"], ["value"], target_df))
    .unnest("interpolated")
    .collect()
)

Or access fields directly:

only_value = (
    source_df.lazy()
    .select(interpolate_nd(["x"], ["value"], target_df).struct.field("value").alias("value"))
    .collect()
)

Grouped interpolation over extra coordinate dims (e.g. time slices)

If the source coordinate columns include fields that do not exist in interp_target, those fields are treated as grouping dimensions.

Example:

  • source coords: ["latitude", "longitude", "time"]
  • target df columns: ["latitude", "longitude", "label"]
  • values: ["2m_temp", "precipitation"]

Then time is a group key:

  1. The source rows are grouped by unique time
  2. Interpolation runs over (latitude, longitude) within each time group
  3. Results are concatenated, producing len(target_df) * n_times rows
import polars as pl
from interpolars import interpolate_nd

target = pl.DataFrame(
    {
        "latitude": [0.25, 0.75],
        "longitude": [0.50, 0.25],
        "label": ["a", "b"],
    }
)

out = (
    source_df.lazy()
    .select(
        interpolate_nd(
            ["latitude", "longitude", "time"],
            ["2m_temp", "precipitation"],
            target,
        )
    )
    .unnest("interpolated")
    .collect()
)

Output order is deterministic:

  • target rows are repeated per group
  • groups are ordered by ascending group key (e.g. ascending time)

Date and Duration coordinates

Coordinate columns can be pl.Date, pl.Datetime, and pl.Duration (and other numeric-like dtypes). The plugin will cast coordinates internally for interpolation computations.

Example (Date as an interpolation axis):

from datetime import date
import polars as pl
from interpolars import interpolate_nd

source = pl.DataFrame(
    {
        "d": pl.Series("d", [date(2020, 1, 1), date(2020, 1, 3)], dtype=pl.Date),
        "value": [0.0, 2.0],
    }
)
target = pl.DataFrame(
    {
        "d": pl.Series("d", [date(2020, 1, 2)], dtype=pl.Date),
        "label": ["mid"],
    }
)

out = (
    source.lazy()
    .select(interpolate_nd(["d"], ["value"], target))
    .unnest("interpolated")
    .collect()
)

Example (Duration as an interpolation axis):

import polars as pl
from interpolars import interpolate_nd

source = pl.DataFrame(
    {
        "dt": pl.Series("dt", [0, 10_000], dtype=pl.Duration("ms")),
        "value": [0.0, 10.0],
    }
)
target = pl.DataFrame(
    {
        "dt": pl.Series("dt", [5_000], dtype=pl.Duration("ms")),
        "label": ["half"],
    }
)

out = (
    source.lazy()
    .select(interpolate_nd(["dt"], ["value"], target))
    .unnest("interpolated")
    .collect()
)

Handling NaN and Null values (handle_missing)

By default, any NaN or Null in source coordinates or values will raise an error. You can change this with the handle_missing parameter:

Mode Coords with NaN/Null Values with NaN/Null
"error" (default) Error Error
"drop" Drop row Drop row
"fill" Drop row Replace with fill_value
"nearest" Drop row Replace with nearest valid grid point's value
  • Rows with NaN/Null in coordinate columns are always dropped (except in "error" mode, which raises). A grid point with no location cannot be meaningfully filled.
  • fill_value is required when handle_missing="fill" and ignored otherwise.
  • "nearest" finds the closest valid grid point by Euclidean distance in coordinate space.
# Drop any source rows that have NaN or Null in coords or values
out = (
    source_df.lazy()
    .select(interpolate_nd(["x", "y"], ["value"], target_df, handle_missing="drop"))
    .collect()
)

# Replace NaN/Null values with 0.0 (NaN coords are dropped)
out = (
    source_df.lazy()
    .select(
        interpolate_nd(
            ["x", "y"], ["value"], target_df,
            handle_missing="fill", fill_value=0.0,
        )
    )
    .collect()
)

# Replace NaN/Null values with the nearest valid grid point's value
out = (
    source_df.lazy()
    .select(interpolate_nd(["x", "y"], ["value"], target_df, handle_missing="nearest"))
    .collect()
)

Note: "drop" can cause "missing corner point" errors if the remaining grid is no longer a full cartesian product after removing rows. "fill" and "nearest" preserve the grid structure.


Boundary extrapolation (extrapolate)

By default, target points outside the source grid are clamped to the nearest boundary value. Set extrapolate=True to linearly project from the two nearest grid points along each axis instead:

import polars as pl
from interpolars import interpolate_nd

source = pl.DataFrame({"x": [0.0, 1.0, 2.0], "value": [0.0, 10.0, 20.0]})

# x=3.0 is outside [0, 2]; extrapolate from slope of (1,10)→(2,20)
target = pl.DataFrame({"x": [3.0]})

out = (
    source.lazy()
    .select(interpolate_nd(["x"], ["value"], target, extrapolate=True))
    .unnest("interpolated")
    .collect()
)
# value = 30.0  (linear projection)

Without extrapolate=True, the same query would clamp to the boundary and return 20.0.

handle_missing and extrapolate compose freely -- for example, handle_missing="nearest", extrapolate=True fills NaN values with the nearest neighbor and extrapolates at boundaries.


Important constraints / behavior

  • NaN/Null handling is configurable via handle_missing (see above). The default ("error") raises on any NaN or Null.
  • Source must be a full cartesian grid (per group) for the interpolation dimensions: every "corner" required for multilinear interpolation must exist, otherwise you'll get an error.
  • Out-of-bounds targets: clamped by default; set extrapolate=True for linear extrapolation.
  • Duplicate names: value field names cannot collide with interp_target columns (and group fields cannot collide either); collisions error.

Project layout

  • src/interpolars/__init__.py: Python API wrapper (registers the Polars plugin function)
  • src/expressions.rs: the Polars expression implementation (Rust)
  • tests/: pytest suite with examples (including grouped + Date/Duration coverage)

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

interpolars-1.2.0.tar.gz (56.7 kB view details)

Uploaded Source

Built Distributions

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

interpolars-1.2.0-cp314-cp314t-win_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

interpolars-1.2.0-cp314-cp314t-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

interpolars-1.2.0-cp314-cp314t-win32.whl (4.6 MB view details)

Uploaded CPython 3.14tWindows x86

interpolars-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

interpolars-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

interpolars-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

interpolars-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

interpolars-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

interpolars-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

interpolars-1.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

interpolars-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

interpolars-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

interpolars-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

interpolars-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

interpolars-1.2.0-cp39-abi3-win_arm64.whl (4.9 MB view details)

Uploaded CPython 3.9+Windows ARM64

interpolars-1.2.0-cp39-abi3-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.9+Windows x86-64

interpolars-1.2.0-cp39-abi3-win32.whl (4.6 MB view details)

Uploaded CPython 3.9+Windows x86

interpolars-1.2.0-cp39-abi3-musllinux_1_2_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

interpolars-1.2.0-cp39-abi3-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

interpolars-1.2.0-cp39-abi3-musllinux_1_2_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

interpolars-1.2.0-cp39-abi3-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

interpolars-1.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

interpolars-1.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

interpolars-1.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

interpolars-1.2.0-cp39-abi3-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

interpolars-1.2.0-cp39-abi3-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

interpolars-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

interpolars-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

Details for the file interpolars-1.2.0.tar.gz.

File metadata

  • Download URL: interpolars-1.2.0.tar.gz
  • Upload date:
  • Size: 56.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0.tar.gz
Algorithm Hash digest
SHA256 9f418dd0c6f0fbc022ead311b1e9408a975c86e659bb3804ea9252cea9487ebb
MD5 8dc14c562edbd05e640b387489b25f3c
BLAKE2b-256 01c587e0c16c8acfc84ff151079267cca733b10d5453ff7b3d90e5ad959ec61c

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 bf70a2e3fb8da6a80b5834f6d70d7027d6677423243384e7ba344cb5b112830b
MD5 3de2790005685107409ba779a06709b8
BLAKE2b-256 b62fb27211c727c6cdc77ff08fa664f20da99f77cd0c5094b7e97babf50273fb

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6e1be80f9e8bffa940520aadd5ccf01d20fba7b0a1c22b3552949be7f9fbe98f
MD5 a09ce80dffb692d72d8f9cd958405f4b
BLAKE2b-256 8fbe51c11c073070adb8a095e44555c68a6f0231ca6244fdf8e659ce2a1a1876

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c70ccf5ad11b279e25be97edc2173327d231b20b6affbca1083f499af9105b06
MD5 db99b928f181a130dc4f34c48f4eccdd
BLAKE2b-256 0d155f27760fc34f8d977f47b64374220e11f1b9a9c317332c00367e048202dc

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af756c3051294c850aa247afcb0f7cf1f1c66e603ddaefe29dc5665ebc71e40
MD5 7881019c189fb8db3c78a4dc38c164b1
BLAKE2b-256 72b67dbf76e33640650d6e28e56082eb1d9ce47fe5027f0402fce2f9ae06c8af

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75f038989a0dc8e661d8ebeae747187e1690f61d43653923ad8b899c6dc5d2cc
MD5 2e157b93e0d6835ee2784ad16b5b3d80
BLAKE2b-256 e2ef4fd56a4fab51df24919a4b4ec70ccb19ac9387849d3dfb64f082d029f53f

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9db569d1e8bf71f1d62a0df8f530b488276bb93960db4ba23f000e5ce5ac7f2c
MD5 fceae9b6e4d0c79a2656e5439bd2392a
BLAKE2b-256 5b88b630aaea060fca73423e6ea5b925b0cff2d4e1c1f900a6e9f78a4cd3c1e4

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06399293f3525f8674c0f218c9e8a8e327651e63e64190e2a0b9b6378cde02a5
MD5 1d68202351b086bd0542902d143a62d0
BLAKE2b-256 7b8500986b84a0ee620141445126652361792bf2a96e8114188cbec98a5d4c3e

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 276fc3e65d4e79e79b61fd66778a3fce7dda2289e6a03c93686c6d47e8ed7c38
MD5 4cf26694b4550f6c05fe97552ba2883c
BLAKE2b-256 a930306828015016b860e0925c3f8f8529362a90b29f4700631ce350a919ac16

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69e52790e248693513351834b9efe98fa6190a82ca004815ffb931703d0e93c9
MD5 b97ed924f1e4ba2eb339ed3d96c4dfa1
BLAKE2b-256 fe511f11d199fdd72d6f7aa19f7e8a46bb50f52f78d6d7aa2f1f1f8dd0c4fdcc

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1796db5bad99c89433819da83735b35bdea26d9145b5bea5b3af21196b78b103
MD5 d8a4b3d8d1ccb47ff36508c54971365c
BLAKE2b-256 a5e06c7d1ded7a20a57850123dbcade4435a305d167eda152c2dc7e0da429032

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2fa6a7b8bdf868718804384d7b53d14764fb21c1da3a4e239d6b86301254186
MD5 9aaba5f17f5408b41df382cdaace7e31
BLAKE2b-256 dcf814102a938d5f5f8f3c9f818ff776e8ba5c859985d413c3078847878f9fe1

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bc990a5a18a308d702715a1a5a0eafc0b2c3b625701745cc1d19e1e0e37ebf5
MD5 9037bb754b6fb4490895e613b67a7c68
BLAKE2b-256 0abacb37660ec16b44706bd483fd7a622d1d0871f5275e1b37097c5761a9593a

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09ff0528c82d45e2da92fba5eab3a0604e840f1bbbc81d7017dc50f701132e2e
MD5 e5932f8240b22c5c77f863005c8b6b5e
BLAKE2b-256 7bd1480273a1df75ede2b62800fae3a947543c6d1e36eae8082b2745d9128dc0

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b9cbdf7868075c6cde75c2b0c31fce72cec2538ad8a2f8cdfa9147cd0bd8e75
MD5 98e2a91782e2a0b00e23780e139ab14a
BLAKE2b-256 ed888555f8d78b7faaf31bc3787dd535fe60235b76363a62408d05117eab6732

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-win_arm64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 96adb0373d0fc702f4cb5d93e6600d2a8c537487b6033983f752abbc70c5e7b6
MD5 d8f8333672d298acfba4804cd533ee8d
BLAKE2b-256 7029dead5bcf8f604674e96ce87be388fa42a10634e8b42c07350525fb2c1d24

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 54ef3b335cc6ea4cfdc6742866270d075e18eecedcdd78f7865582acfab02e0b
MD5 0231ac66a2f3d9209a826b740f05e135
BLAKE2b-256 33b3a36311dfbf8fb5c1610b948dc1b728a02c873170198bdeac8c27e20fd5a0

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 261fc5c8804925b65432ceea7d510247f233cb97be31bafe80bef962475478a8
MD5 ed6a00fadaac50c8d0f76a36a427f5b2
BLAKE2b-256 5854caea73751e5b45c0e9de33f2cb88301cf6350a9df19162fd4c23b061e870

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f1dd46ecb1ac508040df5306b84bf267045c32bffb5906fea9325278708dc13
MD5 6ace526ada6bf23b17f7b5a05372a5a4
BLAKE2b-256 7615dd758108f721e8ef6cac275416a49d73ed673477a463eaed7264826c5548

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92f51fa9882f89f55d4b238cac52be51edce7eb0435f3937ad33ddb705ebef95
MD5 fc8f866b2e89fd301b331c3cec2d77c4
BLAKE2b-256 87ddc42bd76913ad9dcbd18bc5ccebd9bbee911fb6e0b7542ebb1d600b008a48

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ec567128803f681e3dea18b4acaa19c26aab13946de5ffcbf6fb6af0cd1bb95
MD5 20829c2eedb6803418366127de78936d
BLAKE2b-256 ba6671be8f57412f078844ae6caa64a66c935422b1de23ca4f5828f55bcf3623

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 849eeacb056f8d620c5d77d1085596926684db148ab9fcf0a94729649fa52f90
MD5 b2e2e2e4d4bcca42d63012642c062ce9
BLAKE2b-256 626f307c2b357899e4d0fff378547a6fffa9bdb2294a866fc6ca08f1789deca2

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3fab7a64ab82ba52c810581675dc5dc4bffd969c7c8248cbae0b0e351c57c4c
MD5 d77a6531c379e53bde2acc5a8c8478c1
BLAKE2b-256 c6cc1ed84d1304e386834884d86c235801248de524ec912aa7449e37e2bb13d6

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6837608a3ecbc4606c79c079c45107d6757ec8c4ba9c2f90e6e9df27264a89b9
MD5 0f88d7905a12aaa793530227caaae43b
BLAKE2b-256 7fb3eecea3566edaa9627c45653644cbb2dd3d23575d24ab260798e3e0c34832

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9930a8506b970d45cb6341bf0adc5c8ec8c1e9ca7dcf5fa9d504cb1f950806ff
MD5 56562c710d2ee5ab1fbc07b9a7d1209a
BLAKE2b-256 a14fbdb4ab19097318347388fe3a8f7516ed1aa5f023498515a81f773e137532

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5baa328293ca0adc9da249a4a9441185e3e84a2302f5244583bc3dbfdce9cd1
MD5 7eff975a8bb6c5a97ccd795c931a941f
BLAKE2b-256 6f7d972ccc84db0afbf6d95844d914188d7cfc7f51b5895574dbb54b8b4046ba

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd8e49ea4879abe4cc9a937a5cae810ff2fdfb99a6e45cd5112e86eb78fbce42
MD5 0ae3f2b803c8a48278e44bc35b7942c2
BLAKE2b-256 4c6305d5ab43192d9cfb837b1d375b27bcbf4e99392b9b0107d09eb10a9488de

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 678f5f95dbceeaf257b87f78240020c2ebcf3ac4a4c8da49e3aa2553dda3352f
MD5 5aa8c624c9cfe592b6398bf3b622dfd9
BLAKE2b-256 a6b71ac6e8bc474ebdd48714a425216577106d2fa37336626bd3c2d275c2a04a

See more details on using hashes here.

File details

Details for the file interpolars-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: interpolars-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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 interpolars-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f87962b90155b3928efe73cf24945abc519f4938e7b7cdcfae61521be5f6c5a3
MD5 e737f714c91a9eae6124b6a1d539deb9
BLAKE2b-256 34b639663039c3c94f998f8fe83a6403d8a24bd9956f003abaf516512e3e1cc0

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