import wxclass App(wx.App): def OnInit(self): frame = wx.Frame(parent=None, title='Bare') frame.Show() return Trueapp = App()app.MainLoop()