head(path, data=None, follow=False, secure=False, **extra)
[source]
Makes a HEAD request on the provided path
and returns a Response
object. This method works just like Client.get()
, including the follow
, secure
and extra
arguments, except it does not return a message body.
Please login to continue.