ipywidgets
ipywidgets copied to clipboard
Interactive Widgets for the Jupyter Notebook
## Description I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root...
If I wrap this code from `source/docs/examples/Output Widget.ipynb`, ``` import ipywidgets as widgets out = widgets.Output(layout={'border': '1px solid black'}) with out: for i in range(10): print(i, 'Hello world!') ``` in...
HI all, i am struggling with the following problem. I can't find a solution reading the documentation so i am asking here. Let's assume i want to deploy a feedback...
Is there already an argument that can be used to pass predefined colors to the ColorPicker?  https://ipywidgets.readthedocs.io/en/latest/examples/Widget%20List.html#Color-picker
As suggested here: https://github.com/jupyter-widgets/ipywidgets/issues/1063#issuecomment-422946416 In the web browser environment it's possible to expand particular content to "full screen" mode https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API An example would be YouTube video player. I'm thinking for...
Hi, is there an option to combine ipywidgets with a tkinter gui? So if I click a tkinter button the ipywidget window will open? I have the code I want...
## Description Can't create horizontal scroll on Output widget. Using in a scenario similar to #3184, but with matplotlib (ipympl). 1. It seems like there's an HTML Element between the...
Hi, I would like to create a download button from `widgets.Button`, is it possible to do that? I know that the download can be achieved using link tag, i.e. ```...
I've tried all the following methods to create a LowerOnlyBoundedFloatText, but they all seem to throw one error or the other. ```python import ipywidgets as ipyw import math import numpy...
Fixes #3260.