wx.App console window [Windows]

siwiak at gmail.com siwiak at gmail.com
Thu Jul 12 16:44:24 EDT 2007


Hi All,

I'm looking for a way to  hide console window created by wx.App class.

examplary code below:

import wx

class Gui(wx.App):
        def __init__(self, *pargs, **kwargs):
                wx.App.__init__(self, *pargs, **kwargs)


if __name__ == "__main__":
    app = Gui()
    app.MainLoop()

produces a blank console window (than dies).

What shall I do to make wx.App run without raising console window?

thanks in advance




More information about the Python-list mailing list