Created
February 16, 2018 16:59
-
-
Save mazieres/3649f44e8cc0fc22e24a640304a24130 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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