summaryrefslogtreecommitdiffstats
path: root/python/easygui/README
diff options
context:
space:
mode:
author LukenShiro2013-11-11 16:13:41 +0100
committer Robby Workman2013-11-11 17:53:36 +0100
commit20694bc24300f847a8b3ab39b5ae7d85b44a89bf (patch)
treee06de7ae9e5e694f8dd31eafff4870de669c5e6e /python/easygui/README
parent8a720b7565ebb622a1c75889a9266eb31f3f1305 (diff)
downloadslackbuilds-20694bc24300f847a8b3ab39b5ae7d85b44a89bf.tar.gz
python/easygui: Moved from Development
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'python/easygui/README')
-rw-r--r--python/easygui/README15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/easygui/README b/python/easygui/README
new file mode 100644
index 0000000000..b3192eb373
--- /dev/null
+++ b/python/easygui/README
@@ -0,0 +1,15 @@
+easygui is a module for very simple, very easy GUI programming in Python.
+Experienced Pythonistas need support for quick and dirty GUI features.
+New Python programmers need GUI capabilities that don't require any
+knowledge of Tkinter, frames, widgets, callbacks or lambda. This is
+what easygui provides. Using it, all GUI interactions are invoked
+by simple function calls.
+
+easygui is different from other GUIs in that it is NOT event-driven.
+It allows you to program in a traditional linear fashion, and to put up
+dialogs for simple input and output when you need to do so. If you have
+not yet learned the event-driven paradigm for GUI programming, easygui will
+allow you to be productive with very basic tasks immediately. If you later
+wish to make the transition to an event-driven GUI paradigm, you can move
+to an event-driven style with a more powerful GUI package such as anygui,
+PythonCard, Tkinter, wxPython, etcetera.