Replies: 1 comment 1 reply
-
We could keep using from tqdm.auto import tqdm, trange
from time import sleep
from ipywidgets import Output
out = Output()
alert = sw.Alert(type_='success')
alert.show().children=[out]
alert
with out:
bar = trange(10)
for i in bar:
sleep(0.1) However, we should fix colors when using black template. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's a code that I used several time in my modules dev and maybe it could be usefull as tqd does not work in the alert widgets.
Any thoughts ?
Beta Was this translation helpful? Give feedback.
All reactions