Using fastai to load parquet file

I am working on this kaggle competition https://www.kaggle.com/c/bengaliai-cv19.

Problem here is that I can’t find any resource for handling parquet file.

I can read parquet from pandas but fastai takes images and image path but how to give image data from pandas. I know there is a function in fastai in which I can give dataframe as input but that only take Image name but here I have Image data in dataframe how to handle that.

Currently only solution I can think is I need to write Images that load then, is there any easy way.