How to get HTTP response headers from URL with requests library in Python

1 Answer

0 votes
# pip install -U requests

import requests

url = 'https://www.allonpage.com/'
r = requests.get(url)

print(r.headers)


'''
run:
 
{'Alt-Svc': 'quic=":111"; ma=1000000; v="11,11,11"', 'Connection': 'close',
'X-Powered-By': 'PHP/5.4.45', 'Server': 'LiteSpeed', 'Link': '<https://www.allonpage.com>;
...

'''

 



answered Nov 19, 2018 by avibootz

Related questions

1 answer 229 views
1 answer 214 views
1 answer 201 views
1 answer 201 views
...