python lire le parquet
import pyarrow.parquet as pq
df = pq.read_table(source=your_file_path).to_pandas()
Combative Caterpillar
import pyarrow.parquet as pq
df = pq.read_table(source=your_file_path).to_pandas()
pd.read_parquet('example_pa.parquet', engine='pyarrow')