Open EceSenaEtoglu opened 1 year ago
Try doing:
pip uninstall notify-py
then
pip install notify_py
and then see if it works.
If not, then try this for the code:
from notifypy import notification
notification = notification.Notify()
notification.title = "Cool Title"
notification.message = "Even cooler message."
notification.send()
I typed pip install notify-py and ran the following code :
from notifypy import Notify
notification = Notify() notification.title = "Cool Title" notification.message = "Even cooler message." notification.send()
My IDE (Pycharm) gave package error (cannot write exactly but something like this) "cannot find package notifypy" I clicked install package option the IDE suggested, after that I got the error "Cannot find reference 'Notify' in 'init.py"