Re: Fwd: Re: How to upgrade python from 2.4.3 to 2.4.4 ?

2006-10-21 Thread casevh
> > The link for pexports-0.42h.zip is broken so I cant > test it on an extension. > pexports is only needed for Python 2.3. It is not required for 2.4 or 2.5. casevh -- http://mail.python.org/mailman/listinfo/python-list

question: script to input data into a web page and then retrieve the result?

2006-10-21 Thread mxywp
-- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter--does anyone use it for sophisticated GUI development?

2006-10-21 Thread sanxiyn
> Does anyone use it for sophisticated GUI development? I have seen a very sophisticated admin tool written in Tkinter, coming from SAP. So apparently SAP does. Seo Sanghyeon -- http://mail.python.org/mailman/listinfo/python-list

Speed comparison of Numeric, numarray, numpy

2006-10-21 Thread robert
just a note - some speed comparisons : >>> timeit.Timer('x=a-a*.1','import >>> Numeric;a=Numeric.ones(300,Numeric.Float)').timeit(1) 0.60627370238398726 >>> timeit.Timer('x=a-a*.1','import >>> numarray;a=numarray.ones(300,numarray.Float)').timeit(1) 0.42836673376223189 >>> timeit.Timer('

question: script to input data into a web page and then retrieve the result?

2006-10-21 Thread mxywp
 Hi,Could someone help me with this or share an example script with me?Here is what I want to accomplish:(1) input 3 values into 3 boxes on a web page(2) there is an authentication code each time you access this page and I have to write this code into the fourth box on the same page(3) click "submi

Re: question: script to input data into a web page and then retrieve the result?

2006-10-21 Thread Paul Rubin
"mxywp" <[EMAIL PROTECTED]> writes: > I would really appreciate it if someone can tell me how to do it > using python script. I am new to python web programming. Look at the docs for the urllib module. Also, arrange for some alternative API on the web side, if possible. What you're trying to do

question: script to input data into a webpage and then retrieve the result?

2006-10-21 Thread mxywp
Could someone help me with this or share an example script with me?Here is what I want to accomplish:(1) input 3 values into 3 boxes on a web page(2) there is an authentication code each time you access this page and I have to write this code into the fourth box on the same page(3) click "su

<    1   2