На python2 работает, а на python3 выдаёт такую ошибку:
Traceback (most recent call last): File "notify.py", line 6, in <module> pynotify.init() AttributeError: module 'pynotify' has no attribute 'init'
Код моей программы:
# -*- coding: utf-8 -*- import pynotify pynotify.init() n = pynotify.Notification("Title", "Some simple text") n.show()