I use ipywidgets to display asynchronous results from processes.
import ipywidgets as widgets
results = widgets.HTML()
display(results)
It works well, results appear correctly, but when the notebook is saved, the widgets are not there anymore. Is there a way to save them with the notebook?