Search code examples
pythonmacoswxpythonbundlepy2app

How to change the app name in OSX menubar in a pure-Python application bundle?


I am trying to create a pure-Python application bundle for a wxPython app. I created the .app directory with the files described in Apple docs, with an Info.plist file etc. The only difference between a "normal" app and this bundle is that the entry point (CFBundleExecutable) is a script which starts with the following line:

#!/usr/bin/env python2.5

Everything works fine except that the application name in the OSX menubar is still "Python" although I have set the CFBundleName in Info.plist (I copied the result of py2app, actually). The full Info.plist can be viewed here.

How can I change this? I have read everywhere that the menubar name is only determined by CFBundleName. How is it possible that the Python interpreter can change this in runtime?

Note: I was using py2app before, but the result was too large (>50 MB instead of the current 100KB) and it was not even portable between Leopard and Snow Leopard... so it seems to be much easier to create a pure-Python app bundle "by hand" than transforming the output of py2app.


Solution

  • The "Build Applet.app" that comes with the Python developer tools is actually a pure-Python app bundle. It does the following:

    • a Python interpreter is placed (or linked) into the MacOS/ directory
    • the executable script (Foo.app/Contents/MacOS/Foo) sets up some environment variables and calls os.execve() to this interpreter.

    The executable script looks like this (it is assumed that the entry point of the program is in Resources/main.py):

    #!/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python
    import sys, os
    execdir = os.path.dirname(sys.argv[0])
    executable = os.path.join(execdir, "Python")
    resdir = os.path.join(os.path.dirname(execdir), "Resources")
    libdir = os.path.join(os.path.dirname(execdir), "Frameworks")
    mainprogram = os.path.join(resdir, "main.py")
    
    sys.argv.insert(1, mainprogram)
    pypath = os.getenv("PYTHONPATH", "")
    if pypath:
        pypath = ":" + pypath
    os.environ["PYTHONPATH"] = resdir + pypath
    os.environ["PYTHONEXECUTABLE"] = executable
    os.environ["DYLD_LIBRARY_PATH"] = libdir
    os.environ["DYLD_FRAMEWORK_PATH"] = libdir
    os.execve(executable, sys.argv, os.environ)