Okay so I am making a script that gives you a notification in windows 10 IF you access a certain site.
So an example: You go to the site like: twitter.com, then the Python script will detect that and it will run the other script (notification script).
This is the notification script:
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)