Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import requests #the required first parameter of the 'head' method is the 'url': x = requests.head('https://www.w3schools.com/python/demopage.php') #print the response headers (the HTTP headers of the requested file): print(x.headers)
{'Content-Encoding': 'gzip', 'Cache-Control': 'public', 'Content-Type': 'text/html', 'Date': '', 'Server': 'Microsoft-IIS/7.5', 'Vary': 'Accept-Encoding', 'X-Frame-Options': 'SAMEORIGIN', 'X-Powered-By': 'PHP/5-4-2. ASP.NET', 'Content-Length': '0'}