summaryrefslogtreecommitdiffstats
path: root/development/easygui/README
diff options
context:
space:
mode:
author LukenShiro <lukenshiro@ngi.it>2010-05-11 20:00:23 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-11 20:00:23 +0200
commit6503b265d62bb9198e16fb767a97c877ac070bda (patch)
tree2dd3b606519ef78a9aa7169e26c5c71d384cb694 /development/easygui/README
parente5e53d4c75f4df315bec8ff761a67dea1b002d98 (diff)
downloadslackbuilds-6503b265d62bb9198e16fb767a97c877ac070bda.tar.gz
slackbuilds-6503b265d62bb9198e16fb767a97c877ac070bda.tar.xz
development/easygui: Added to 12.0 repository
Diffstat (limited to 'development/easygui/README')
-rw-r--r--development/easygui/README17
1 files changed, 17 insertions, 0 deletions
diff --git a/development/easygui/README b/development/easygui/README
new file mode 100644
index 0000000000..535fac7ea5
--- /dev/null
+++ b/development/easygui/README
@@ -0,0 +1,17 @@
+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 EasyGUI, all GUI interactions are invoked
+by simple function calls.
+EasyGUI is different from other GUIs in that EasyGUI 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. 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. Later, if you 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, etc. EasyGui is there just to do very basic
+stuff. More elaborate stuff should be done with more powerful tools.
+EasyGUI is built on top of Tkinter.