An open API service indexing awesome lists of open source software.

https://github.com/computerware/simple-text

This is a Python3 Tkinter based library for a simple text widget.
https://github.com/computerware/simple-text

Last synced: 10 months ago
JSON representation

This is a Python3 Tkinter based library for a simple text widget.

Awesome Lists containing this project

README

          

# 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()`