I\'m uploading a fairly large file with urllib2 to a server-side script via POST. I want to display a progress indicator that shows the current upload progress. Is there a h
requests 2.0.0 has streaming uploads. This means you can use a generator to yield tiny chunks and print the progress between chunks.