Created
March 12, 2020 11:02
-
-
Save ChaitanyaBaweja/14566a0ce5aeb11390a7387863ba967c to your computer and use it in GitHub Desktop.
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
from time import sleep | |
from progress.bar import Bar | |
with Bar('Processing...') as bar: | |
for i in range(100): | |
sleep(0.02) | |
bar.next() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 2 should be
progressbar
, without a period.