简体   繁体   中英

Widget to show that function is 'running' in published Jupyter Notebook

In a published Jupyter notebook is there a way to insert a widget that says "running" or something similar when I am running a function.

I am aware of the tqdm function but to the best of my knowledge this is only when the function / process contains a for-loop.

I currently have a series of dropdown widgets with a submit button but some of the functions take a while for the calcs to run so i have no way of telling if the're running or not

Cheers

The way I have done this in the past is to have a function as a context manager, that displays some value to a Text widget to indicate that the function is running. You could also use an Output widget to display a indeterminate 'progress' bar like the one below:

https://www.iselect.com.au/content/themes/iselect/images/post/loader.gif

import ipywidgets as ipyw
import time
from contextlib import contextmanager

label = ipyw.Text('Ready')
button = ipyw.Button(description='Click me')

@contextmanager
def show_loading():
    label.value = 'Running...'
    yield
    label.value = 'Ready'

def long_running_function(self):
    with show_loading():
        time.sleep(2)
        
button.on_click(long_running_function)

display(button)    
display(label)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM