Get your own Python server Result Size: 625 x 565
x
 
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': 'Tue Feb 25 2025 03:00:22 GMT+0000 (Coordinated Universal Time)', 'Server': 'Microsoft-IIS/7.5', 'Vary': 'Accept-Encoding', 'X-Frame-Options': 'SAMEORIGIN', 'X-Powered-By': 'PHP/5-4-2. ASP.NET', 'Content-Length': '0'}