ipywidgets
ipywidgets copied to clipboard
Interactive Widgets for the Jupyter Notebook
Hi all, Not sure if this is the right place to ask, but I was just wondering if there's any common wisdom on automated testing of widgets? For example, ensuring...
First of all, great job on the project! I wonder if there are some ways how to test widgets in an automated fashion? Something like [pytest-qt](https://github.com/pytest-dev/pytest-qt) for QT applications. To...
Implement a widget to provide an easy bridge to browser [notifications](https://developer.mozilla.org/en-US/docs/Web/API/notification). This would be very useful for events such as completions of long-running processes.
The custom widget example, MyWidget, illustrated in [https://ipywidgets.readthedocs.io/en/8.1.2/examples/Widget%20Low%20Level.html](url) does not work in ipywidget V8.0.4. It works at least with V7.6.5. I have another widget following this example and met the...
## Description There is a stray call to `require` in what is otherwise a perfectly good ES module here: https://github.com/jupyter-widgets/ipywidgets/blob/52663ac472c38ba12575dfb4979fa2d250e79bc3/packages/controls/src/index.ts#L27 When this is published to NPM, it is transpiled from...
To fix #3854. This adds a fixup step to the build, so the proper version string gets inserted into `lib/index.js`. For example, at the current version, the file is now...
Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.21.5 to 7.23.2. Release notes Sourced from @babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...
## Description Hello, I want to use dev_ Install.sh for source code compilation and installation, but I encountered the following error: KeyError: 'The Python module widgetsnbextension is not a valid...
## Description When a text box is created by the function interact_manual( ) and text is input to the box, the function specified as the first argument of interact_manual( )...
I tried to play an Audio widget programmatically, but I don't see a `play()`-like method to do that, like: ```python from ipywidgets import Audio w = Audio.from_file("audio/a.mp3", autoplay=False, loop=False) w.play()...