Name Description Size
__init__.py See tqdm.notebook.tqdm for full documentation 1572
__main__.py 30
_dist_ver.py 23
_main.py 283
_monitor.py tqdm multi-thread/-process errors which may cause incorrect nesting but otherwise no adverse effects 3699
_tqdm.py 283
_tqdm_gui.py 287
_tqdm_notebook.py 307
_tqdm_pandas.py Registers the given `tqdm` instance with `pandas.core.groupby.DataFrameGroupBy.progress_apply`. 888
_utils.py 553
asyncio.py Asynchronous progressbar decorator for iterators. Includes a default `range` iterator printing to `stderr`. Usage: >>> from tqdm.asyncio import trange, tqdm >>> async for i in trange(10): ... ... 2757
auto.py Enables multiple commonly used features. Method resolution order: - `tqdm.autonotebook` without import warnings - `tqdm.asyncio` - `tqdm.std` base class Usage: >>> from tqdm.auto import trange, tqdm >>> for i in trange(10): ... ... 871
autonotebook.py Automatically choose between `tqdm.notebook` and `tqdm.std`. Usage: >>> from tqdm.autonotebook import trange, tqdm >>> for i in trange(10): ... ... 956
cli.py Module version for monitoring CLI pipes (`... | python -m tqdm | ...`). 11010
completion.sh 946
contrib
dask.py Dask callback for task progress. 1319
gui.py Matplotlib GUI progressbar decorator for iterators. Usage: >>> from tqdm.gui import trange, tqdm >>> for i in trange(10): ... ... 5479
keras.py Keras callback for epoch and batch progress. 4373
notebook.py IPython/Jupyter Notebook progressbar decorator for iterators. Includes a default `range` iterator printing to `stderr`. Usage: >>> from tqdm.notebook import trange, tqdm >>> for i in trange(10): ... ... 10895
rich.py `rich.progress` decorator for iterators. Usage: >>> from tqdm.rich import trange, tqdm >>> for i in trange(10): ... ... 5021
std.py Customisable progressbar decorator for iterators. Includes a default `range` iterator printing to `stderr`. Usage: >>> from tqdm import trange, tqdm >>> for i in trange(10): ... ... 57461
tk.py Tkinter GUI progressbar decorator for iterators. Usage: >>> from tqdm.tk import trange, tqdm >>> for i in trange(10): ... ... 6701
tqdm.1 7889
utils.py General helpers required for `tqdm.std`. 11821
version.py `tqdm` version detector. Precedence: installed dist, git, 'UNKNOWN'. 333