Previously, in python 2.6, I had made a lot of use of urllib.urlopen to capture web page content and then later post process the data that I received. Now, those routines, and the new routines I am trying to use for python 3.2 are running into what seems to be a windows only (maybe even windows 7 only problem).

Using the following code with python 3.2.2 (64) on windows 7 ...

import urllib.request

fp = urllib.request.urlopen(URL_string_that_I_use)

string = fp.read()
fp.close()
print(string.decode("utf8"))

I get the following message:

Traceback (most recent call last):
  File "TATest.py", line 5, in <module>
    string = fp.read()
  File "d:\python32\lib\http\client.py", line 489, in read
    return self._read_chunked(amt)
  File "d:\python32\lib\http\client.py", line 553, in _read_chunked
    self._safe_read(2)      # toss the CRLF at the end of the chunk
  File "d:\python32\lib\http\client.py", line 592, in _safe_read
    raise IncompleteRead(b''.join(s), amt)
http.client.IncompleteRead: IncompleteRead(0 bytes read, 2 more expected)

Using the following code instead ...

import urllib.request

fp = urllib.request.urlopen(URL_string_that_I_use)
for Line in fp:
    print(Line.decode("utf8").rstrip('\n'))
fp.close()

I get a fair amount of the web page's content, but then the rest of the capture is thwarted by ...

Traceback (most recent call last):
  File "TATest.py", line 9, in <module>
    for Line in fp:
  File "d:\python32\lib\http\client.py", line 489, in read
    return self._read_chunked(amt)
  File "d:\python32\lib\http\client.py", line 545, in _read_chunked
    self._safe_read(2)  # toss the CRLF at the end of the chunk
  File "d:\python32\lib\http\client.py", line 592, in _safe_read
    raise IncompleteRead(b''.join(s), amt)
http.client.IncompleteRead: IncompleteRead(0 bytes read, 2 more expected)

Trying to read another page yields ...

Traceback (most recent call last):
  File "TATest.py", line 11, in <module>
    print(Line.decode("utf8").rstrip('\n'))
  File "d:\python32\lib\encodings\cp1252.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\x92' in position
21: character maps to <undefined>

I do believe this is a windows issue, but can python be made more robust to deal with what is causing it? When trying similar code (version 2.6 code) on Linux, we do not encounter the problem. Is there a way around this? I have also posted to the gmane.comp.python.devel newsgroup

link|improve this question
feedback

1 Answer

The use of CRLF here is the HTTP spec, not a Windows thing. It's expecting to read the '\r\n' bytes that terminate the chunk and instead getting an empty string, signalling either EOF or an interrupted connection.

As to the 2nd error, consider the following:

>>> s0 = "Â’" 
>>> s1 = s0.encode('cp1252'); s1
b'\xc2\x92'
>>> s2 = s1.decode('utf-8'); s2
'\x92'
>>> s2.encode('cp1252')
...
UnicodeEncodeError: 'charmap' codec can't encode character '\x92' in position 0:
 character maps to <undefined>

I don't know what the original encoding was for b'\xc2\x92' (maybe Windows 1252; try checking fp.info().get_charsets(), but the response header can be wrong). I suspect it's not the Unicode C1 control character 0x92, encoded in UTF-8. That would be pretty uncommon. If it is, you can't expect to print it to a console configured with a Windows 1252 code page, since Windows doesn't use the C1 control set. Microsoft chose to instead use the C1 codes to add some miscellaneous characters: €‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ.

link|improve this answer
Maybe it is not a Windows thing, but please allow me to explain why I thought it was and why I think that it still may be. When running the script above to the same server from a Linux operating system, we were able to collect the entire web page. We only tested the Linux on 2.6.4. The Windows 7 was tried with Python 2.6, 3.1, and 3.2. Also, you will see from velocityreviews.com/forums/… that this could possibly be dealt with at the Python development level. – Thom Ives Nov 16 '11 at 23:07
@Thom Ives: The linked patch to _read_chunked seems almost sensible to me. I don't see any reason to throw away everything because the connection terminated improperly. But instead I would close the socket and then raise IncompleteRead(''.join(value)). The caller shouldn't be kept in the dark. – eryksun Nov 17 '11 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.