Created
December 8, 2020 14:07
-
-
Save Abhayparashar31/3896bc7ef169f623083ea02d9e97cf6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from win10toast import ToastNotifier | |
toaster = ToastNotifier() | |
header = 'Medium Article' | |
text = 'Its the correct time to start writing your article' | |
toaster.show_toast(f"{header}",f"{text}",duration=10,threaded=True) | |
while toaster.notification_active(): time.sleep(0.005) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment