Re: [Tutor] RE: HTTPLib and POST problem ["100 continue" problemredux?]

2002-01-14 Thread Danny Yoo
> The same is true about PERL( LWP module). Does it mean PERL is > better?? > > And as an example you can check > http://www.globaltradeweb.com/default.asp?w=fbjm > > You will not be probably post successfully if you send > form like > /cgi-bin/script.cgi As soon as I heard the word "PERL"

Re: [Tutor] How to update file?

2002-01-14 Thread Danny Yoo
On Fri, 11 Jan 2002, A wrote: > I need to update a local file from a web server if the file on this > web server is newer then that on my local hard disk. Do you have any > idea how it can be done? I'm not sure if one can get a guaranteed 'last-modified' time of a web page. I did a quick search

Re: [Tutor] DNS module or how to ... ?

2001-10-31 Thread Danny Yoo
On Mon, 8 Oct 2001, A wrote: > Is there a DNS module available for Python ? There are a few resources you can use if you're looking for Python modules. One of the best ones is the Vaults of Parnassus: http://www.vex.net/parnassus/ which collects links for a bunch of stuff. http://www

Re: [Tutor] How can I access a variable outside a class definition?

2001-09-30 Thread Danny Yoo
On Sat, 29 Sep 2001, A wrote: > How can I access a variable defined in one class outside this class ? > For example > > I have two classes like below > > # > class Complex: > def __init__(self, realpart1,imagpart1,realpart2,imagpart2): >self.r1 = realpart1 >