You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Dimitris Zlatanidis 7fd2f99953
python/tqdm: Updated for version 4.9.0.
9 years ago
..
README python/tqdm: Added (progress bar for Python). 9 years ago
slack-desc python/tqdm: Added (progress bar for Python). 9 years ago
tqdm.SlackBuild python/tqdm: Updated for version 4.9.0. 9 years ago
tqdm.info python/tqdm: Updated for version 4.9.0. 9 years ago

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