https://www.riverbankcomputing.com/software/pyqt
https://www.wxpython.org
import wx
app=wx.App(False)
frame=wx.Frame(None,wx.ID_ANY,"Hello World")
frame.show(True)
app.MainLoop()
https://pygobject.readthedocs.io
import gi
gi.require_version("Gtk","3.0")
from gi.repository import Gtk
window =Gtk.Window(title="Hello World")
window.show()
window.connect("destroy",Gtk.main_quit)
Gtk.main()
https://github.com/fogleman/Quads
https://github.com/jontonsoup4/ascii_art
https://docs.python.org/3/library/turtle.heml