If you want a simple, lightweight GUI framework without complex event handling routines, and you rate yourself from Python newbie-rookie-intermediate, I suggest easygui.
http://easygui.sourceforge.net/ Easygui uses simple functions instead of typical event-driven model of UIs. I have not used it myself but I have read good things about it from people who have. It is a good option if what you are doing is a quick n dirty internal project which will be used by you or your team. However for any "serious" application with an expected life of a year or more, I suggest the regular, event-driven frameworks. For me this would be wxPython, anygui, tkinter and PythonCard in that order. --Anand On Mon, Sep 22, 2008 at 10:23 AM, vibha srinivasan <[EMAIL PROTECTED]> wrote: > I would strongly recommend the open source Traits package and its > accompanying GUI toolkit packages, TraitsBackendWX (or TraitsBackendQt) > developed by Enthought, Inc. (the project home page is > http://code.enthought.com/projects/traits). > > The packages are available on pypi at: > > http://pypi.python.org/pypi/Traits/3.0.2 > http://pypi.python.org/pypi/TraitsBackendWX/3.0.2 > http://pypi.python.org/pypi/TraitsBackendQt/3.0.2 > > Besides providing a GUI framework (the GUI feature is optional actually), > the Traits project provides support for explicitly typed attributes for > Python. > > Disclaimer: I am an employee of Enthought, Inc. If you do try out this > package, we would really appreciate your feedback. > > best, > Vibha > > --- On Sun, 9/21/08, Vishal <[EMAIL PROTECTED]> wrote: > > From: Vishal <[EMAIL PROTECTED]> > Subject: [BangPypers] GUI framework in Python... > To: "Bangalore Python Users Group - India" <[email protected]> > Date: Sunday, September 21, 2008, 7:36 AM > > We would like to use a GUI framework with our Python code. > Any pointers by actual users of a GUI framework in Python. The web gives too > many options to easily choose from. > Just trying to learn from others from this group. > Thanks and best regards, > Vishal > > _______________________________________________ > BangPypers mailing list > [email protected] > http://mail.python.org/mailman/listinfo/bangpypers > > > _______________________________________________ > BangPypers mailing list > [email protected] > http://mail.python.org/mailman/listinfo/bangpypers > > -- -Anand _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
