Last active
March 17, 2016 18:25
-
-
Save jaredjburgess/3b2397b70916413d9cb6 to your computer and use it in GitHub Desktop.
Template for interactive progress bar.
This file contains 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 progressbar | |
pbar = progressbar.ProgressBar(maxval=len(object)) | |
pbar.start() | |
for i in range(len(object)): | |
pbar.update(i) | |
pbar.finish() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment