import os
import subprocess
def show_notification(title, text):
os.system("""
osascript -e 'display notification "{}" with title "{}"'
""".format(text, title))
def show_notification_2(title, text):
cmd = 'display notification \"' + \
text + '\" with title \"' + title + '\"'
subprocess.call(["osascript", "-e", cmd])
show_notification("Title", "notification")
这里是引用