I'm working on a Flask python web app that takes a file upload and processes it. The processing can take several minutes as it iterates through each row of a large dataframe. I'd like to show the user what row is being processed or at least when every x rows have been processed. I haven't been able to get either flash messages or rendering templates to work to show the status information. Is it possible to provide the user with the kind of status updates I am looking for?