dbusnotify

dbusnotify is a library for creating desktop notifications using the freedesktop.org notification spec


License
BSD-3-Clause
Install
pip install dbusnotify==0.0.2

Documentation

dbusnotify - freedesktop.org notifications library

Overview

dbusnotify is a python library for creating desktop notifications using the freedesktop.org notification specification.

Usage

The following example shows how to create a simple notification with an icon

import dbusnotify
dbusnotify.write(
    'Volume is <u>muted</u>',
    title='Audio Status',
    icon='audio-volume-muted',
    poptime=20,
)

examples/images/dbusnotify_readme_example.png

Installation

You can install from pypi using pip

pip install --user dbusnotify

Alternatively, you can get the development version from github

git clone https://github.com/frostidaho/python-dbusnotify.git
pip install --user ./python-dbusnotify