I'm trying to understand the differences between Notify (python wrapper) and pynotify. For example :
from gi.repository import Notify
and
import pynotify
The code to create a notification looks similar but it seems that I can't import pynotify using python3.3. By the way I can't find a way to create buttons with signal handlers using Notify. Is there a way I can import pynotify in Python3.3 or create buttons with Notify ?
And what is the difference between those two modules ?
I have been searching on internet but it seems that I'm not skilled enough with google u_u
Thanks in advance.