slackbuilds_ponce/python/tqdm
fourtysixandtwo 25c0f7775c
python/tqdm: Fix broken build.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-12-22 08:00:22 +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)):
    ...