You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2023. It is now read-only.
Instantly make your loops show a progress meter - just wrap any iterator with "tqdm(iterator)", and you're done!
tqdm (read taqadum, تقدّم) means "progress" in arabic.
You can also use trange(N) as a shortcut for tqdm(xrange(N))
Here's the doc:
deftqdm(iterable, desc='', total=None, leave=False, mininterval=0.5, miniters=1):
""" Get an iterable object, and return an iterator which acts exactly like the iterable, but prints a progress meter and updates it every time a value is requested. 'desc' can contain a short string, describing the progress, that is added in the beginning of the line. 'total' can give the number of expected iterations. If not given, len(iterable) is used if it is defined. If leave is False, tqdm deletes its traces from screen after it has finished iterating over all elements. If less than mininterval seconds or miniters iterations have passed since the last progress meter update, it is not updated again. """deftrange(*args, **kwargs):
"""A shortcut for writing tqdm(xrange)"""returntqdm(xrange(*args), **kwargs)