Skip to content

Instantly share code, notes, and snippets.

@mazieres
Created February 16, 2018 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mazieres/3649f44e8cc0fc22e24a640304a24130 to your computer and use it in GitHub Desktop.
Save mazieres/3649f44e8cc0fc22e24a640304a24130 to your computer and use it in GitHub Desktop.
import progressbar
i = 0
with progressbar.ProgressBar(max_value=len(entities)) as bar:
for entity in entities:
compute_metrics(entity)
i += 1
bar.update(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment