I am beginner in python. So i can't understand the problem. i am using plyer for notification system. But it's not working after converting .py to .exe using auto-py-to-exe or pyinstaller. It's only working in IDE. I want get notification after opening .exe file.
Please help me to solve this.
from plyer import notification
def notifyMe(title, message):
notification.notify(
title=title,
message=message,
app_icon=None,
timeout=15
)
notifyMe("Hey Habib!", "Good Morning")