Skip to main content

fst Format

Read R fst columnar on-disk data frames as flat row dictionaries.

Overview

PropertyValue
Format idfst
ClassFSTIterable
Extensions.fst
ReadYes
WriteNo
Extrafst (fst or rfst binding)
Maturityexperimental

Parameters

ParameterDescription
columnsOptional column subset passed to the fst reader when supported

The entire frame is loaded into memory (not streaming). Requires a filename path.

Usage

from iterable import open_iterable

with open_iterable("frame.fst", format="fst") as source:
for row in source:
print(row)

with open_iterable(
"frame.fst",
format="fst",
iterableargs={"columns": ["id", "value"]},
) as source:
for row in source:
print(row)

Install with pip install iterabledata[fst] (or install a compatible fst / rfst binding).

See also