Re: [Tutor] httplib exceptions

2007-08-09 Thread Bob Larsen
Both Systems are Linux, In fact both are REd Hat Based, The Web Server is Fedora (I'm Not sure which version that particular server is running) and my workstation is running CentOS 5. I am sure that both are running an ext3 file system. Of Course there isn't a "file" there is just the web pa

Re: [Tutor] httplib exceptions

2007-08-08 Thread Kent Johnson
Alan Gauld wrote: >> There is a python Bug: >> http://sourceforge.net/tracker/index.php?func=detail&aid=1486335&group_id=5470&atid=105470 >> >> that states this is caused by a missing EOF, and is "not a big

Re: [Tutor] httplib exceptions

2007-08-08 Thread Alan Gauld
"Bob Larsen" <[EMAIL PROTECTED]> wrote It won't help with your problem but... >try: >page = urllib2.urlopen(url) >soup= page.read() >reex = re.compile(regex) >test = re.findall(reex,soup) You could change this to

Re: [Tutor] httplib exceptions

2007-08-08 Thread Kent Johnson
Bob Larsen wrote: > I have written a script which checks all of my servers at predetermined > intervals. > > code: > > try: > page = urllib2.urlopen(url) > soup= page.read() > reex = re.compile(regex) > test = re.findal