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.
- Host: GitHub
- URL: https://github.com/computerware/simple-text
- Owner: ComputerWare
- Created: 2024-08-08T19:43:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-10T22:11:27.000Z (10 months ago)
- Last Synced: 2025-03-10T23:23:43.492Z (10 months ago)
- Language: Python
- Homepage: https://computerware.github.io/simple-text/
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()`