Python 3 library for easy managing desktop dialog boxes
Currently there is only kdialog implementation, but zenity is also in the scope
- Python 3.x for any desktop
- kdesu for plasma desktop
- gksu for gtk-based desktop (gnome, ubuntu...)
The simplest usage is letting pyalog to guess which dialog tool should be used:
from pyalog import pyalog
pyalog.msgbox('hello world')
You may, however, force the tool to be used by using the pyalog_set method:
from pyalog import pyalog
from pyalog import pyalog_set
...
pyalog = pyalog_set('zenity')
pyalog.msgbox('hello world')