Created
January 4, 2020 22:34
-
-
Save eriky/34997151a261d5029eb03723ce24be6d to your computer and use it in GitHub Desktop.
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
from progress.bar import Bar | |
bar = Bar('Processing', max=20) | |
for i in range(20): | |
# Do some work | |
bar.next() | |
bar.finish() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment