How do I make a HTTP HEAD request using the requests library?
You use the head() function:
head()
r = requests.head(INSERT_URL_HERE)