Python has many graphical interfaces: tkinter, wxWidgets, pyGTK, etc. But this whole graphical interface must be installed and quite heavy, so it’s a little more difficult to deploy end-user GUI picton applications that transmit the mentioned GUI libraries.
I recently thought about the built-in ctypes python. Theoretically, you can create a clean python GUI library that will use ctypes on windows (windll.user32.CreateWindowEx, etc.), Native pyObjC on MacOS and pyGTK / pyQt on gnome / kde. Is there such a library? If not, what do you think is wrong with the idea?
source
share