python read parquet

26

import pyarrow.parquet as pq

df = pq.read_table(source=your_file_path).to_pandas()
pd.read_parquet('example_pa.parquet', engine='pyarrow')

Comments

Submit
0 Comments