Created
July 31, 2017 17:45
-
-
Save kartikanand/a21ce26421de9bf147900743bdfa5cc0 to your computer and use it in GitHub Desktop.
Python Bits - Imgur Album downloader - Progress Bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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