Skip to content

devopsysadmin/pyalog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pyalog

Python 3 library for easy managing desktop dialog boxes

Currently there is only kdialog implementation, but zenity is also in the scope

Requirements

  • Python 3.x for any desktop
  • kdesu for plasma desktop
  • gksu for gtk-based desktop (gnome, ubuntu...)

Usage

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')

About

python 3 library for easy managing kdialog features

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages