Update gui.rst

This commit is contained in:
MikeTheWatchGuy
2018-09-04 01:07:27 -04:00
committed by GitHub
parent 1ec2c8ff61
commit a27732e229
+7 -3
View File
@@ -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 <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.
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.