I have created a parquet file with three columns (id, author, title) from database and want to read the parquet file with a condition (title=\'Learn Python\'). Below mentioned i
Filters are now available read_table
table = pq.read_table( df, filters=[("title", "in", {'Learn Python'}), ("year", ">=", 1950)] )