I often run long-running cells in my IPython notebook. I\'d like the notebook to automatically beep or play a sound when the cell is finished executing. Is there some way to
You could use an external module with python. Try adding this s.play()
call from Snack Sound Toolkit at the end of the cell.
The Snack Sound Toolkit can play wav, au and mp3 files.
s = Sound()
s.read('sound.wav')
s.play()
this question is basically a duplicate of: Play a Sound with Python.
The above code-snipit was from @csexton in that question.