Growl notification in python

growl, macos, python

Solution

It looks like there is a new python bindings library for growl: gntp

You may have better luck with that.

Problem

Using Growl in python but having no luck with anything appearing. Using the following code. Running on OSX Lion with Growl 1.3.3. Anyone got this working? ``` import Growl notifier = Growl.GrowlNotifier(applicationName='mzgrowl', notifications=['alive']) notifier.register() notifier.notify('alive', 'mzgrowl', 'test message') ```

Original source