https://github.com/lyushher/python-gui
Python Graphical User Interface
https://github.com/lyushher/python-gui
graphical-user-interface gui pysimplegui python tkinter-gui
Last synced: about 2 months ago
JSON representation
Python Graphical User Interface
- Host: GitHub
- URL: https://github.com/lyushher/python-gui
- Owner: lyushher
- License: mit
- Created: 2021-08-18T16:32:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-05T21:59:40.000Z (over 4 years ago)
- Last Synced: 2025-04-27T22:28:50.577Z (10 months ago)
- Topics: graphical-user-interface, gui, pysimplegui, python, tkinter-gui
- Language: Python
- Homepage:
- Size: 1.02 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Graphical User Interface
Python offers multiple options for developing GUI (Graphical User Interface).
Out of all the GUI methods, tkinter is the most commonly used method.
It is a standard Python interface to the Tk GUI toolkit shipped with Python.
Python with tkinter is the fastest and easiest way to create the GUI applications.
Creating a GUI using tkinter is an easy task.
When you execute the above code, a new window pops up on your screen.
## Working with Widgets;
Widgets are the bread and butter of the Python GUI framework Tkinter.
They are the elements through which users interact with your program.
Each widget in Tkinter is defined by a class.
Here are some of the widgets available:
**Widget Class** | **Description**
----- | -----
Label | Widget used to display text on the screen.
Button | Button that can contain text and can perform an action when clicked.
Entry | Text entry widget that allows only a single line of text.
Text | Text entry widget that allows multiline text entry.
Frame | Rectangular region used to group related widgets or provide padding between widgets.