slackbuilds/python/tqdm
Andrew Clemons 8a2e95063e
python/tqdm: Updated for version 4.64.0.
afdko needs at least this version now.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-05-28 09:11:29 +07:00
..
README various: Kill lots of python3 dep mentions 2021-04-21 00:42:24 -05:00
slack-desc
tqdm.SlackBuild python/tqdm: Updated for version 4.64.0. 2022-05-28 09:11:29 +07:00
tqdm.info python/tqdm: Updated for version 4.64.0. 2022-05-28 09:11:29 +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)):
    ...