How to disable a tqdm progress bar?

Published on Aug. 22, 2023, 12:18 p.m.

To disable a tqdm progress bar in Python, you can set the “disable” parameter to “True” when initializing the tqdm object. Here’s an example:

from tqdm import tqdm
for i in tqdm(range(100), disable=True):
    # your code here

Setting “disable” to “True” will prevent the progress bar from being displayed. You can also use the “tqdm.write” method to print messages to the console without showing progress. Here’s an example:

from tqdm import tqdm
for i in range(100):
    if i % 10 == 0:
        tqdm.write("Processed {} items...".format(i))
    # your code here

This will print a message to the console every 10 iterations, without displaying a progress bar.

Tags:

related content