tqdm

usage

tqdm (pronounced: taqadum, تقدّم) means progress in Arabic. tqdm can add a progress prompt message in a long loop. Users only need to encapsulate any iterator tqdm (iterator). It is a fast and highly scalable progress bar tool library.

>>> from tqdm import tqdm
>>> from time import sleep
>>> for i in tqdm(range(1000)):
...     sleep(0.01)
... 
100%|███████████████████████████████████████| 1000/1000 [00:10<00:00, 98.73it/s]

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324726343&siteId=291194637