Search code examples
pythonprogress-barhttplib2

httplib2 download progress bar in python


Is it possible to display the percentage a file has downloaded in python while using httplib2? I know you can with urllib2 but I want to use httplib2.


Solution

  • No. httplib2 doesn't have any kind of progress beacon callback, so it simply blocks until the request is finished.