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.1.0.tar.gz (55.2 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.1.0-cp314-cp314t-win_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

interpolars-1.1.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.1.0-cp314-cp314t-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

interpolars-1.1.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.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

interpolars-1.1.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.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

interpolars-1.1.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.1.0-cp314-cp314t-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

interpolars-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.9+Windows ARM64

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

Uploaded CPython 3.9+Windows x86-64

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

Uploaded CPython 3.9+Windows x86

interpolars-1.1.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.1.0-cp39-abi3-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

interpolars-1.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

interpolars-1.1.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.1.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

interpolars-1.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

interpolars-1.1.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.1.0-cp39-abi3-macosx_11_0_arm64.whl (5.7 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

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

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: interpolars-1.1.0.tar.gz
  • Upload date:
  • Size: 55.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0.tar.gz
Algorithm Hash digest
SHA256 c6587ed507e71a0c697228d1011812c4e56e504d9e4ee1d7e68f3abc6b6ecaa8
MD5 8ec9b773eef2a739b38159ff6510f377
BLAKE2b-256 fa3e104fb3fd1cd9ad8a58cdac2aae14db43ccdda644f7fef027dae3e5e94b82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 33e9b345c3c35d61eeb4b52212b09b908b91cc49c22b0783eef66360301cb83c
MD5 cd839b1bc3f84dc6e3645993d5d3e763
BLAKE2b-256 ef0b50feea6eb560401121a598cdaea4356fb88dd949063c8933d95897a92b04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fa362f39ade72196cbdfdbe056d90750f21f3bfb95b2b9378491c72ad1dd5ec6
MD5 0b96f6f189d5e730c451f1e1be2dc5fa
BLAKE2b-256 31a20586eaa6b2bd8eed6b332cf07186f24d227ff210857d8042dbeecabf36c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a3695ed143de6e567430c564bc44b890fe662a6af964106762b7e977c6544358
MD5 fa62efdb3af62a73c7d10ebf04c3b734
BLAKE2b-256 bc05d5caaf47813bc8277a3960fb4b7054251903af27337b9ac6fb6e7b860ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7288c3d5c62e01a3028fc6a169e98fae30e618fafbee20555fb61a6aa7f38a2f
MD5 4d0228933c21bd49cc2af7bdc91c6a13
BLAKE2b-256 151cfeb86470aec82a6be32367efe8af6736b7e7d1e406497720382b476d1ee7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c42b071b450dbab9a3bfa0c2258570bc25e0c8964edeca5552f44f69cd091cb
MD5 89eebfa68eb449945ce22ffe5c1b2648
BLAKE2b-256 ec0df4e6f667eb37aa801315986bd79a3a4525e4a8262bfd1e4b9142288fc1e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2f25b42bf73b0aad0529c9e0022277f19a0cdcff54a175455b2bc7f846016b6
MD5 be2e9d625f7d4375776e1a1a4e73a237
BLAKE2b-256 6673501c6717d5f88f395006c07cd2a7bf292f37a91438770090f466c88e3695

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cad1e9a4288003d1d19e2e6d9e6d3bde120788d224a09b990ecb1ed36f69ecb9
MD5 242d8d6889e85204b41fc315257b16a1
BLAKE2b-256 d1693269d512368e264449f76fb73f89bc84bcacb0de000d27e659e70a51f9bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d79a59074b62466e6f9307cb6282c102012fb8fc4bfa2b355fe4680500a80fe8
MD5 011aeedcc41135dd3fbff1dbc51194c5
BLAKE2b-256 b1f297783f23ab56ec9ea4644e63170c206e041be6f5d67fd4dd7ea7fd55d152

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7979f41cc803ec21941b15c2a82cc814eacc114fe728a6f572a9e90630f44da7
MD5 0d5b1a17f6f076d1821a33134c2bd660
BLAKE2b-256 ec57e48e8519f38f360f86db14745a914b7ed926e4eb625cb01f7838b9c867ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a88d2633dc49b930cd1b201983b3d38f154622afa82a435eec974af295fb775a
MD5 0231a763cc2a8993dccfcd881d7c9e82
BLAKE2b-256 2f78050193e516dcd6d97a08eb861fed730f8069aa9560cd7bb374f830de6a9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f29abfaaeea932f8a4eccae05bec2704f17717be91f9db4e00b8ab57ba46169a
MD5 9cea2a2247365d6f0b04928f9db8048a
BLAKE2b-256 427104c6e69b8c0384bcab3b0d9d6782298ba3efd06d2c1a9add144e231b4bd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfd1aaba6128ea1e6434f23e52f0c3a3d4ef1993582068892c4c77a1b48f987b
MD5 2d7782e3969fe3e6185d8588edbe1f93
BLAKE2b-256 b93277e3504e2a581e67aa341c0160aae2cc532c3e597769f8a1b518cb01b3ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8e50876d7ea04fc05bd263fb1d7637ee2a47a12dd10f61212cf9ffdf85e50f3
MD5 a30cb7687dd37fd4e304b858c03af032
BLAKE2b-256 cbfd80062bc088384ed694ca22620cb5b5c4f41281dd6ffc72593a19f5d0ae44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11655df53719adb6022beaea36224b69d9c2d861483926c584a03c17ef715799
MD5 4ddb22dcfa2b4c0d69925f3ed03fab0e
BLAKE2b-256 a7ad49d87201a3f29c32410865afb133903f5eb1a23484d4925bba0376f7bcce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 04b4a4a4956e9d980c43a270d9552a7d071d0aca93b1694f626fc4d0a8a6ba4c
MD5 226afd3fed4fe36ffb1e434e1ec0daec
BLAKE2b-256 b1246b8922f773e68e6ea3a3e8ec30cfdfd68f26a56255bf4bc509115e2de3ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 fdf0b4cef73118d3f96c18ed1ea5adecaef200fba81ab5c60be9667ae94cb7c7
MD5 6eeffc73014ba3883ca68190b4f27fa7
BLAKE2b-256 adaefc3357a8dc1d30f2a18b2d301fd069bada2da374f26f7be2b00cc6a3939e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 07d8a904ce867778b58b776fe2cfdcc79598d088d9493086720be43c5eee5fce
MD5 744e85a6ae4f25c2b93663c575f8f990
BLAKE2b-256 d2dcfaf9452702e14bc218efe3e8106a248ef1db1744c1582ab982d98cecc5b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b89a76351941a5e83e107a62b468a6c317e5dbbac1983650b999aa1629773bc3
MD5 c5e8c088ac294b399d01d354cacf27c7
BLAKE2b-256 17633f1c1b8f01442230809ef39c692c8c278a9e58b5090f03a3da4fb604cb06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51ad50dfd14e6a9a55f380920c80e75d708f38c588b1f79f7ddccc4b4de216aa
MD5 c06e8da7b322c79964fb70d8d02a6ebf
BLAKE2b-256 6f841fbb95d541099225fb1d9ebeb14bca90628ed41189f306b909841e303d0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93f5b25e36698eafc6c85545455f9e73e6d057e968d016860f6c133699a0e8b7
MD5 54c69e07b67e12bbc6d215701dc0275f
BLAKE2b-256 272ad3f2f9a98e752f2275bf9fcd620ce7367e0629bef98f73c51e69155d7384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e7b46d8ef0d2bf8899745c438b75265f3aa063a3996c26511bea12cd0a072a3
MD5 86df76c8ad69fd9d0857f29530658a37
BLAKE2b-256 a310b57ebd8f2d9722d6b5a2275cd1936eb784f2fa66294c31f61c4de7d917d8

See more details on using hashes here.

File details

Details for the file interpolars-1.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: interpolars-1.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38d887d924ab5b811655da17cc4cdff0272cf3be657c63942d4ba673f04a8d18
MD5 2cd005a3cf001e866c1aa28de6473241
BLAKE2b-256 185f4895d1d2ea02888326e2108dc0c8ba39cb4e287c7b430780af4cef6e80f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79432420a274adda8a067d28d8dba8d3a7cd289a7fd9ddc2eecc78b8147472dc
MD5 c4949340cc5d6b75be264eaa5f0947aa
BLAKE2b-256 1881cb5740af8b3ce4ad4b11db43194e9c781fbcad8c681fb696e360949be03b

See more details on using hashes here.

File details

Details for the file interpolars-1.1.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: interpolars-1.1.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6559adccd099477aa2f83ba4ed53fff56799d333e744d2d4c1ff04ace9a65684
MD5 9b77f45a03fc82e980097c6f46bac972
BLAKE2b-256 69b9cef962c26084e0111c90623abe5b5108a5e7d559eede164499719f85f76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eec1932b1647f4c0c97b06fc25fcce1606163096035d10002846c2487cf1d2df
MD5 a6f8d2dd4a44d0e2ae51ac2e9b6ec656
BLAKE2b-256 c66e5095c77262a87387e2ea8e7f317178e12bb88842abf1c2035558d40da7ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f561098e5ccd58b007fecbaf7cb1de44dcd2ebc6cef8dd70fe94fcd5398d553
MD5 90885b717e131caa660098f4c8325a3d
BLAKE2b-256 639ec56675062806f6a2d9609bfa384431e1b1795f1014169b54a7d8dbdd25aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1cb91922991ec1004f732d4b75c15c712e526562814a531cc0b967fb5e48c68
MD5 52500f4e58b574bc17ae5ebca1283bf5
BLAKE2b-256 d335e34b04ab7389315d1bb360e08ebfa1b5efdf50ba48babad181cd5c05e984

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.1.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.6 {"installer":{"name":"uv","version":"0.10.6","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.1.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffca47985a52b0aa0a8bdddac78fd61d397fc9fe6a6adc7bd4ec35ed591d860b
MD5 05d14d6c8145fb7f34d6f0a9178c36e5
BLAKE2b-256 f930768b50d01ac6fffa612b38a42a239c161b3cbb3f432485840508b219a064

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