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