From 1ec2c8ff6139b54cecfbf5204813002ee16f1ea8 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Mon, 3 Sep 2018 20:29:46 -0400 Subject: [PATCH 1/2] Update gui.rst --- docs/scenarios/gui.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst index 28f1a9cd8..3be1b2a23 100644 --- a/docs/scenarios/gui.rst +++ b/docs/scenarios/gui.rst @@ -88,6 +88,14 @@ Qt is widely used for developing software with a GUI but can also be used for non-GUI applications. +PySimpleGUI +------ +`PySimpleGUI `_ 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. + + pip install pysimplegui + +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. + Toga ---- `Toga `_ is a Python native, OS From a27732e2294db4ddbd858f591c346b00a00a3ecc Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Tue, 4 Sep 2018 01:07:27 -0400 Subject: [PATCH 2/2] Update gui.rst --- docs/scenarios/gui.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst index 3be1b2a23..34c3ac134 100644 --- a/docs/scenarios/gui.rst +++ b/docs/scenarios/gui.rst @@ -59,7 +59,9 @@ PySide ------ PySide is a Python binding of the cross-platform GUI toolkit Qt. - pip install pyside +.. code-block:: console + + $ pip install pyside https://wiki.qt.io/Category:LanguageBindings::PySide::Downloads @@ -91,8 +93,10 @@ non-GUI applications. PySimpleGUI ------ `PySimpleGUI `_ 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. - - pip install pysimplegui + +.. code-block:: console + + $ pip install pysimplegui 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.