Skip to content

Instantly share code, notes, and snippets.

@spjoshis
Forked from eriky/progress_bar.py
Created June 22, 2020 04:38
Show Gist options
  • Save spjoshis/c896b911f182c468f8f7f52539943e6e to your computer and use it in GitHub Desktop.
Save spjoshis/c896b911f182c468f8f7f52539943e6e 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