I have a wxpython script that creates wx.App and a frame, hides it and does some processing using a hidden frame. I don't want this script icon to appear in the Mac dock, but it does come. Since I can hide it, I did not find anything in wxPython, so there is some kind of API there that I can name?
The simplest python script displays an icon
>>> import wx >>> app = wx.App()
source share