The change lets one extract the excel report data from within a report in the file listing block configured.
I chose to import the data into a pandas data frame because that makes the data filterable in powerful ways.
Also, the dfs can easily be extracted to lists of dicts which is fantastic for storing the data in more primitive data types in the annotations later on. This simply can be archived by calling df.to_dict('records') and voila, there is your list of dicts 🥰
The change lets one extract the excel report data from within a report in the file listing block configured.
I chose to import the data into a pandas data frame because that makes the data filterable in powerful ways.
Also, the dfs can easily be extracted to lists of dicts which is fantastic for storing the data in more primitive data types in the annotations later on. This simply can be archived by calling
df.to_dict('records')
and voila, there is your list of dicts 🥰