2014-05-31 12:17:58 +00:00
|
|
|
from http.client import HTTPConnection
|
|
|
|
|
|
|
|
|
|
|
|
conn = HTTPConnection("localhost")
|
2014-06-07 19:21:44 +00:00
|
|
|
#conn = HTTPConnection("python.org")
|
2014-05-31 12:17:58 +00:00
|
|
|
conn.request("GET", "/")
|
|
|
|
resp = conn.getresponse()
|
|
|
|
print(resp)
|
|
|
|
print(resp.read())
|