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

Skip to content

Add PySimpleGUI to list of GUI frameworks #918

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/scenarios/gui.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -88,6 +90,16 @@ Qt
is widely used for developing software with a GUI but can also be used for
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.

.. 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.

Toga
----
`Toga <https://toga.readthedocs.io/en/latest/>`_ is a Python native, OS
Expand Down