You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is widely used for developing software with a GUI but can also be used for
89
91
non-GUI applications.
90
92
93
+
PySimpleGUI
94
+
------
95
+
`PySimpleGUI <https://pysimplegui.readthedocs.io/>`_ is a wrapper for the Tkinter. The amount of code required to implement custom GUIs is much shorter using PySimpleGUI than if the same GUI were written directly using tkinter. Having Tkinter as a base results in the ability to run on a larger number of platforms than other GUI frameworks.
96
+
97
+
.. code-block:: console
98
+
99
+
$ pip install pysimplegui
100
+
101
+
PySimpleGUI is contained in a single PySimpleGUI.py file. Should pip installation be impossible, pasting the PySimpleGUI.py file into a project's folder is all that's required to import and begin using.
102
+
91
103
Toga
92
104
----
93
105
`Toga <https://toga.readthedocs.io/en/latest/>`_ is a Python native, OS
0 commit comments