Python provides wxpython module which allows us to create high functional graphical user interface. It is an Open Source module, which means it is free for anyone to use and the source code is available for anyone to look and modify.
It is implemented as a set of extension modules that wrap the GUI components of wxWidgets library which is written in C++. It is cross platform GUI toolkit for python, Phoenix version Phoenix is the improved next-generation wxPython and it mainly focused on speed, maintainablity and extensibility.
Install using this command:
pip install wxpython
Creating GUI using wxpython:
- First import wx module.
- Create an object for application class.
- Create an object for frame class and other controls are added to frame object so its layout is maintained using panel .
- Then add a Static text object to show Hello World .
- Show the frame window by using show method.
- Run the app till the window is closed by using main event loop application object.
Example #1: A simple GUI application which says GEEKS FOR GEEKS using wxpython.
# import wx moduleimport wx # creaing application objectapp1 = wx.App() # creating a frameframe = wx.Frame(None, title ="GFG")pa = wx.Panel(frame) # Adding a text to the frame objecttext1 = wx.StaticText(pa, label ="GEEKS FOR GEEKS", pos =(100, 50)) # show itframe.Show() # start the event loopapp1.Mainloop() |
Output:
Example #2: Creating Buttons using wx module
# Import wx moduleimport wx # creaing application objectapp1 = wx.App() # creating a frameframe = wx.Frame(None, title ="wxpython app")pa = wx.Panel(frame) # Button creatione = wx.Button(pa, -1, "Button1", pos = (120, 100)) # show itframe.Show() # start the event loopapp1.Mainloop() |
Output:
Example #3: CheckBox using wxpython
# importing wx moduleimport wx # creaing application objectapp1 = wx.App() # creating a frameframe = wx.Frame(None, title ="wxpython app")pa = wx.Panel(frame) # Checkbox creation using wx modulee = wx.CheckBox(pa, -1, "CheckBox1", pos = (120, 100))e = wx.CheckBox(pa, -1, "CheckBox2", pos = (120, 120)) # show itframe.Show() # start the event loopapp1.Mainloop() |
Output:
Example #4: RadioButtons using wxpython
# importing wx moduleimport wx # creaing application objectapp1 = wx.App() # creating a frameframe = wx.Frame(None, title ="wxpython app")pa = wx.Panel(frame) # RadioButton creation using wx modulee = wx.RadioButton(pa, -1, "RadioButton1", pos = (120, 100))e = wx.RadioButton(pa, -1, "radioButton2", pos = (120, 120)) # show itframe.Show() # start the event loopapp1.Mainloop() |
Output:
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course. And to begin with your Machine Learning Journey, join the Machine Learning – Basic Level Course


