IPython
The following displays a Python object in all frontends:
IPython.core.display.display(*objs, **kwargs)
The following renders HTML content:
IPython.display.HTML(TextDisplayObject)
The following displays interactive widgets connected to a function. The first parameter is expected to be a function:
IPython.html.widgets.interaction.interact (__interact_f=None, **kwargs)
The following arguments to this function are widget abbreviations passed in as keyword arguments, which build a group of interactive widgets tied to __interact_f and places the group in a container:
IPython.html.widgets.interaction.interactive (__interact_f, **kwargs)