Does urllib2 fetch the whole page when a urlopen call is made?
urllib2
urlopen
I\'d like to just read the HTTP response header without getting the page.
urllib2.urlopen does an HTTP GET (or POST if you supply a data argument), not an HTTP HEAD (if it did the latter, you couldn't do readlines or other accesses to the page body, of course).