I want to start processing some files from a django view and I want to be able to send the name of the files to the browser as they are processed. Is there a way to do this (easily)? I could probably do this using threads and ajax calls, but I want the simplest solution for now.
Share
I found what I needed in an answer from one of the links that Andre Miller provided.
I found out that’s possible to pass an iterator to HttpResponse so I used this code and it worked: