You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, halo works as expected inside Jupyter Lab, but it clears the last output after running. Is there a way that I can persist all halo's outputs after the process finishes?
I imported halo with:
fromhaloimportHaloNotebookasHalo
And I used halo in the following manner (same as the gif):
spinner=Halo(text='Some text', spinner='dots')
spinner.start()
# some time-consuming taskspinner.succeed('Loaded!')
Also, if I were to reference halo a second time, it will persist the first output and clearing the second one. Is this expected?
spinner=Halo(text='Some text', spinner='dots')
spinner.start()
# some time-consuming taskspinner.succeed('Loaded!')
spinner.start()
spinner.stop()
Description
Currently, halo works as expected inside Jupyter Lab, but it clears the last output after running. Is there a way that I can persist all halo's outputs after the process finishes?
I imported halo with:
And I used halo in the following manner (same as the gif):
Also, if I were to reference halo a second time, it will persist the first output and clearing the second one. Is this expected?
System settings
conda list
output:The text was updated successfully, but these errors were encountered: