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