diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-14 04:13:17 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-17 12:37:54 -0400 |
commit | ba133b7cb37b63dcb61bae6e59156a873885e480 (patch) | |
tree | a532b0bedb162ffdd8bf06e7f7c44f4acec5b950 /python/easygui | |
parent | 48b12dab1d1ffdb0473f42725c0338cb40d753fa (diff) |
python/easygui: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'python/easygui')
-rw-r--r-- | python/easygui/README | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/python/easygui/README b/python/easygui/README index b3192eb373b2..ff3b5eac479e 100644 --- a/python/easygui/README +++ b/python/easygui/README @@ -1,15 +1,16 @@ -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 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. +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. |