Überprüfen Sie das Betriebssystem, das das Skript ausführt, mit "platform.system ()" und werfen Sie "osascript -e'display Benachrichtigung" hoge "" in die Shell. Für macOS wird "platform.system ()" durch "Darwin" ersetzt.
python
import os,platform
def main():
if platform.system() == 'Darwin':
os.system("osascript -e 'display notification \"Dies ist ein Mac\"'")
if __name__ == '__main__':
main()
Verweise:
Recommended Posts