1import ipywidgets as widgets
2w = widgets.Text()
3w.unobserve(None,...)
4
5# still need to pass `names` whenever needed.
6# But at least you don't need to know the exact name of the handler.
7# Specially if you have used a `partial` when setting the observer.