Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaBaweja
Created March 12, 2020 11:02
Show Gist options
  • Save ChaitanyaBaweja/14566a0ce5aeb11390a7387863ba967c to your computer and use it in GitHub Desktop.
Save ChaitanyaBaweja/14566a0ce5aeb11390a7387863ba967c to your computer and use it in GitHub Desktop.
from time import sleep
from progress.bar import Bar
with Bar('Processing...') as bar:
for i in range(100):
sleep(0.02)
bar.next()
@sanjarcode
Copy link

Line 2 should be progressbar, without a period.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment