SecureBlackbox Lite 2020 Python Edition

Questions / Feedback?

head Method

Sends a HEAD request to the server.

Syntax

def head(url: str) -> None: ...

Remarks

HEAD is very similar to GET, with the only difference being that only the headers (but not the content) is returned.

HEAD is often use to retrieve the parameters of the resource, such as its size and modification date. If the request is successful, those details will be available via response_parameters and response_headers properties. Otherwise, an exception will be thrown, and the error details published in status_code and reason_phrase properties.

Note that any parameters you intend to pass to this method should be properly encoded before this method is called.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox Lite 2020 Python Edition - Version 20.0 [Build 8166]