twblue/src/notifier/windows.py

7 lines
140 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import wx
class notification(object):
def notify(self, title, text):
wx.NotificationMessage(title, text).Show()