Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 339 Bytes

README.md

File metadata and controls

9 lines (9 loc) · 339 Bytes

simple-text

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):
Label(w, text=t).pack()