I have a CSV file that has multiple tables of data, each one with a header row and some number of data rows, and then a line break before the next one. I'd like to make a list of Polars dataframes from this.
I couldn't find how to do this without using Python's text-file parsing. It seems like scan_csv covers a similar case, but that requires many different CSVs and I'm not sure where to look to make it work on one.
It's pretty manual. I've done something similar so here it is.