I've had a good experience with Pygtk. I made a small app called
"Protein Think" that monitors a [EMAIL PROTECTED] client. The front end is
extremely simple - basically a notebook with five small pages. It runs
well and was a breeze to create. Looks much better than Tkinter, if
that matters at all
makes me wonder how useable pygui is now...
I made the mistake of using wxpython a while back... having something
that runs perfectly in windows, and *sorta* works in other platforms
hardly counts as cross platform, imho. And they wonder why tkinter is
shipped with python while wxpython is not...
JyotiC wrote:
> Thanx for the help.
>
> Does all gui's take time to load.
> is there a way to dec this time.
Have you tried loading a Java GUI app through launching the Java
Virtual Machine? That's pretty slow too. And that's a bytecode compiled
medium. Unfortunately most interpreted programming
Thanx for the help.
Does all gui's take time to load.
is there a way to dec this time.
--
http://mail.python.org/mailman/listinfo/python-list
"Ravi Teja" <[EMAIL PROTECTED]> writes:
> A highly unscientific measurement, using execution time from SciTe on
> my 3.5 yr old box.
>
> Python startup - 0.272 sec
> With your snippet for Tk - 0.402 sec
What OS? Try rebooting the box (to clear cache) and measuring again?
--
http://mail.python.o
Not from here.
A highly unscientific measurement, using execution time from SciTe on
my 3.5 yr old box.
Python startup - 0.272 sec
With your snippet for Tk - 0.402 sec
0.13 sec is trivial in my book.
--
http://mail.python.org/mailman/listinfo/python-list
"Ravi Teja" <[EMAIL PROTECTED]> writes:
> Speed is not the main concern. You won't notice any speed differences
> in a small application like that.
That's wishful thinking--even a totally trivial tkinter program has
noticable startup delay:
>>> from Tkinter import *
>>> a=Tk()
takes seve
JyotiC wrote:
> I want to make a stand alone gui. Whose work is to get the diff options
> from user and run a shell script based on them.
>
> I wanna know which one is better to use Tkinter or PyGTK, in terms of
> efficiency and functionality.
>
> I hv read about Tkinter, but it takes too much ti
I want to make a stand alone gui. Whose work is to get the diff options
from user and run a shell script based on them.
I wanna know which one is better to use Tkinter or PyGTK, in terms of
efficiency and functionality.
I hv read about Tkinter, but it takes too much time to load, is there
a way