Re: urllib (54, 'Connection reset by peer') error



It means your client received a TCP segment with the reset bit sent.
The 'peer' will toss one your way if it determines that a connection
is no longer valid or if it receives a bad sequence number. If I had
to hazard a guess, I'd say it's probably a network device on the
server side trying to stop you from running a mass download
(especially if it's easily repeatable and happens at about the same
byte range).

-Jeff




On Fri, Jun 13, 2008 at 10:21 AM, <chrispoliquin@xxxxxxxxx> wrote:
Hi,

I have a small Python script to fetch some pages from the internet.
There are a lot of pages and I am looping through them and then
downloading the page using urlretrieve() in the urllib module.

The problem is that after 110 pages or so the script sort of hangs and
then I get the following traceback:


Traceback (most recent call last):
File "volume_archiver.py", line 21, in <module>
urllib.urlretrieve(remotefile,localfile)
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib.py", line 89, in urlretrieve
return _urlopener.retrieve(url, filename, reporthook, data)
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib.py", line 222, in retrieve
fp = self.open(url, data)
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib.py", line 190, in open
return getattr(self, name)(url)
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/urllib.py", line 328, in open_http
errcode, errmsg, headers = h.getreply()
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/httplib.py", line 1195, in getreply
response = self._conn.getresponse()
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/httplib.py", line 924, in getresponse
response.begin()
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/httplib.py", line 385, in begin
version, status, reason = self._read_status()
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/httplib.py", line 343, in _read_status
line = self.fp.readline()
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/socket.py", line 331, in readline
data = recv(1)
IOError: [Errno socket error] (54, 'Connection reset by peer')


My script code is as follows:
-----------------------------------------
import os
import urllib

volume_number = 149 # The volumes number 150 to 544

while volume_number < 544:
volume_number = volume_number + 1
localfile = '/Users/Chris/Desktop/Decisions/' + str(volume_number) +
'.html'
remotefile = 'http://caselaw.lp.findlaw.com/scripts/getcase.pl?
court=us&navby=vol&vol=' + str(volume_number)
print 'Getting volume number:', volume_number
urllib.urlretrieve(remotefile,localfile)

print 'Download complete.'
-----------------------------------------

Once I get the error once running the script again doesn't do much
good. It usually gets two or three pages and then hangs again.

What is causing this?






--
http://mail.python.org/mailman/listinfo/python-list

.



Relevant Pages

  • Re: Read Fail -104 -Connection reset by peer.
    ... Read Fail -104 -Connection reset by peer. ... It should not be request per connection, as it will create too man ...
    (comp.unix.programmer)
  • Socket programming muddle
    ... The script waits, during execution, and after a while, it prints: ... I am pretty sure I screwed up setting up the peer connection. ... the socket connection set up, they didnt differ from mine alot. ...
    (comp.lang.perl.misc)
  • Re: How do you get ECONNRESET on recv?
    ... I take this to mean that, assuming a TCP connection, if a ... The TCP answers with RESET when you try to send some data to peer that ... Normally, if the peer closes connection, recv returns 0 without any ... you should get RESET. ...
    (comp.unix.programmer)
  • Re: Checking whether a socket has been closed by the peer
    ... > return undef if the socket isn't connected. ... > when the peer has closed the connection. ... When you run the script below ... the peer close is indicated by returning an EOF condition. ...
    (comp.lang.perl.misc)
  • Re: Read Fail -104 -Connection reset by peer.
    ... Read Fail -104 -Connection reset by peer. ... connection really was reset by the peer, ...
    (comp.unix.programmer)