Как создать всплывающее сообщение в системном трее с возможностью открытия или нет в Python? (Windows)
import os
import sys
import time
import webbrowser
from win10toast import ToastNotifier
[enter image description here][1]toaster = ToastNotifier()
toaster.show_toast("Hello Buddy!!!",
"Learn Something new Today!!",
icon_path = os.getcwd() + "/icon.ico",
duration=10)
toaster.show_toast("Hey!!",
"Did you finish the python lessons today ?",
icon_path = os.getcwd() + "/icon1.ico",
duration=5,
threaded=True)
while toaster.notification_active(): time.sleep(10)
toaster.show_toast("Are you Serious ?",
"Atleast, Complete one topic for today",
webbrowser.open("https://www.tutorialspoint.com"),
duration=5,
threaded=True)
Я хотел бы добавить функциональность подсказок, чтобы пользователь мог выбрать, хочет ли он посещать веб-сайт или нет. В том же уведомлении в windows10 - я смог создать основные всплывающие окна с иконками