You can see here that an http response can either contain Content-Length or Transfer-Encoding: chunked.
However, when Transfer-Encoding: chunked is used in the header, after the headers, you'll get a hexadecimal string which if converted to decimal, will give you the length of the next chunk. And after the last chunk you'll get a 0 for this value which means you've reached the end of the file.
You can use regular expressions to get this hexadecimal value (not a must though)
read = #string containing a line or a part of the http response
hexPat = re.compile(r'([0-9A-F]+)\r\n', re.I)
match = re.search(hexPat, read)
chunkLen = int(match.group(1), 16) #converts hexadecimal to decimal
or You can just read the first hexadecimal value, get the length of the first chunk and receive that chunk, then get the length of the next chunk and so on till you find a 0