Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-24 Thread CM
On Apr 22, 9:11 am, srinivasan srinivas sri_anna...@yahoo.co.in
wrote:
 Hi,
 Could you suggest me some modules in Python which can be used to develop GUI 
 based applications? and tell me which could be the best(in terms of 
 efficiency) one for a small GUI based application development?

 Thanks,
 Srini

       Bollywood news, movie reviews, film trailers and more! Go 
 tohttp://in.movies.yahoo.com/

For browser-based stuff--that is, web apps--as far as I know the only
options for Python-based web app GUI is Pyjamas, a python-to-
javascript
compiler and a web widget set, which would allow the GUI to be
written
in Python but then it translates it to javascript:
http://code.google.com/p/pyjamas/
And then you could use one of the aforementioned Python web
frameworks.


--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-23 Thread Peter Decker
On Wed, Apr 22, 2009 at 12:40 PM, John Fabiani jfabi...@yolo.com wrote:

 You might consider Dabo (www.dabodev.com) if access to data is required.

You might also consider it if you like a simple, Pythonic UI. I don't
work with databases, and I love Dabo for creating lots of utilities
for interfacing with, say, text processing scripts, data analysis, or
displaying the results of various web services.

-- 

# p.d.
--
http://mail.python.org/mailman/listinfo/python-list


What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread srinivasan srinivas

Hi,
Could you suggest me some modules in Python which can be used to develop GUI 
based applications? and tell me which could be the best(in terms of 
efficiency) one for a small GUI based application development?

Thanks,
Srini


  Bollywood news, movie reviews, film trailers and more! Go to 
http://in.movies.yahoo.com/
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread Mike Driscoll
On Apr 22, 8:11 am, srinivasan srinivas sri_anna...@yahoo.co.in
wrote:
 Hi,
 Could you suggest me some modules in Python which can be used to develop GUI 
 based applications? and tell me which could be the best(in terms of 
 efficiency) one for a small GUI based application development?

 Thanks,
 Srini


See the Python Wiki: http://wiki.python.org/moin/GuiProgramming

Python comes with Tkinter, which is good for simple programs and some
of the people on this list use it for very complicated programs. I
like wxPython. There are many others as well. It really depends on
what you want to do and whether or not you need special widgets.

- Mike
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread srinivasan srinivas

Thanks for the info.
My requirement is to write an application which is GUI based has to run on 
browsers. Could you tell me which one would be suitable for this?



- Original Message 
From: Mike Driscoll kyoso...@gmail.com
To: python-list@python.org
Sent: Wednesday, 22 April, 2009 7:51:33 PM
Subject: Re: What is the best framework or module in Python for a small GUI 
based application development?

On Apr 22, 8:11 am, srinivasan srinivas sri_anna...@yahoo.co.in
wrote:
 Hi,
 Could you suggest me some modules in Python which can be used to develop GUI 
 based applications? and tell me which could be the best(in terms of 
 efficiency) one for a small GUI based application development?

 Thanks,
 Srini


See the Python Wiki: http://wiki.python.org/moin/GuiProgramming

Python comes with Tkinter, which is good for simple programs and some
of the people on this list use it for very complicated programs. I
like wxPython. There are many others as well. It really depends on
what you want to do and whether or not you need special widgets.

- Mike
--
http://mail.python.org/mailman/listinfo/python-list



  Now surf faster and smarter ! Check out the new Firefox 3 - Yahoo! 
Edition http://downloads.yahoo.com/in/firefox/
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread Diez B. Roggisch
srinivasan srinivas wrote:

 
 Thanks for the info.
 My requirement is to write an application which is GUI based has to run on
 browsers. Could you tell me which one would be suitable for this?

There is no GUI-framework on browsers. There is HTML/CSS + JS, which is
produced by servers that can be implemented from raw CGI to the ZOPE
apps-server. Google for python web frameworks.

Diez
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread Tim Chase

My requirement is to write an application which is GUI based
has to run on browsers. Could you tell me which one would be
suitable for this?


These are generally 2 different things:  either you're writing a 
local GUI rich-client (in which case, use the GuiProgramming wiki 
link Mike sent), or you're doing web development targeting 
browsers in which case you should investigate the myriad web 
programming frameworks for Python (Django, Turbogears, CheryPy, 
web.py, webstack, etc).


There's a third type of application that I abhor, usually 
developed in Flash/Silverblight/JavaFX that runs within a 
web-browser, but allows for richer interactions/rendering than 
your average web-page.  However, I don't know of any python 
tie-ins for any of these environments.


There's also a blurred line if you embed a web-browser in a local 
GUI application.


-tkc




--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread Mike Driscoll
On Apr 22, 10:51 am, Tim Chase python.l...@tim.thechases.com wrote:
  My requirement is to write an application which is GUI based
  has to run on browsers. Could you tell me which one would be
  suitable for this?

 These are generally 2 different things:  either you're writing a
 local GUI rich-client (in which case, use the GuiProgramming wiki
 link Mike sent), or you're doing web development targeting
 browsers in which case you should investigate the myriad web
 programming frameworks for Python (Django, Turbogears, CheryPy,
 web.py, webstack, etc).

 There's a third type of application that I abhor, usually
 developed in Flash/Silverblight/JavaFX that runs within a
 web-browser, but allows for richer interactions/rendering than
 your average web-page.  However, I don't know of any python
 tie-ins for any of these environments.

 There's also a blurred line if you embed a web-browser in a local
 GUI application.

 -tkc

Technically speaking, Silverlight can be run with IronPython...which
works on Windows and Linux (through Mono), but not Mac (as far as I
know).

Mike
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread John Fabiani
srinivasan srinivas wrote:

 
 Hi,
 Could you suggest me some modules in Python which can be used to develop
 GUI based applications? and tell me which could be the best(in terms of
 efficiency) one for a small GUI based application development?
 
 Thanks,
 Srini
 
 
   Bollywood news, movie reviews, film trailers and more! Go to
   http://in.movies.yahoo.com/

You might consider Dabo (www.dabodev.com) if access to data is required.
John
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread Benjamin Kaplan
On Wed, Apr 22, 2009 at 12:13 PM, Mike Driscoll kyoso...@gmail.com wrote:

 On Apr 22, 10:51 am, Tim Chase python.l...@tim.thechases.com wrote:
   My requirement is to write an application which is GUI based
   has to run on browsers. Could you tell me which one would be
   suitable for this?
 
  These are generally 2 different things:  either you're writing a
  local GUI rich-client (in which case, use the GuiProgramming wiki
  link Mike sent), or you're doing web development targeting
  browsers in which case you should investigate the myriad web
  programming frameworks for Python (Django, Turbogears, CheryPy,
  web.py, webstack, etc).
 
  There's a third type of application that I abhor, usually
  developed in Flash/Silverblight/JavaFX that runs within a
  web-browser, but allows for richer interactions/rendering than
  your average web-page.  However, I don't know of any python
  tie-ins for any of these environments.
 
  There's also a blurred line if you embed a web-browser in a local
  GUI application.
 
  -tkc

 Technically speaking, Silverlight can be run with IronPython...which
 works on Windows and Linux (through Mono), but not Mac (as far as I
 know).


Mono is also available for Mac. I don't know if Moonlight works (no reason
it shouldn't but you'll probably have to use an X11 web browser) and I don't
know if Mono works with the Mac Silverlight, but IronPython runs fine.
--
http://mail.python.org/mailman/listinfo/python-list


Re: What is the best framework or module in Python for a small GUI based application development?

2009-04-22 Thread alex23
On Apr 23, 2:13 am, Mike Driscoll kyoso...@gmail.com wrote:
 Technically speaking, Silverlight can be run with IronPython...which
 works on Windows and Linux (through Mono), but not Mac (as far as I
 know).

It looks like MS provide a Mac version as well:
http://www.apple.com/downloads/macosx/development_tools/silverlight.html
--
http://mail.python.org/mailman/listinfo/python-list