HTML widgets for tkinter
This module is a collection of tkinter widgets whose text can be set in HTML format. A HTML widget isn't a web browser frame, it's only a simple and lightweight HTML parser that formats the tags used by the tkinter Text base class. The widgets behaviour is similar to the PyQt5 text widgets (see the PyQt5 HTML markup subset).
pip install tk_html_widgets
- Python 3.4 or later with tcl/tk support
- Pillow 5.3.0
import tkinter as tk
from tk_html_widgets import HTMLLabel
root = tk.Tk()
html_label = HTMLLabel(root, html='<h1 style="color: red; text-align: center"> Hello World </H1>')
html_label.pack(fill="both", expand=True)
html_label.fit_height()
root.mainloop()
All widget classes inherits from the tkinter.Text() base class.
Text-box widget with vertical scrollbar
Text-box widget without vertical scrollbar
Text-box widget with label appereance
Description: Sets the text in HTML format.
Args:
- html: input HTML string
- strip: if True (default) handles spaces in HTML-like style
Description: Fit widget height in order to display all wrapped lines
Only a subset of the whole HTML tags and attributes are supported (see table below). Where is possibile, I hope to add more HTML support in the next releases.
Tags | Attributes | Notes |
---|---|---|
a | style, href | |
b | style | |
br | ||
code | style | |
div | style | |
em | style | |
h1 | style | |
h2 | style | |
h3 | style | |
h4 | style | |
h5 | style | |
h6 | style | |
i | style | |
img | src, width, height | local images only |
li | style | |
mark | style | |
ol | style, type | 1, a, A list types only |
p | style | |
pre | style | |
span | style | |
strong | style | |
u | style | |
ul | style | bullet glyphs only |
In order to check the appearance of the HTML text displayed by the tk_html_widgets, I made some HTML templates and I compared the text displayed by the HTMLText widget with the text displayed by Firefox and the PyQt5 QTextBrowser widget. See details and templates HTML code in the examples folder.
Firefox | tk_html_widgets.HTMLText | PyQt5.QtWidgets.QTextBrowser |
---|---|---|
Firefox | tk_html_widgets.HTMLText | PyQt5.QtWidgets.QTextBrowser |
---|---|---|
Firefox | tk_html_widgets.HTMLText | PyQt5.QtWidgets.QTextBrowser |
---|---|---|
Thanks to my mentor, valued collegue and friend JayZar21.