Enhance tqdm progress bars by assigning tags and colors to iterations.
Project description
tqdm-tag
Color-code individual items in a tqdm progress bar by tagging them with a status.
tqdm-tag extends tqdm so you can call pbar.warn() or pbar.error() on any item inside your loop. The corresponding segment of the progress bar fills with that tag's color, giving you an at-a-glance overview of where issues occurred — without waiting for the loop to finish.
Top: plain tqdm (monochrome). Bottom: tqdm-tag coloring each processed item by outcome.
Installation
pip install tqdm-tag
Usage
TqdmErrorTag is a drop-in replacement for tqdm — swap the class name and you're done. Call .warn() or .error() on any item to color that segment of the bar:
from tqdm_tag import TqdmErrorTag
pbar = TqdmErrorTag(range(100), legend=True, desc="Processing")
for item in pbar:
result = process(item)
if result.has_warning: pbar.warn()
if result.has_error: pbar.error()
With legend=True, a live second line below the bar shows running counts:
$\texttt{Processing:\ \ 73}\%|\color[RGB]{166,227,161}{\texttt{████████████}}\color[RGB]{249,226,175}{\texttt{███}}\color[RGB]{166,227,161}{\texttt{███}}\color[RGB]{243,139,168}{\texttt{█}}\color[RGB]{170,170,170}{\texttt{████}}\color[RGB]{255,255,255}{\texttt{ |\ 73/100\ [00:03{<}00:01,\ 12.5it/s]}}$
$\color[RGB]{249,226,175}{\texttt{█\ warn:\ 4}}$ $\color[RGB]{243,139,168}{\texttt{█\ error:\ 1}}$
Custom tags with TqdmTag
For full control, use TqdmTag with Tag objects. Each Tag groups name, color, and an optional status integer (auto-assigned if omitted):
from tqdm_tag import Tag, TqdmTag
pbar = TqdmTag(
range(100),
tags=[Tag("warn", color="yellow"), Tag("error", color="red")],
legend=True,
)
for i in pbar:
if i == 10: pbar.tag("warn") # reference by name string
if i == 80: pbar.tag("error")
[!NOTE] When
totalis known, per-item status is stored in a fixeduint8array (0-255) for memory efficiency, so at most 256 distinct status values are available. Registering aTag(or calling.tag()) with astatusoutside that range raises a warning at registration time, ahead of theOverflowErrorit would otherwise cause once an item is actually tagged with it.
Add tags on the fly
Pass a Tag object directly to .tag() to register and apply it in one call. Subsequent calls can use the name string:
from tqdm_tag import Tag, TqdmTag
pbar = TqdmTag(range(100))
for i in pbar:
if i == 10: pbar.tag(Tag("warn", color="yellow")) # registers + applies
if i == 30: pbar.tag("warn") # reuse by name
if i == 80: pbar.tag(Tag("error", color="red"))
Turn the whole bar green on success
import time
from tqdm_tag import TqdmTag
items = range(50)
pbar = TqdmTag(items, colour="red")
for i in pbar:
time.sleep(0.05)
if i == len(items) - 1:
pbar.tag("default", color="green")
Customize the legend
Tags in the legend are ordered by status value. Pass a legend_format callable to take full control — it receives tag_counts (dict of name → count) and tag_to_color (dict of name → color):
def my_legend(counts, colors):
return " ".join(f"[{k.upper()}={v}]" for k, v in counts.items())
pbar = TqdmErrorTag(range(100), legend=True, legend_format=my_legend)
Every item starts out under the implicit "default" tag. Rename it with default_tag_name (e.g. if "default" collides with one of your own tag names), and show its running count in the legend with legend_show_default:
pbar = TqdmTag(
range(100),
tags=[Tag("warn", color="yellow")],
default_tag_name="pending",
legend=True,
legend_show_default=True, # legend now includes "pending: N"
)
for i in pbar:
if i == 10: pbar.tag("warn")
if i == 90: pbar.tag("pending", color="green") # re-color the default tag
Reduce operation for dense bars
When the terminal is narrow, multiple items share one bar segment. Use reduce_op to control which status wins, and reduce_ignore_default to skip untagged items:
from tqdm_tag import Tag, TqdmTag
pbar = TqdmTag(
range(100),
tags=[Tag("warn", color="yellow", status=1), Tag("error", color="red", status=2)],
reduce_op=max, # highest-severity status wins
reduce_ignore_default=True, # don't let untagged items dilute the color
)
for i in pbar:
if i % 10 == 1: pbar.tag("warn")
if i % 10 == 2: pbar.tag("error")
A segment that's genuinely mixed (not every item shares one status) doesn't just flatten to reduce_op's winner — it's reduced a second time over whatever's left, and rendered as a single character split proportionally between the winner's color (foreground) and the runner-up's color (background), so a minority status stays visible instead of being fully outvoted or fully hiding the majority. This only applies with the default Unicode charset; ascii=True bars fall back to the flat winner color, since ASCII has no sub-character glyphs to blend with.
Resume a bar after a restart
Pass initial (the number of items already done) so the bar picks up at the right percentage, and initial_status to restore the previous run's per-item tags instead of showing that prefix as untagged:
from tqdm_tag import Tag, TqdmTag
tags = [Tag("warn", color="yellow", status=1), Tag("error", color="red", status=2)]
# first run got 30/100 done, with items 5 and 12 warned, item 21 errored
pbar = TqdmTag(
range(30, 100),
total=100,
initial=30,
tags=tags,
initial_status={5: 1, 12: 1, 21: 2}, # {index: status}, e.g. loaded from a checkpoint
)
for i in pbar:
...
initial_status also accepts a sparse (2, N) array ([indices, statuses]) or a dense (total,) array giving every item's status directly.
Retag an item by index
Pass index to .tag() to target a specific slot instead of the current item. tag() never auto-advances the bar when index is given, so it's safe to overwrite an already-counted item's status - useful for retry logic in manual (non-iterable) mode:
from tqdm_tag import Tag, TqdmTag
tags = [Tag("success", color="green", status=1), Tag("error", color="red", status=2)]
pbar = TqdmTag(total=len(items), tags=tags)
for i, item in enumerate(items):
try:
process(item)
pbar.tag("success")
except Exception:
pbar.tag("error") # n advances either way
# later: retry failed items, flip their status without touching n
for i in failed_indices:
if retry(items[i]):
pbar.tag("success", index=i)
index also fits out-of-order iterables (e.g. concurrent.futures.as_completed), where the true slot for a completed item has to be looked up rather than assumed from completion order. Works whether or not total is known.
API
| Class | Description |
|---|---|
TqdmErrorTag |
Drop-in replacement with pre-wired warn / error tags and .warn() / .error() helpers |
TqdmTag |
Core class for fully custom tags |
Tag |
Dataclass grouping a tag's name, color, and status |
ColoredBar |
Internal Bar subclass that renders ANSI-colored segments |
Full API reference: tqdm-tag.readthedocs.io
License
MIT © Colin Moldenhauer
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tqdm_tag-1.3.0.tar.gz.
File metadata
- Download URL: tqdm_tag-1.3.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efa31e027902110b2bd7e2ea997ceef0f896f9b0691a1ad17ccfd68e993ab458
|
|
| MD5 |
3cfe283396b4c85be61af0e087f5d3dd
|
|
| BLAKE2b-256 |
e0ddc4d257f2303c8e8845df98d7ad5b41b5597832d5edac503d1dd05b3f9d29
|
Provenance
The following attestation bundles were made for tqdm_tag-1.3.0.tar.gz:
Publisher:
publish.yml on ColinMoldenhauer/tqdm-tag
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tqdm_tag-1.3.0.tar.gz -
Subject digest:
efa31e027902110b2bd7e2ea997ceef0f896f9b0691a1ad17ccfd68e993ab458 - Sigstore transparency entry: 2185677484
- Sigstore integration time:
-
Permalink:
ColinMoldenhauer/tqdm-tag@98b25abb9f5b087454a5bc088efdc58784b25c3d -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/ColinMoldenhauer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98b25abb9f5b087454a5bc088efdc58784b25c3d -
Trigger Event:
push
-
Statement type:
File details
Details for the file tqdm_tag-1.3.0-py3-none-any.whl.
File metadata
- Download URL: tqdm_tag-1.3.0-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be035ae6bb4c554509523de182872becd82b1e09355d0a2cb74ba2a8400e4338
|
|
| MD5 |
00f71491fe4ec0f8d6b23409e0b1fcd5
|
|
| BLAKE2b-256 |
e2e17662868c2d30bb25296cd530fa8ee74e6deeef29b36efe5f41a4519d46b3
|
Provenance
The following attestation bundles were made for tqdm_tag-1.3.0-py3-none-any.whl:
Publisher:
publish.yml on ColinMoldenhauer/tqdm-tag
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tqdm_tag-1.3.0-py3-none-any.whl -
Subject digest:
be035ae6bb4c554509523de182872becd82b1e09355d0a2cb74ba2a8400e4338 - Sigstore transparency entry: 2185677793
- Sigstore integration time:
-
Permalink:
ColinMoldenhauer/tqdm-tag@98b25abb9f5b087454a5bc088efdc58784b25c3d -
Branch / Tag:
refs/tags/v1.3.0 - Owner: https://github.com/ColinMoldenhauer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@98b25abb9f5b087454a5bc088efdc58784b25c3d -
Trigger Event:
push
-
Statement type: