render.express

render.express(self, _fn=None, *, inline=False, container=None, fill=False, fillable=False, **kwargs)

Reactively render HTML content with output captured as in Shiny Express

This is similar to ui, except that ui uses the return value from the the decorated function, whereas this function works like Shiny Express: as it executes each line of the decorated function, it calls :func:~sys.displayhook() on the result. This has the effet of "capturing" the output of each line.

Returns

Type Description
A decorator for a function that returns None.

See Also