I\'d like to have a python program alert me when it has completed its task by making a beep noise. Currently, I use import os and then use a command line spee
import os
If you have PyObjC (the Python - Objective-C bridge) installed or are running on OS X 10.5's system python (which ships with PyObjC), you can do
from AppKit import NSBeep NSBeep()
to play the system alert.