Last active
July 2, 2017 16:51
-
-
Save Breta01/13256d8abbb5e0bc512bae4bf8037894 to your computer and use it in GitHub Desktop.
Display only one widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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