slackbuilds_ponce/python/tqdm
Andrew Clemons f6888b08fd python/tqdm: Updated for version 4.62.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
2021-08-01 04:20:25 -05:00
..
README
slack-desc
tqdm.info python/tqdm: Updated for version 4.62.0. 2021-08-01 04:20:25 -05:00
tqdm.SlackBuild python/tqdm: Updated for version 4.62.0. 2021-08-01 04:20:25 -05:00

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