Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7406331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:32:31+00:00 2026-05-29T05:32:31+00:00

I’m trying to use the Growl Python bindings (Growl.py v0.7 from the Growl repository)

  • 0

I’m trying to use the Growl Python bindings (Growl.py v0.7 from the Growl repository) to write a small application. One of the features that’s currently missing is the click notification sent to Python.

I know in Objective-C, when a user clicks the notification, it will send a trigger to the running application. I’d like to do a similar thing with the Python bindings. When a user clicks a notification, I’d like to have the Python program open a URL in the browser (or handle the event in another manner).

Any thoughts on how I might accomplish it?

Update: thanks to synthesizerpatel who provides a promising solution and I take his words it worked on Lion. Unfortunately, I’m beginning to fade out from Mac, so I don’t do much Mac programming anymore. Though, I did some debugging as it’s still not working on Snow Leopard, and here is why:

Discussion Growl PyObjC not working with PyObjC 2.2b3

Source code

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:32:32+00:00Added an answer on May 29, 2026 at 5:32 am

    Is this what you want?

    #!/usr/bin/env python 
    #
    # pyGrr!
    #
    # This code was originally found @
    # http://www.cocoaforge.com/viewtopic.php?f=6&t=13359&p=91992&hilit=pyobjc+growl
    # It is (to the best of our knowledge) the work of user 'tooru' on the same
    # website.
    #
    # I make no claim to this code, all I did was get it working with PyObjC on Lion
    # reformatted it a bit and added some more verbose explanations of what the script
    # does. To be honest, I haven't touched pyobjc in a couple years and I was amazed
    # that it still works! Even more amazed that I was able to get this example working
    # in about 20 minutes.
    #
    # Great job tooru! 
    # 
    #   I have verified this code works with the following combination of 
    #   packages / versions
    #
    #   * OSX Lion 10.7.3
    #   * Python 2.7
    #   * Growl 1.3
    #   * Growl SDK 1.3.1
    #
    # 
    # - Nathan Ramella nar@hush.com (http://www.remix.net)
    ##################################################################################
    
    import objc
    from Foundation import *
    from AppKit import *
    from PyObjCTools import AppHelper
    import time
    import sys
    import os
    
    myGrowlBundle = objc.loadBundle(
      "GrowlApplicationBridge",
      globals(),
      bundle_path = objc.pathForFramework(
        '/Library/Frameworks/Growl.framework'
      )
    )
    
    class MenuMakerDelegate(NSObject):
    
      """
      This is a delegate for Growl, a required element of using the Growl
      service.
    
      There isn't a requirement that delegates actually 'do' anything, but
      in this case, it does. We'll make a little menu up on the status bar
      which will be named 'pyGrr!'
    
      Inside the menu will be two options, 'Send a Grr!', and 'Quit'. 
    
      Send a Grr! will emit a growl notification that when clicked calls back
      to the Python code so you can take some sort of action - if you're that
      type of person.
      """
    
      statusbar = None
      state = 'idle'
    
      def applicationDidFinishLaunching_(self, notification):
    
        """
        Setup the menu and our menu items. Getting excited yet?
        """
    
        statusbar = NSStatusBar.systemStatusBar()
        # Create the statusbar item
        self.statusitem = statusbar.statusItemWithLength_(NSVariableStatusItemLength)
    
        self.statusitem.setHighlightMode_(1)  # Let it highlight upon clicking
        self.statusitem.setToolTip_('pyGrr!')   # Set a tooltip
        self.statusitem.setTitle_('pyGrr!')   # Set an initial title
    
        # Build a very simple menu
        self.menu = NSMenu.alloc().init()
        menuitem = NSMenuItem.alloc().initWithTitle_action_keyEquivalent_(
          'Send a Grr!',
          'rcNotification:',
          ''
        )
        self.menu.addItem_(menuitem)
    
        # Default event
        menuitem = NSMenuItem.alloc().initWithTitle_action_keyEquivalent_(
          'Quit',
          'terminate:',
          ''
        )
        self.menu.addItem_(menuitem)
    
        # Bind it to the status item
        self.statusitem.setMenu_(self.menu)
    
      def rcNotification_(self,notification):
    
        """
        This is run when you select the 'Send a Grr!' menu item. It 
        will lovingly bundle up a Grr and send it Growl's way.
        """
    
        print "Sending a growl notification at", time.time()
    
        GrowlApplicationBridge.notifyWithTitle_description_notificationName_iconData_priority_isSticky_clickContext_(
          "Grr! - I'm a title!",
          "This is where you put notification information.",
          "test1",
          None,
          0,
          False,
          "this ends up being the argument to your context callback"
        )
    
    class rcGrowl(NSObject):
    
      """
      rcGrowl registers us with Growl to send out Grrs on behalf
      of the user and do 'something' with the results when a 
      Grr has been clicked.
    
      For additional information on what the what is going on
      please refer to the growl dox @ 
    
      http://growl.info/documentation/developer/implementing-growl.php
      """
    
      def rcSetDelegate(self):
        GrowlApplicationBridge.setGrowlDelegate_(self)
    
      def registrationDictionaryForGrowl(self):
    
        """
        http://growl.info/documentation/developer/implementing-growl.php#registration
        """
    
        return {
          u'ApplicationName'    :   'rcGrowlMacTidy',
          u'AllNotifications'   :   ['test1'],
          u'DefaultNotifications' :   ['test1'],
          u'NotificationIcon'   :   None,
        } 
    
      # don't know if it is working or not
      def applicationNameForGrowl(self):
        """ 
        Identifies the application.
        """
        return 'rcGrowlMacTidy'
    
      #def applicationIconDataForGrowl(self):
        """
        If you wish to include a custom icon with the Grr,
        you can do so here. Disabled by default since I didn't
        want to bloat up this up
        """
        #icon = NSImage.alloc().init()
        #icon = icon.initWithContentsOfFile_(u'remix_icon.tiff')
        #return icon
    
      def growlNotificationWasClicked_(self, ctx):
    
        """
        callback for onClick event
        """
        print "we got a click! " + str(time.time()) + " >>> " + str(ctx) + " <<<\n"
    
      def growlNotificationTimedOut_(self, ctx):
    
        """ 
        callback for timing out
        """
        print "We timed out" + str(ctx) + "\n"
    
      def growlIsReady(self):
    
        """
        Informs the delegate that GrowlHelperApp was launched
        successfully. Presumably if it's already running it
        won't need to run it again?
        """
        print "growl IS READY"
    
    
    if __name__ == "__main__":
    
      # Both 'growlnotify' and this script seem to have the following
      # error after emitting a Grr!
      #
      # Error Domain=GCDAsyncSocketErrorDomain Code=4 "Read operation timed out" 
      # UserInfo=0x7fa444e00070 {NSLocalizedDescription=Read operation timed out}
      # 
      # So, we redirect stderr to /dev/null so that it doesn't muck up
      # the output of this script. Some folks say upgrading Growl fixes it,
      # others still have the problem. Doesn't seem to make much of a difference
      # one way or another, things still seem to work regardless.
    
      fp = os.open('/dev/null', os.O_RDWR|os.O_CREAT, 0o666)
      dupped = os.dup(2)
      os.dup2(fp, 2)
    
      # set up system statusbar GUI
      app = NSApplication.sharedApplication()
      delegate = MenuMakerDelegate.alloc().init()
      app.setDelegate_( delegate )
    
      # set up growl delegate
      rcGrowlDelegate=rcGrowl.new()
      rcGrowlDelegate.rcSetDelegate()
      AppHelper.runEventLoop()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I want use html5's new tag to play a wav file (currently only supported
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
I'm trying to create an if statement in PHP that prevents a single post
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.