Skip to content

Instantly share code, notes, and snippets.

@kartikanand
Created July 31, 2017 17:45
Show Gist options
  • Select an option

  • Save kartikanand/a21ce26421de9bf147900743bdfa5cc0 to your computer and use it in GitHub Desktop.

Select an option

Save kartikanand/a21ce26421de9bf147900743bdfa5cc0 to your computer and use it in GitHub Desktop.
Python Bits - Imgur Album downloader - Progress Bar
import time
import progressbar
bar = progressbar.ProgressBar()
for i in bar(range(100)):
time.sleep(0.02)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment