vote up 0 vote down star

I know how to do a HEAD request with httplib, but I have to use mechanize for this site.

Essentially, what I need to do is grab a value from the header (filename) without actually downloading the file.

Any suggestions how I could accomplish this?

flag

68% accept rate

2 Answers

vote up 2 vote down check

Mechanize itself only sends GETs and POSTs, but you can easily extend the Request class to send HEAD. Example:

import mechanize

class HeadRequest(mechanize.Request):
    def get_method(self):
        return "HEAD"

request = HeadRequest("http://www.example.com/")
response = mechanize.urlopen(request)

print response.info()
link|flag
how would i use this from an instance of mechanize.Browser? – Jeremy Michael Cantrell Sep 26 '08 at 3:49
mechanize.Browser().open(request) – Vinko Vrsalovic Sep 26 '08 at 3:59
ahhh, the docs are a bit misleading. it shows open() as taking a url. i wasn't aware that it would take a request object. – Jeremy Michael Cantrell Sep 26 '08 at 4:07
vote up 0 vote down

to Michał Kwiatkowski : no need to rewrite init function ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.