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.0.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.0.0-cp314-cp314t-win_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.9+Windows ARM64

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

Uploaded CPython 3.9+Windows x86-64

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

Uploaded CPython 3.9+Windows x86

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

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9+macOS 11.0+ ARM64

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

File metadata

  • Download URL: interpolars-1.0.0.tar.gz
  • Upload date:
  • Size: 55.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0.tar.gz
Algorithm Hash digest
SHA256 3a20ff2416b55664b30f1503b01736c7541950d7fe5ebf8ad6a5e4819dc9c5fc
MD5 a4828c5d26de6bde55439f9f54337f0f
BLAKE2b-256 2aa20a241f38dd54b4be5a6a07b9c5dadfa0c8807f2c6a1066047adc824a282c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c23a5c06ed83622625c804f8bb278866022fa2faed38a0269a6b0e2f4464966f
MD5 1a3608aeaf145a3fa4d0eb3530f98580
BLAKE2b-256 5336c2733d899eba1441199d170035ebbbf7d3b2c02894c778dcf40f927ea5f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 81b764fbdd821efcc11152d5a9d3d16447177c3ff249364d4eaed85121f823c8
MD5 55b408d4dbf6bb3e579fc5bf7ade5789
BLAKE2b-256 57e58090bc3d902bdbb15fe9663e57e8ebaac4455f135282f5b38699b6373186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f0ddea14b1f0b4d033028fcfe25739d99534b099e4c83338912458fca848ba6e
MD5 52dc311cc544d202c7aa8c60dcee53ed
BLAKE2b-256 aa70a2e508161a2849ff95c944a8c3b5f57dcb1b1cd484bfc4280b659187c4d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c02488e8944979ce9807b50ef97b218c8918a8d80bc42fdf8a2411ede1edd58
MD5 249cb704eabeaeecc51e693fc63c05ef
BLAKE2b-256 dd92615d527b762509b980e54efd3c2e576df5c17fb5e8b58e68b245fafa77b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 860c28ab97992db727e3ef1ea3f6d5e6b0927f5cdc41abcb034a5c7cc000b83b
MD5 0f09c4e5b7789bbc01b33e819cc1d22d
BLAKE2b-256 0a5922907975dea5cb967f0363843477ded97e524cbbf6d844dc72a3296650e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94f0b68107c610f610d842ced5ce0a3396d2305d4820f90f9ef5322ab93bbf36
MD5 50e4100ac31e634b1615369cd8e8d191
BLAKE2b-256 e7565ef5d30d54fe3fe2a7979921123b566c3c5a89f540b372ca9397e216fde7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90566e532de47239dcc4603a6f6da021d1cc594e5c1dfb90934bc7dc56a431e8
MD5 556bd1f3c85c7beb4e2f17bd67294006
BLAKE2b-256 b77ffe6a27abf026cfd8a62980f13e7b8368539674e51171a9c24f195d518158

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d6e5ade86c6cf9798e08e64e4bcefa826140f503e75ae7f80c3c311da3e28c3
MD5 5939771e1be7a2cb79a7c258abc3a5a2
BLAKE2b-256 945e0d417c0d6c303755afcd6f62c7496917f990c07e9bbfcb1a0467462a600f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46a212a3ceaa5dcc493cbde339e852ac5b30666a00710d5f39205d8cccee86ed
MD5 373f2cd8af1afcced9046dfe2c63b52e
BLAKE2b-256 c9888858e925624a79de8fcad825e0475db65ed0afc015f900515962f5a2e0b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09804d6ad4cf62a67fe0c5d7432967b7825801dbcc90c044366b8f6e6a49b6bc
MD5 6c08d3ea16271b7cb871af5aded42e2e
BLAKE2b-256 58dce8c1cea0d1f81bde4b470e93cb93f2f27c94ec97774cd4cd43f77eb3fd17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af556533f0c1a0ff5904e1a9af825ab5b9d49344cb10307e5ccd48fedef351fc
MD5 cdc9f0d11211fde4530182ee11ce0cc8
BLAKE2b-256 b3435508f8146bee91cbd206121651e8521ed6a79acca6cdbe1a14822d3a79a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e347d72d92e9e5c396ae5223f5f9910361682ddc79dacd69a7ef57eccb955fd
MD5 0b1c48b0a0ed86f8bea9597e437275f0
BLAKE2b-256 375cf2bf602f5e30953a51124f9487956aa999d0fa876f2ff71da8fb54d55eb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c1420970b2cf0eda3b0f13cefe98c459939e43c527dc3f090b79b4f72b43e35
MD5 9d6bb3d3cc4421cfa27f6df90807c951
BLAKE2b-256 b13707dc916a6ada1aa70b93ff9338c2c0d36cc0c712b51792d3a5a754a1c9a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 644ec50d8d9292c14ad7ca4ee15a6bd7a98f30d8d2e3d159f0afed8ae929e961
MD5 0314a820d51462da593588af6af5dbeb
BLAKE2b-256 900ced1c2fd13ac3097adeb7c861d3a4e25aa767105fff130d4616213452b083

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 f9cc4b2cdbf54eb3b2c21deac532696a8ed83e180a7b2a3273999a73ac91b4ed
MD5 37914fcaf588c9420fcde3e1116d6e48
BLAKE2b-256 dbc144e2e1c7cdcefafd0bbdf931174566289edef42008ed61c491fb48ae4db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 34e2a09a39e2728bede2ca53edab8beaf7f2c193d562725a8c95013b2998541a
MD5 f9744f6fb52ffa4d9ea52a0bc614970a
BLAKE2b-256 a47cde12d8c11e499e9a353d768e820d5068bfca7240a38d5ccd50f415eed9cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 93769c9d45abaf4d1975c3539cc3f50ca22ba4b76432ce5be6ead735791712d6
MD5 209246e94ca505697e428cb65303eba8
BLAKE2b-256 4cb8f813e70f886c3a9cb82ad3f153a3c734075060ffcaf3da8dcc6ba596e621

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7e24ee59995166d07ee27b7346541ed9ceb96f8921152ad34dcaaea121b5577
MD5 57cab688b1a2f900886e82c6cfd9641c
BLAKE2b-256 633bebea83f2b6e47259b8b4bff9e969e49b53191d029daf59d735033d37c8e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 755cd4deae2137ce533739601de90881174d512ab5db7def863eeefffd710b2c
MD5 6ce0b3090fced49b7ddb930bc32eceea
BLAKE2b-256 1872d96f93fa7528b7ab850f5fc98da059046b5eec9803201296adeb1d4b47ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c13a7b56b40d4ae4575d4e9f2be49affd30a878f3e235eefc217cbb80a2252ea
MD5 b788dd9685aaea50830d792c8f775e14
BLAKE2b-256 0a7b485d0b0cc72b28009722964984b489b9e6f7e47dc42e83d4fea63e628012

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3f1c2d8d55a3f50c451b8c96b4a541e3eef2b8da2c9166ef763ee95b557e0e4
MD5 c96e09276a186356ed8419203f4850c4
BLAKE2b-256 0f2f72e7d6145ba2bf79a4d010c12fffc2ff11b40b3601fb0baa964648254899

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37fec605a8dedb5fb7c1781c565a0ba102d4c8f80669005ddd52174aa36dfd95
MD5 bd6bc6a32e8c1a50134594e6cf70687f
BLAKE2b-256 db89e1e6755e9c4d4176f71d056bb589cee12e64abdef104cc9f23a1667451f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1375000664fb2e12f0836f79bf1f8b4892aee6523b3f6acf1bcbcd0d22ddfd3b
MD5 5eb415a93dc45fe9ad813baeaa823be0
BLAKE2b-256 eeaa964e24deb6aeff819581b01156af31a72b93e8a58590f5c77d6ac5aa28ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8edd136821c742f2332656147e979aa9604e506edb9612e60655ef0f68feceac
MD5 12c494cff0932ea1df0d6020d3523bb8
BLAKE2b-256 0b371db4133bb277e213b9f5ed055176ae99b3e17fa2d096771d641b46a2afe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8b7778f2065ad8a711000ade1975409bbcb1593833eff327068019e40bceeb3
MD5 37033c1240cda39fa17eea05c3e774a1
BLAKE2b-256 610e208c38f53e572b8c352bdfa7ee034a4f4528e8a6086cf8ef0d3d84563115

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7a6d700281ac699216e0b280535a275d0c5a1c2d01ea86dc36e0a0496779fbc
MD5 61e141e1cfb683e03e5f46cdf5ae22c8
BLAKE2b-256 ca77c1da590b4511942adb014d774fe88249d957456b5c36325571fe1c75c6d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 199de620b40117b6b050911b23fb63b3f7feb3246bde4d9191480952637b1855
MD5 f8d71da61b7c2c45517e7cbf1d122079
BLAKE2b-256 cc85ad8824edbab93d0f7b50e1b87f6d93007f0c68c542d39a6d01149ca52701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: interpolars-1.0.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.4 {"installer":{"name":"uv","version":"0.10.4","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.0.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84e486fad251788059d964e4207b0af9ed498cf03f1c4258c75194e311e7105a
MD5 ed5982bb9161c74fdcea29d6fe854d0c
BLAKE2b-256 8b2b637c6c17ee3e7bec8218cc9edf6a6da36b56031e188a13c6946c852638ea

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