slackbuilds_ponce/python/tqdm
Duncan Roe 85a648638c
python/tqdm: Updated for version 4.63.0
Signed-off-by: Duncan Roe <duncan_roe@optusnet.com.au>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-03-05 08:10:08 +07:00
..
README
slack-desc
tqdm.info
tqdm.SlackBuild

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)):
    ...