ANN: xdialog 0.3 released

NAME: xdialog.py - Wrapper classes for the Xdialog program SYNOPSIS: import xdialog DESCRIPTION: This module eases the use of the dialogs provided by the Xdialog program with Python. It wraps every dialog in a python class, that hides the details of calling Xdialog and getting the return status and possibly output. USAGE: import xdialog box = xdialog.YesNo("Do you really want to shoot your computer now?", title="Confirm kill") stat, out = box.show() if stat == 0: print "Bang!" elif stat == 1: print "I'll have mercy on you, for now!" else: print "Someone closed the box, you lucky bastard!" See the source, examples and/or the docs for Xdialog for available dialogs and options. HOMEPAGE: You can get information about xdialog and other software on: <http://www.chrisarndt.de/software/python/> DOWNLOAD: Get your copy at: <http://www.chrisarndt.de/software/python/download/xdialog-0.3.tar.bz2> AUTHOR: Christopher Arndt <chris.arndt@web.de> NOTES/WHAT'S NEW: - more dialog boxes - example scripts included - more docstrings - many bugfixes -- ... cause we all have wings, but some of us don't know why! (INXS) Christopher Arndt [t] +49 173-9542751 system administration [w] www.chrisarndt.de & linux training [e] chris.arndt@web.de
participants (1)
-
Christopher Arndt