Re: user interface for python

2005-02-24 Thread Peter Hansen
Mike Meyer wrote: "There are no portable programs, only ported programs." -- John Gilmore (?) This doesn't really ring true, unless one insists on defining "portable" to include the idea of "universally". I've got dozens of Python utilities that run equally well on my Linux machines and my W

Re: user interface for python

2005-02-23 Thread Mike Meyer
Scott David Daniels <[EMAIL PROTECTED]> writes: > Thomas Guettler wrote: > You can write portable programs (if you test across platforms). The > only truly portable programs in any language are abstract. Once you > start dealing with I/O and the real world, you inevitably have to face > issues

Re: user interface for python

2005-02-23 Thread Fuzzyman
Yeah.. Tkinter is nice. Wzx is just as easy though, but scales better because it's built on wx. Regards, Fuzzy http://www.voidsapce.org.uk/python/index.shtml -- http://mail.python.org/mailman/listinfo/python-list

Re: user interface for python

2005-02-23 Thread Scott David Daniels
Thomas Guettler wrote: Am Tue, 22 Feb 2005 20:09:50 -0800 schrieb Raghul: Which of the UI I can used for my program that I can use both in windows and in Linux. Several. Tkinter and wxPython are good choices -- they run on the three major platforms: Linux/unix, Windows, and Mac OS X. > I like py

Re: user interface for python

2005-02-23 Thread Thomas Guettler
Am Tue, 22 Feb 2005 20:09:50 -0800 schrieb Raghul: > Hi, >Which of the UI I can used for my program that I can use both in > windows and in Linux. Is it possible for me to use Wxpython for my > program so that it can run on both the windows and linux machine? Will > it be platform independent?

Re: user interface for python

2005-02-23 Thread Harlin Seritt
Tkinter! Ease* Well-documented? Easy to Learn? Functionality * Can I get it to do what I need it to do? Looks *** Does it look good? Well, beauty is after all in the eye of the beholder. Anything I can get to work on either platform with minimum effort

Re: user interface for python

2005-02-23 Thread Fuzzyman
wax is a nice layer on top of wx - it maintains cross-platform-ability and is easier to learn ! See http://zephyrfalcon.org Regards, Fuzzy http://www.voidspace.org.uk/python/index.shtml -- http://mail.python.org/mailman/listinfo/python-list

Re: user interface for python

2005-02-22 Thread helmi03
Yes, wxpython is cross-platform. I also suggest pygtk for another toolkit. -- http://mail.python.org/mailman/listinfo/python-list

user interface for python

2005-02-22 Thread Raghul
Hi, Which of the UI I can used for my program that I can use both in windows and in Linux. Is it possible for me to use Wxpython for my program so that it can run on both the windows and linux machine? Will it be platform independent? -- http://mail.python.org/mailman/listinfo/python-list