slackbuilds/python/tqdm
Dimitris Zlatanidis 375304f44d
python/tqdm: Updated for version 4.10.0.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
2016-11-15 21:42:45 +07:00
..
README python/tqdm: Added (progress bar for Python). 2016-10-20 20:11:45 +07:00
slack-desc python/tqdm: Updated for version 4.10.0. 2016-11-15 21:42:45 +07:00
tqdm.SlackBuild python/tqdm: Updated for version 4.10.0. 2016-11-15 21:42:45 +07:00
tqdm.info python/tqdm: Updated for version 4.10.0. 2016-11-15 21:42:45 +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)):
    ...