Skip to content

Instantly share code, notes, and snippets.

@dirkgr
dirkgr / logging_tqdm.py
Last active November 12, 2025 00:02
A drop-in replacement for TQDM which writes log messages instead of progress bars
from typing import *
import time
import logging
def logging_tqdm(
i,
*,
logger: Optional[logging.Logger] = None,
desc: str = "Working",
total: Optional[int] = None,