Skip to content

Instantly share code, notes, and snippets.

@dirkgr
dirkgr / logging_tqdm.py
Last active December 19, 2024 20:39
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,