I'd like to read a partitioned parquet file into a polars dataframe.
In spark, it is simple:
df = spark.read.parquet("/my/path")
The polars documentation says that it should work the same way:
df = pl.read_parquet("/my/path")
But it gives me the error:
raise IsADirectoryError(f"Expected a file path; {path!r} is a directory")
How to read this file?