simplenotifications

Cross-platform desktop notifications


Keywords
desktop, notifications
License
Other
Install
pip install simplenotifications==0.2.18

Documentation

simplenotifications

Works with GNU/Linux and Windows systems.

Warning

This package is NOT production ready. It has not undergone rigorous testing and may contain vulnerabilities. Do not use this package in production code.

Example usage:

    >>> from simplenotifications import notify
    >>> notify('title', 'message info', 10, 'icons/myfavoriteicon.jpg')
    # args: title, message, notification timeout, notification icon filepath

Putting it all together:

    >>> from simplenotifications import notify
    >>> notify(title='title',                        # required
               message='message info',               # optional
               duration=10,                          # optional
               icon_path='icons/myfavoriteicon.jpg') # optional

This project uses semantic versioning: https://semver.org/