Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Growl notification in python

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')
like image 753
Maria Zverina Avatar asked May 15 '12 20:05

Maria Zverina


1 Answers

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

You may have better luck with that.

like image 59
Matthew Schinckel Avatar answered Oct 15 '22 03:10

Matthew Schinckel