import wx app = wx.App() frame = wx.Frame(None, title='Helló Világ') button = wx.Button(frame, label="Mehet") frame.Show(True) app.MainLoop()