How do I get IPython to notify me when a command has been executed? Can I get it to use the bell/alert, or by pop-up? I\'m running Anaconda on iTerm on OS X 10.8.5.
As an alternative, I wrote a simple module/decorator function to notify on function completed (works only on MAC)
Example:
from ipynotifyer import notifyOnComplete as nf
@nf()
def divide_by_five():
return 5/5
@nf(timer=True)
def divide_by_ten():
return 5/10
https://github.com/Casyfill/ipython_notifier