Ecco un'altra soluzione che funziona con Growl 1.2. Non ho 1.3 da testare. È migliore della maggior parte delle soluzioni in circolazione perché non è necessario attivare il ringhio di rete.
Da http://wiki.python.org/moin/MacPython/Growl/AppleScriptSupport:
$ pip install appscript
ed eseguire questo:
from appscript import *
# connect to Growl
growl = app('GrowlHelperApp')
# Make a list of all the notification types
# that this script will ever send:
allNotificationsList = ['Test Notification', 'Another Test Notification']
# Make a list of the notifications
# that will be enabled by default.
# Those not enabled by default can be enabled later
# in the 'Applications' tab of the growl prefpane.
enabledNotificationsList = ['Test Notification']
# Register our script with growl.
# You can optionally (as here) set a default icon
# for this script's notifications.
growl.register(
as_application='Growl Appscript Sample',
all_notifications=allNotificationsList,
default_notifications=enabledNotificationsList,
icon_of_application='PythonIDE')
# Send a Notification...
growl.notify(
with_name='Test Notification',
title='Test Notification',
description='This is a test Appscript notification.',
application_name='Growl Appscript Sample')
# You can optionally add an icon by adding one of these as the last arg:
# icon_of_application="Script Editor.app")
# icon_of_file="file:///Users/someone/Growl")
# image_from_location="file:///Users/someone/pictures/stopWatch.png")
# Another one...
growl.notify(
with_name='Another Test Notification',
title='Another Test Notification :) ',
description='Alas - you won\'t see me until you enable me...',
application_name='Growl Appscript Sample')
fonte
2013-03-17 05:31:30
messaggio di errore? Stacktrace? O semplicemente non funziona? – BluePeppers
Semplicemente non funzionante :( –
Ulteriori informazioni Bit. Ho provato lo stesso codice su OSX Lion con Growl 1.2.2 e funziona perfettamente, ma ancora non ho fortuna con Growl 1.3.3 Sono cambiate le associazioni Python? –