pyarrow.feather.read_table

pyarrow.feather.read_table(source, columns=None, memory_map=True, use_threads=True)[source]

Read a pyarrow.Table from Feather format

Parameters
sourcestr file path, or file-like object
columnssequence, optional

Only read a specific set of columns. If not provided, all columns are read.

memory_mapbool, default True

Use memory mapping when opening file on disk

use_threadsbool, default True

Whether to parallelize reading using multiple threads.

Returns
tablepyarrow.Table