Le module urllib II
urllib.urlopen renvoie un objet "file-like". Méthodes read(),
readline(), readlines(), fileno(), close(), et en plus
info(), geturl().
>>> f = urllib.urlopen(’http://igm.univ-mlv.fr/~jyt/python’)
>>> f.fileno()
7
>>> dir(f)
[’__doc__’, ’__init__’, ’__iter__’, ’__module__’, ’__repr__’,
’close’, ’fileno’, ’fp’, ’geturl’, ’headers’, ’info’,
’next’, ’read’, ’readline’, ’readlines’, ’url’]
>>> f.geturl()
’http://igm.univ-mlv.fr/~jyt/python/’
>>> list(f.headers)
[’content-length’, ’accept-ranges’, ’server’, ’last-modified’,
’connection’, ’etag’, ’date’, ’content-type’]