Skip to content

Instantly share code, notes, and snippets.

@asdf8601
Forked from eriky/progress_bar.py
Created January 10, 2020 07:46
Show Gist options
  • Save asdf8601/aad3123568e019f2324914ec8bfbaebf to your computer and use it in GitHub Desktop.
Save asdf8601/aad3123568e019f2324914ec8bfbaebf 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