C
Christoph Söllner
Hi again,
my Source:
"""
import httplib
conn = httplib.HTTPConnection('www.python.org');
conn.request("GET", "/index.html");
answ = conn.getresponse();
print answ.status, answ.reasonconn.close();
print "Start";
And the header states a content length of 11kBytes. What am I doin wrong?
Thanks again,
Chris
my Source:
"""
import httplib
conn = httplib.HTTPConnection('www.python.org');
conn.request("GET", "/index.html");
answ = conn.getresponse();
print answ.status, answ.reasonconn.close();
print "Start";
And the header states a content length of 11kBytes. What am I doin wrong?
Thanks again,
Chris