2
votes
How can I perform a HEAD request with the mechanize library?
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_me …
