Skip to content

Instantly share code, notes, and snippets.

@Breta01
Last active July 2, 2017 16:51
Show Gist options
  • Save Breta01/13256d8abbb5e0bc512bae4bf8037894 to your computer and use it in GitHub Desktop.
Save Breta01/13256d8abbb5e0bc512bae4bf8037894 to your computer and use it in GitHub Desktop.
Display only one widget
import ipywidgets as widgets
# Import display function
from IPython.display import display
# Create costume widget
w = widgets.IntProgress(value = 50, description='Loading:')
# Display widget
display(w)
# Delete/Close widget as:
# w.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment