Skip to main content

Interpolation plugin for Polars

Project description

interpolars

interpolars is a small Polars plugin that does N-dimensional interpolation from a source "grid" (your DataFrame) onto an explicit target DataFrame, with optional spherical-geometry-aware geospatial interpolation for lat/lon data.

It supports:

  • 1D/2D/3D/... multilinear interpolation (interpolate_nd)
  • Geospatial interpolation on lat/lon coordinates with IDL wrapping, pole handling, and scattered-data methods (interpolate_geospatial)
  • 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

Two public functions are available:

  • interpolate_nd -- general N-dimensional interpolation on rectilinear grids
  • interpolate_geospatial -- latitude/longitude interpolation with spherical-geometry awareness (IDL wrapping, pole handling, scattered-data methods)

Both return a Polars expression (pl.Expr).


interpolate_nd

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.


interpolate_geospatial

For latitude/longitude data, interpolate_geospatial provides spherical-geometry-aware interpolation with automatic International Date Line wrapping, pole averaging, and support for both gridded and scattered source data.

from interpolars import interpolate_geospatial

expr = interpolate_geospatial(
    source_lat="lat",                      # source latitude column (degrees)
    source_lon="lon",                      # source longitude column (degrees)
    value_cols_or_exprs=["temperature"],   # value column(s) to interpolate
    interp_target=target_df,               # DataFrame with target lat/lon (+ metadata)
    handle_missing="error",                # "error" | "drop" | "fill" | "nearest"
    fill_value=None,                       # required when handle_missing="fill"
    extrapolate=False,                     # True → extrapolate at boundaries
    method="tensor_product",               # "tensor_product" | "slerp" | "idw" | "rbf"
    # keyword-only parameters:
    tensor_method="linear",                # 1-D sub-method for tensor_product
    power=2.0,                             # distance exponent for idw
    k_neighbors=0,                         # nearest neighbors for idw/rbf (0 = all for idw)
    rbf_kernel="thin_plate_spline",        # kernel for rbf
    rbf_epsilon=None,                      # shape param for rbf (None = auto)
    lon_range="auto",                      # "signed_180" | "unsigned_360" | "auto"
)

Usage follows the same pattern as interpolate_nd:

import polars as pl
from interpolars import interpolate_geospatial

out = (
    source_df.lazy()
    .select(interpolate_geospatial("lat", "lon", ["temperature"], target_df))
    .unnest("interpolated")
    .collect()
)

Geospatial interpolation methods

Four methods are available, selected via the method parameter:

Method Input requirement Description
"tensor_product" (default) Rectilinear grid Tensor-product interpolation with longitude wrapping, pole averaging, and ghost points for periodic grids. Supports all 1-D sub-methods via tensor_method.
"slerp" Rectilinear grid Bilinear interpolation using SLERP-derived angular fraction weights along parallels. More accurate than standard bilinear near the poles and for large grid cells. Linear only.
"idw" Any (including scattered) Inverse Distance Weighting using Haversine (great-circle) distance. Tune via power and k_neighbors.
"rbf" Any (including scattered) Local Radial Basis Function interpolation using Haversine distance. Solves a k x k linear system per target point. Tune via rbf_kernel, rbf_epsilon, and k_neighbors.

Tensor-product sub-methods (tensor_method)

When method="tensor_product", the tensor_method parameter selects the 1-D interpolation method applied along each axis:

"linear" (default), "nearest", "cubic", "pchip", "akima", "makima"

IDW tuning

  • power (default 2.0): distance exponent. Higher values give more weight to nearby points.
  • k_neighbors (default 0): number of nearest source points to use. 0 means use all.

RBF tuning

  • rbf_kernel: "linear", "thin_plate_spline" (default), "cubic", "gaussian", "multiquadric", "inverse_multiquadric"
  • rbf_epsilon: shape parameter (None = auto-detect from median pairwise distance)
  • k_neighbors: number of nearest neighbors for the local solve (default 20 for RBF)

Longitude convention (lon_range)

The lon_range parameter controls how longitude values are normalized:

Mode Range When to use
"signed_180" [-180, 180) Source data uses negative longitudes for the Western hemisphere
"unsigned_360" [0, 360) Source data uses 0-360 convention
"auto" (default) Detected from source Uses signed_180 if any source longitude is negative, otherwise unsigned_360
# Explicit signed_180: source data with 350° is normalized to -10°
result = (
    source_df.lazy()
    .select(
        interpolate_geospatial(
            "lat", "lon", ["v"], target_df,
            lon_range="signed_180",
        )
    )
    .unnest("interpolated")
    .collect()
)

Important constraints / behavior

  • NaN/Null handling is configurable via handle_missing (see above). The default ("error") raises on any NaN or Null.
  • Grid requirement: interpolate_nd, tensor_product, and slerp require a full cartesian grid (per group) -- every corner must exist. idw and rbf work on arbitrary scattered points.
  • 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 (interpolate_nd + interpolate_geospatial)
  • src/expressions.rs: the Polars expression implementation (Rust)
  • tests/: pytest suite with examples (including grouped, Date/Duration, and geospatial 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-2.0.2.tar.gz (89.8 kB view details)

Uploaded Source

Built Distributions

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

interpolars-2.0.2-cp314-cp314t-win_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

interpolars-2.0.2-cp314-cp314t-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

interpolars-2.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

interpolars-2.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

interpolars-2.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

interpolars-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

interpolars-2.0.2-cp314-cp314t-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

interpolars-2.0.2-cp39-abi3-win_arm64.whl (5.0 MB view details)

Uploaded CPython 3.9+Windows ARM64

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

Uploaded CPython 3.9+Windows x86-64

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

Uploaded CPython 3.9+Windows x86

interpolars-2.0.2-cp39-abi3-musllinux_1_2_x86_64.whl (6.9 MB view details)

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

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

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

interpolars-2.0.2-cp39-abi3-musllinux_1_2_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

interpolars-2.0.2-cp39-abi3-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

interpolars-2.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9+macOS 11.0+ ARM64

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

Uploaded CPython 3.9+macOS 10.12+ x86-64

interpolars-2.0.2-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-2.0.2-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-2.0.2.tar.gz.

File metadata

  • Download URL: interpolars-2.0.2.tar.gz
  • Upload date:
  • Size: 89.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2.tar.gz
Algorithm Hash digest
SHA256 bc7c5b32586609a47dea8644e20ab8f7e6ff8af1563b82ccce9cb1399708fca0
MD5 1b7e828d4b27c6a10de8fdb222ffcc1e
BLAKE2b-256 8730ba35d2b6ad7a1596d7c67b3501506634248c59abb9d3e0ce8674eafacd7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ea6a3673ea4660edc31cb32dad946c698adb69ef1b1028b13cf73989e0374837
MD5 160214a8c09cf8a16856698292a9b3f5
BLAKE2b-256 c0fb7b9017886ddda89d7b0b5724583835a3afae09b5f10b93760ca9117e4e75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c0cd98ca949d5a94c6caa5fcb0036881642b5a9a97b831817d117ed17b6f7fd6
MD5 7988c6462a7cb61c7472ef5e1588147f
BLAKE2b-256 fda653d0711d3da496dc0961e2705d3ec39c88922c6455b25786af03e82e4ae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a4a1be588bbf6c035d9975b50a65c049c34291b3defb50380ae2004f10868bed
MD5 fa51de5bb4409e15442ffff2c6b1cdce
BLAKE2b-256 a10ea7b96261c899f92dbb1e7f485d2958cb58b3deb794b0b7fe77063f962a87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59c2935bad9b58ec25653ae1df0a072daa45ad17b62ab166db54be7e14e52eb8
MD5 fab6e4c5bb26b5ec945c36deb5c54cee
BLAKE2b-256 73f5d967008ad6d42d7399ea1b002b700c16f8cc07611d73a9fff800769b7c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23c259230e216a086084beb4d65c3613d438b310510d3c0a70c2e4fa47705996
MD5 31ffb73673a1bc43a71c663cafc8cc71
BLAKE2b-256 1d9ba19af82331c70c00d21428064516669256961b382b1f4ee4c445dd6bdf7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3a6c04abfb6785a5a8d31ddc73e9ce1de0c83c5594495a3d417415056219e35
MD5 5a6c3e6f386d81de360c9302ca428b15
BLAKE2b-256 181aec56113a4ff2998ba41000d8a2bd6bf42048b1167f64bb674acfaaef48e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7247ee83b6e8d8acd981febb082f510935b74fb0de83af00bebeb00e223827c
MD5 e9210c8c777a4f621d19f3a4c74a7bc1
BLAKE2b-256 882c18cc641beacb75bca5ec0b4e19ba52fa0208cb468b118528bb97289ba35c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 778d64808218b43de183bb34f942733a09476259050cf6c5abb151e043ffc272
MD5 5263405fab60c9dfa91400bf3f7af706
BLAKE2b-256 7bec15b52a4184beefa3bc1502eb941fd1d79479146e871349b4a480bde275f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8d143c14841e09dba64c67d780b2db4cdfae8a68fbccab3e31baacfe558ead2
MD5 264fe1e6b0c9549529dfa5d6b912eaea
BLAKE2b-256 9826c357e9b465f4fefab2d6edc7693dad346f641af1c699f6e51321212d648c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa33148a977fc3b2b2d3d83d70f1489daa5ee70785cd335d85a0f2d44c3e7dc5
MD5 3e2e01fea46c7f209bb00b612582fb03
BLAKE2b-256 39c1bdd09f447ae43441f59ad2835c59b4a28816eb517b509a9d16e2d3136677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a98a859ebc2d82ad3767fe1cd55a001550890c089a50b2f7b0c4d9ae6ed0accb
MD5 32729ac4ae6ca87848903f8304de082c
BLAKE2b-256 6ac1cc7a8fda7294eb710b4910615f82bbac5742def4d58667e99c83156e567e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 193d3472b977e0ecb4ee3f71ad651430003759aba147a5e2ffbead7adde9eb31
MD5 1dda639f92ef3cf875e8bd741e117349
BLAKE2b-256 55bdf88afc39a83b69ca6573494ee8f84eb275e2faefdd015060a8062865f873

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97285bf2b06081613ad997d675b39718fba15b43971dcf73e95e9991b71750da
MD5 2b68db405b6c94f9b66aeb335ffeca03
BLAKE2b-256 38141a12fae58752cc01974db25da8845f291cd8e44359166a0df6b35c0942b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7334d5f892609edf6969bfef8b6aee9a4ed46de32309dd2ad0d75947ef93e460
MD5 096b02a080773c062a130e3586c0eb5d
BLAKE2b-256 5683acf0d7c1b04ce9dbb8061d870f2840b3cbb3bdf1bafdd2ef9075994494f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 68e6ee46bf978bd376d5443eb545a9552e2a223c93a1f6b25883688c4e232e90
MD5 8f65e0f3cd8ca9e808029cd991ee00fc
BLAKE2b-256 854c80fcea5d03471a5f00550c92a24e6a69cf843fa81a7bde731dd52813d28a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8dc8114de96a15b4d4b2d4b591c080ea582b72f7417982a9a9843e58f717b513
MD5 d6b5b420cbc4bb97323f53abcfca7cce
BLAKE2b-256 961908c82719923103ee647f6e1d22dff063eaa969722d37f50955ec72c2f9a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 554f584bbcd355c434f24950bb370929662b577d8578594ebd157492037c640b
MD5 d7575735e88dad90c97f1fcfe7d952e6
BLAKE2b-256 9173e157e9eef421d22b8ba38d076950a1d29819d5c80c7e1dee6b0c038b95a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3a8fcfcc022f8e426fb2e8fc1c2bbceb9f7d27a9c97dff740b6b36d7f6e1d82
MD5 097c42e5df94ae5123f2214557d3352e
BLAKE2b-256 6aa9d9d5a7f9c6d653efeafb2aab76ca53f4f3cc07a2e0bfc5960a017fa26cd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f02cf5c09ea1a46bcf12e163c0720784fdd76d8a6d0fb7aaeaefa4122ec6dbc2
MD5 2dc25cb886b0ef267042d27946d634c4
BLAKE2b-256 07405de1286ed1326e6d2e7051babefad6151825c2287b75bd7117e6f11c57ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e26a2e40d25d6d1180f3b33cb63085195f8d67e0ed0e81d44079d058cac4746
MD5 607cbe2cd2a5665247c262147b30ed88
BLAKE2b-256 d8f52bfffcd3c40d7dd56284c92dcd89ba5ed4b25c5c68524f32c81c5d99f259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 631abeb3a1ae51ea4be30a0eec6a048acaa28a186a5b71aac9921c9d71a93149
MD5 1a0f8ad6845f029e87e2a7d03ac2363c
BLAKE2b-256 f92769cc63bfae03f3fece07300abfd54913ae307645481476bafbf8c4b9d422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e10c481c6da8ddf88c189b49831c0b8c21f4f50d900d982ddded8d0595fbcbfe
MD5 1dd62ef413a2b4dce01e6aba6544bad3
BLAKE2b-256 b9b81f2e3669c62d59051a74395e756e4ace1c66760e0ebdde25cd071cc2ece7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a2e74663ec62fed0d58864b11bb9974b76d49fafbfbf639b33be1c33d4d671f
MD5 a74de7acb06dd6ad7ef985e18b5b19e8
BLAKE2b-256 2b37a549ce24cb423ba74b18dc55d7de27445647643cc0b5c19898b121d7a91f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d1ba0df36923995afa3816ca50662cd97e4c3c107695d1e3b412129a8dd19de
MD5 24e7df07afd944fc98a9bd083cd2308e
BLAKE2b-256 444c442a2bafb42e4e513b1bc01fdc08dfc44a7b2f19be494959a3411398a1d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2623243c3ce3ee063bb7830c7e710081405a0b144b56a870df812f76dac2195
MD5 1ef94d36e51720a43c2bb29f721869bb
BLAKE2b-256 c5dbf7d89f7f65a3ef80abbc0fdf01a4bb00fd06296408523b4fef8aa1a56a79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26b8fbf7371c3d60618b30c7d6eeed83eae374903ffd525279b3f78a04bccaa0
MD5 6e5f9756cad30bd0546219b0d9ec75c4
BLAKE2b-256 284cdf15eecf979f9b617dd325d96b111b1268ee811975b4f96a0f09ba1043eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbb6ab74c8084f52a15fdff59e21bf96b39a1ad2e2e6d5715e58444cbc730343
MD5 c97e27cc278b23287e082e158c3a2226
BLAKE2b-256 756852c071f1948487f355caa328e415f704f7f3f092dcba37dc05950b7f461e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-2.0.2-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.11.1 {"installer":{"name":"uv","version":"0.11.1","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-2.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e81aa659055e61ba29cc76bc68d3f4af3df4270e0e1bca588759098bc8fd6112
MD5 a4703755ce4545f9a915a25dfcd52b53
BLAKE2b-256 bf31fa607c245ead5c5638947e355d8ea5242ecf19d4a0e79cadb2065976976d

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