好的,我正在编写一个脚本,如果您访问某个站点,它会在Windows 10中通知您。
所以一个例子:你去网站就像:twitter.com,然后Python脚本会检测到它,它将运行另一个脚本(通知脚本)。
这是通知脚本:
import time
from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("Distracting",
"You are now going on a disstracting site.",
icon_path=None,
duration=5,
threaded=True)