pyarrow.feather.read_table — Apache Arrow v20.0.0 (original) (raw)
pyarrow.feather.read_table(source, columns=None, memory_map=False, use_threads=True)[source]#
Read a pyarrow.Table from Feather format
Parameters:
sourcestr file path, or file-like object
You can use MemoryMappedFile as source, for explicitly use memory map.
columnssequence, optional
Only read a specific set of columns. If not provided, all columns are read.
Use memory mapping when opening file on disk, when source is a str
Whether to parallelize reading using multiple threads.
Returns:
tablepyarrow.Table
The contents of the Feather file as a pyarrow.Table