-
Notifications
You must be signed in to change notification settings - Fork 26
Home
Mustafa edited this page Jul 14, 2020
·
2 revisions
notify.py is a small python module for sending native cross-platform notifications. The only dependency required is loguru.
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.
pip install notify-py