Python library to display Windows 10 Toast Notifications
Last updated Jul 3, 2026
995
Stars
166
Forks
75
Issues
+1
Stars/day
Attention Score
41
Language breakdown
No language data available.
โธ Files
click to expand
README
Windows 10 Toast Notifications
An easy-to-use Python library for displaying Windows 10 Toast Notifications which is useful for Windows GUI development.

Installation
pip install win10toast
Requirements
Installation of pywin32
pypiwin32
setuptools
Example
from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("Hello World!!!",
"Python is 10 seconds awsm!",
ic,
duration=10)
toaster.show_toast("Example two", "This notification is in it's own thread!", icon_path=None, duration=5, threaded=True)
Wait for threaded notification to finish
while toaster.notification_active(): time.sleep(0.1)
Contributors 
License
๐ More in this category