Skip to content

Latest commit

 

History

History

16-graphical-user-interfaces

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Overview

  • tkinter_example.py: A basic example of a GUI application using Tkinter.
  • pyqt_example.py: A basic example of a GUI application using PyQt.

Tkinter

Tkinter is the standard Python interface to the Tk GUI toolkit. It is included with most Python installations and provides a simple way to create GUI applications. Tkinter is known for its simplicity and ease of use, making it a good choice for beginners who want to build desktop applications quickly.

PyQt

PyQt is a set of Python bindings for the Qt application framework. PyQt allows you to create professional-grade, cross-platform desktop applications with rich graphical user interfaces. It is more feature-rich compared to Tkinter and supports a wide range of widgets and tools.

Prerequisites

Before running the examples, make sure you have Python installed on your system. You also need to install the required libraries.

Tkinter

Tkinter is included with Python by default, so you usually don't need to install it separately.

PyQt

To install PyQt5, you can use pip:

pip install PyQt5