The deephaven.io website will be down for maintenance this Saturday 2025-03-29 from 11:00 to 14:00 ET.
Skip to main content
Version: Python

read_feather

read_feather reads a feather file into a Deephaven table.

Syntax

read_feather(path: str) -> Table

Parameters

ParameterTypeDescription
pathstr

The file path.

Returns

A Deephaven table.

Example

The following example reads a feather file into a Deephaven table:

from deephaven import arrow as dharrow

source = dharrow.read_feather("/data/examples/Iris/feather/Iris.feather")