slackbuilds_ponce/python/tqdm/README
Dimitris Zlatanidis 40027df8ee python/tqdm: Added (progress bar for Python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2016-10-20 20:11:45 +07:00

7 lines
217 B
Text

A fast, extensible progress bar for Python. Instantly make your
loops show a smart progress meter - just wrap any iterable with
tqdm(iterable), and you're done!
from tqdm import tqdm
for i in tqdm(range(9)):
...