tqdm

4.67.3 · active · verified Sat Mar 28

tqdm is a Python library that provides fast, extensible progress bars for loops and iterables, making it easy to visualize the progress of your code. The current version is 4.67.3, released on February 3, 2026, with a release cadence of approximately every 89 days.

Warnings

Install

Imports

Quickstart

This example demonstrates how to use tqdm to add a progress bar to a loop that simulates work with a sleep function.

from tqdm import tqdm
import time

for i in tqdm(range(100)):
    time.sleep(0.1)  # Simulate work

view raw JSON →