Skip to content

taipy.gui.Html

Bases: _Renderer

Page generator for HTML text.

Taipy can use HTML code to create pages that are the base of user interfaces.

You can find details on HTML-specific constructs and how to add Taipy Visual Elements in the section on HTML of the User Manual.

__init__(content, **kwargs)

Initialize a new Html page.

Parameters:

Name Type Description Default
content str

The text content or the path to the file holding the HTML text to be transformed.
If content is a path to a readable file, the file is read as the HTML template content.

required