Can I make GUI application in Python?
Yes, you can make a GUI application in python by using several libraries.
Why to make GUI application?
GUI (Graphical User Interface) application helps in easy communication between user and application and enhances user experience. Now a days almost every application made for normal users are GUI based.
Image credit: Pexels
Libraries to make GUI in Python
1.PyQt5
Installation: pip install PyQt5Documentation: https://riverbankcomputing.com/software/pyqt/intro
2.Tkinter
Installation: pip install tkinterDocumentation: https://docs.python.org/3/library/tkinter.html
3.Kivy
Installation: pip install KivyDocumentation: https://kivy.org/#home
4.wxPython
Installation: pip install wxPythonDocumentation: https://www.wxpython.org/
5.PySimpalGUI
Installation: pip install PySimpleGUIDocumentation: https://pysimplegui.readthedocs.io/en/latest/
6.PyGUI
Installation: pip install PyGUIDocumentation: https://www.csse.canterbury.ac.nz/greg.ewing/python_gui/
7.Pyforms
Installation: pip install PyFromsDocumentation: https://pyforms.readthedocs.io/en/v4/

0 Comments