Documentation for Notify.py


Notify.py

notify.py is a small python module for sending native cross-platform notifications. The only dependency required is loguru.


Getting started

from notifypy import Notify

notification = Notify()
notification.title = "Cool Title"
notification.message = "Even cooler message."

notification.send()

That's it. This will send a desktop notification on the respected user platform.


Installation

pip install notify-py