#!/usr/bin/env python # coding: utf-8 # # | [Contents](00.00-index.ipynb) | [Jupyter Widgets Tutorial Introduction](00.00-introduction.ipynb) > # # The Jupyter Interactive Widget Ecosystem # ## SciPy 2021 # # ### Matt Craig, Martin Renou, Itay Dafna, Mariana Meireles, Youness Bennani # # This tutorial will introduce you to the widgets in the Jupyter Notebook, walk through a few approaches to writing widgets, and introduce some relatively new widget packages. # # We are using ipywidgets 7.5 and Jupyter Lab 2.1 # 00. [Introduction](00.00-introduction.ipynb) # 01. [Overview](01.00-overview.ipynb) # 02. [Widgets without writing widgets: interact](02.00-Using-Interact.ipynb) # 01. [*OPTIONAL* Interact Exercises](02.01-OPTIONAL-More-About-Interact.ipynb) # 03. [Simple Widget Introduction](03.00-Widget_Basics.ipynb) # 04. [Widgets in the core ipywidgets package](04.00-widget-list.ipynb) # 02. [Output widgets: leveraging Jupyter's display system](04.01-more-on-output-widget.ipynb) # 05. [Widget Events](05.00-Widget_Events.ipynb) # 01. [*OPTIONAL* Three approaches to events](05.01-OPTIONAL-Widget_Events_2.ipynb) # 02. [*OPTIONAL* Password generator: `observe`](05.02-OPTIONAL-Widget_Events_2_--_bad_password_generator,_version_1.ipynb) # 03. [*OPTIONAL* Separating the logic from the widgets](05.03-OPTIONAL-Widget_Events_2_--_Separating_Concerns.ipynb) # 04. [*OPTIONAL* Separating the logic using classes](05.04-OPTIONAL-Widget_Events_2--Separating_concerns,_object_oriented.ipynb) # 06. [Layout and Styling of Jupyter widgets](06.00-layout-and-styling-overview.ipynb) # 01. [Layout and Styling of Jupyter widgets](06.01-widget-layout-and-styling.ipynb) # 01. [Container Layout Widgets](06.01-widget-layout-and-styling.ipynb#Container-Layout-Widgets) # 03. [*OPTIONAL* Widget label styling](06.02-OPTIONAL-widget-label-styling.ipynb) # 03. [*OPTIONAL* Predefined widget specific styles](06.03-OPTIONAL-widget-specific-styling.ipynb) # 04. [*OPTIONAL* Container exercises](06.00-OPTIONAL-container-exercises.ipynb) # 07. [More widget libraries](07.00-More_widget_libraries.ipynb) # 01. [ipyleaflet: Interactive maps](07.01-ipyleaflet.ipynb) # 02. [pythreejs: 3D rendering in the browser](07.02-pythreejs.ipynb) # 03. [bqplot: complex interactive visualizations](07.03-bqplot.ipynb) # 04. [ipyvolume: 3D plotting in the notebook](07.04-ipyvolume.ipynb) # 05. You can find even more [here](widgets_libraries) # 08. [Dashboarding with widgets](08.00-voila.ipynb) # 01. [So easy, *voilĂ *!](08.01-voila-basics.ipynb) # 02. [Deploying voilĂ ](08.02-voila-vuetify.ipynb) # ## [Table of widget and style properties](Table_of_widget_keys_and_style_keys.ipynb) # # Acknowledgements # # + Special thanks to the dozens of [ipywidgets developers](https://github.com/jupyter-widgets/ipywidgets/graphs/contributors), including Jonathan Frederic, who wrote much of the code in the early years of ipywidgets, Sylvain Corlay, who kept the project going at a critical time, and Jason Grout, who currently leads the project and has nurtured the growth of the widget ecosystem. # + Several of the notebooks in this tutorial were originally developed as part of [ipywidgets](http://ipywidgets.readthedocs.io/en/latest/) by Brian E. Granger ([@ellisonbg](https://github.com/ellisonbg)) and Jonathan Frederic ([@jdfreder](https://github.com/jdfreder)). # + Thanks to Doug Redden ([@DougRzz](https://github.com/DougRzz)) # + Project Jupyter core developer Carol Willing ([@willingc](https://github.com/willingc)) and [Minnesota State University Moorhead](http://physics.mnstate.edu) students Andrew Block ([@ACBlock](https://github.com/ACBlock)) and Jane Glanzer ([@janeglanzer](https://github.com/janeglanzer)) provided very useful feedback on early drafts of this tutorial. # + Thanks to [Jason Grout](https://github.com/jasongrout), [Sylvain Corlay](https://github.com/SylvainCorlay) and [Maarten Breddels](https://github.com/maartenbreddels) who also contributed to these tutorial Notebooks. # # | [Contents](00.00-index.ipynb) | [Jupyter Widgets Tutorial Introduction](00.00-introduction.ipynb) >