This is a Python3 Tkinter based library for a simple text widget.
The usage is simple:
ST(w=parent-window, t="this is the text")
Just do not forget to import the main library :)
from tkinter import Label
class ST(Label):
` def init(self, t, w):<br>
Label(w, text=t).pack()`