Last active
February 12, 2016 13:38
-
-
Save matthieualouis/52c93674685687d5b183 to your computer and use it in GitHub Desktop.
Progress bar template for python
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=PLACEHOLDER) | |
pbar.start() | |
for i in range(PLACEHOLDER): | |
pbar.update(i) | |
pbar.finish() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment