#! -*- coding: utf-8 -*- # pynotify部分 import pynotify class PyNotify(): def __init__(self): pynotify.init("crochet") def Notify(self,title,desc,img): n = pynotify.Notification(title,desc) n.show()