Page 1 of 1

My Python Module

Posted: 22 Oct 2022, 09:55
by Ben the Coder
Hi everybody,
I'm thinking about making a Python module. It would simplify the making of GUIs. All the commands to add and modify GUI elements would be simple, one-line code, making it easy to read.
A sample would be:

Code: Select all

GUI.create("mygui")
mygui.add.text(mygui, "mytext", red, row=1, column=2)
Any ideas?