slackbuilds/python/tqdm
fourtysixandtwo 1665bbc6a2
python/tqdm: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-04-05 15:18:18 +07:00
..
README
slack-desc
tqdm.SlackBuild python/tqdm: Fix PYTHONPATH. 2024-04-05 15:18:18 +07:00
tqdm.info python/tqdm: Fix broken build. 2023-12-22 08:00:22 +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)):
    ...