pyarrow.feather.read_table¶
- 
pyarrow.feather.read_table(source, columns=None, memory_map=True)[source]¶
- Read a pyarrow.Table from Feather format - Parameters
- source (str file path, or file-like object) – 
- columns (sequence, optional) – Only read a specific set of columns. If not provided, all columns are read. 
- memory_map (boolean, default True) – Use memory mapping when opening file on disk 
 
- Returns
- table (pyarrow.Table) 
 
