Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 355 Bytes

File metadata and controls

18 lines (13 loc) · 355 Bytes

Python Projects: Pop Up Notification 🐍

Python Script
This repo contains python code that sends you a notification on your computer.
Run the code.

Python

import win10toast
import time


pop = win10toast.ToastNotifier()
pop.show_toast("Notification","Alert!!! Virus Found")

while pop.notification_active():
    time.sleep(1)