Skip to main content

Python interface to DBus notifications

Project description

This is a pure-python replacement for notify-python, using python-dbus to communicate with the notifications server directly. It’s compatible with Python 2 and 3, and its callbacks can work with Gtk 3 or Qt 4 applications.

To use it, first call notify2.init('app name'), then create and show notifications:

n = notify2.Notification("Summary",
                         "Some body text",
                         "notification-message-im"   # Icon name
                        )
n.show()

API docs are available on ReadTheDocs, or you can refer to docstrings.

Based on the notifications spec at: http://developer.gnome.org/notification-spec/

Porting applications from pynotify

There are a few differences from pynotify you should be aware of:

  • If you need callbacks from notifications, notify2 must know about your event loop. The simplest way is to pass ‘glib’ or ‘qt’ as the mainloop parameter to init.

  • The methods attach_to_widget and attach_to_status_icon are not implemented. You can calculate the location you want the notification to appear and call Notification.

  • set_property and get_property are not implemented. The summary, body and icon are accessible as attributes of a Notification instance.

  • Various methods that pynotify Notification instances got from gobject do not exist, or only implement part of the functionality.

Several pynotify functions, especially getters and setters, are only supported for compatibility. You are encouraged to use more direct, Pythonic alternatives.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

notify2-0.3.1.tar.gz (17.8 kB view hashes)

Uploaded Source

Built Distribution

notify2-0.3.1-py2.py3-none-any.whl (8.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page