Python GUI toolkit on Windows. Simple and lean.
Code examples
import tymber as ty
window = ty.Window("Hello!")
window.run() # show as modalimport tymber as ty
def button__on_click(button):
button.parent.close()
app = ty.Application(ty.Window("Tymber", width=360, height=280))
label = ty.Label(app.window, "label", 20, 60, -20, 22, "Hello World!")
label.align_h = ty.Align.center
button = ty.Button(app.window, "button", -70, -40, 50, 20, "Close")
button.on_click = button__on_click
app.run()- Install Python for Windows.
- Download the
tymber.pydfile for your version of Python from the respective subdirectory ofbin(e.g.310_64for Python 3.10, 64 bit). - Put it into the directory of your script and import it.
In the files demo.py and Lybniz.py you find examples of application code.
Here is some documentation.

