import wx from MainFrame import MainFrame class Bongeszo(wx.App): def OnInit(self): frame = MainFrame(None) frame.Show() return True app = Bongeszo() app.MainLoop()