slackbuilds/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 various: Kill lots of python3 dep mentions 2021-04-21 00:42:24 -05:00
slack-desc python/tqdm: Updated for version 4.10.0. 2016-11-15 21:42:45 +07:00
tqdm.SlackBuild python/tqdm: Updated for version 4.63.0 2022-03-05 08:10:08 +07:00
tqdm.info python/tqdm: Updated for version 4.63.0 2022-03-05 08:10:08 +07:00

README

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