In [2]: import urllib
In [3]: s = urllib.urlopen("http://www.imekaku.com")
In [4]: help(s)
Help on instance of addinfourl in module urllib:
class addinfourl(addbase)
| class to add info() and geturl() methods to an open file.
|
| Methods defined here:
|
| __init__(self, fp, headers, url, code=None)
|
| getcode(self)
|
| geturl(self)
|
| info(self)
|
| ----------------------------------------------------------------------
| Methods inherited from addbase:
|
| __repr__(self)
|
| close(self)
In [5]: msg = s.info()
# msg是一个HTTPMessage对象
In [6]: help(msg)
Help on instance of HTTPMessage in module httplib:
class HTTPMessage(mimetools.Message)
| Method resolution order:
| HTTPMessage
| mimetools.Message
| rfc822.Message
|
| Methods defined here:
|
| addcontinue(self, key, more)
| Add more field data from a continuation line.
|
| addheader(self, key, value)
| Add header for field key handling repeats.
|
| readheaders(self)
| Read header lines.
|
| Read header lines up to the entirely blank line that terminates them.
| The (normally blank) line that ends the headers is skipped, but not
| included in the returned list. If a non-header line ends the headers,
| (which is an error), an attempt is made to backspace over it; it is
| never included in the returned list.
|
| The variable self.status is set to the empty string if all went well,
| otherwise it is an error message. The variable self.headers is a
| completely uninterpreted list of lines contained in the header (so
| printing them will reproduce the header exactly as it appears in the
| file).
: