So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for example. Thus, I need to figure out how to send a HEAD request so that I can read the mime-type without having to download the content. Does anyone know of an easy way of doing this?
|
4
|
|
|
|
|
|
Use httplib.
There's also a |
||||
|
|
|
Probably easier: use urllib or urllib2.
f.info() is a dictionary-like object, so you can do f.info()['content-type'], etc. http://docs.python.org/library/urllib.html The docs note that httplib is not normally used directly. |
||||
|
|
|
As an aside, when using the httplib (at least on 2.5.2), trying to read the response of a HEAD request will block (on readline) and subsequently fail. If you do not issue read on the response, you are unable to send another request on the connection, you will need to open a new one. Or accept a long delay between requests. |
||
|
|
