Notification push à l'aide de Python

toaster = ToastNotifier()
toaster.show_toast("Weather Information",
    f"{information}",
    duration=10,
    threaded=True)
    while toaster.notification_active(): time.sleep(0.005)
Harendra