Files
notification-client/notification_client/notitication.py
T

12 lines
245 B
Python

from notifypy import Notify
class Notification:
@staticmethod
def notify(title: str, message: str):
notification = Notify()
notification.title = title
notification.message = message
notification.send()