slackbuilds/python/tqdm
Robby Workman 48c22f9303 various: Kill lots of python3 dep mentions
This is far from complete.
We still need to review and tweak anything with "PYTHON" in
the README, as many/most/all of those are telling the user
how to build with python3 support. We almost surely want to
enable that by default in all of those cases.
2021-04-21 00:42:24 -05:00
..
README various: Kill lots of python3 dep mentions 2021-04-21 00:42:24 -05:00
slack-desc python/tqdm: Updated for version 4.10.0. 2016-11-15 21:42:45 +07:00
tqdm.SlackBuild python/python-tqdm: Updated for version 4.36.1. 2019-10-26 18:51:48 +07:00
tqdm.info python/python-tqdm: Updated for version 4.36.1. 2019-10-26 18:51:48 +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)):
    ...