Skip to content

Instantly share code, notes, and snippets.

@eriky
Created January 4, 2020 22:34
Show Gist options
  • Save eriky/34997151a261d5029eb03723ce24be6d to your computer and use it in GitHub Desktop.
Save eriky/34997151a261d5029eb03723ce24be6d to your computer and use it in GitHub Desktop.
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