I am trying to implement a progressing bar into my code while it reads my csv file (and I would like to implement it to the others functions too).
However, I am not sure how to implement this code to my reading code, because it stays progressing, and it never ends
import pandas as pd
from alive_progress import alive_bar
import time
with alive_bar(100, theme='ascii') as bar:
    file = pd.read_csv('file.csv', 
                        sep = ';', 
                        skiprows = 56,
                        parse_dates = [['Date','Time']])
    bar()
And, what happens if I would like to apply a progressing bar to a for loop?
 
     
    