I\'ve create a tuple generator that extract information from a file filtering only the records of interest and converting it to a tuple that generator returns.
I\'ve
If generator is just like a list of DataFrames, you need just to create a new DataFrame concatenating elements of the list:
DataFrames
DataFrame
result = pd.concat(list)
Recently I've faced the same problem.