tqdm.auto#
Enables multiple commonly used features.
Method resolution order:
tqdm.autonotebookwithout import warningstqdm.asynciotqdm.stdbase class
Usage:
>>> from tqdm.auto import trange, tqdm
>>> for i in trange(10):
... ...
tqdm.contrib.bells#
Even more features than tqdm.auto (all the bells & whistles):
tqdm.autotqdm.tqdm.pandastqdm.contrib.telegram- uses
${TQDM_TELEGRAM_TOKEN}and${TQDM_TELEGRAM_CHAT_ID}
- uses
tqdm.contrib.discord- uses
${TQDM_DISCORD_TOKEN}and${TQDM_DISCORD_CHANNEL_ID}
- uses
tqdm.autonotebook#
Automatically choose between tqdm.notebook and tqdm.std.
Usage:
>>> from tqdm.autonotebook import trange, tqdm
>>> for i in trange(10):
... ...