Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95f203b

Browse files
authored
Merge pull request #918 from MikeTheWatchGuy/master
Add PySimpleGUI to list of GUI frameworks
2 parents 78fdbb4 + a27732e commit 95f203b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/scenarios/gui.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ PySide
5959
------
6060
PySide is a Python binding of the cross-platform GUI toolkit Qt.
6161

62-
pip install pyside
62+
.. code-block:: console
63+
64+
$ pip install pyside
6365
6466
https://wiki.qt.io/Category:LanguageBindings::PySide::Downloads
6567

@@ -88,6 +90,16 @@ Qt
8890
is widely used for developing software with a GUI but can also be used for
8991
non-GUI applications.
9092

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+
91103
Toga
92104
----
93105
`Toga <https://toga.readthedocs.io/en/latest/>`_ is a Python native, OS

0 commit comments

Comments
 (0)