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")