Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Get HTTP Header ...
#1
How do I capture HTTP request headers and access their values, which native module do I use and how do I do it ?
Reply
#2
The example is based only on the standard library of Python.

from urllib.request import Request, urlopen
from urllib.error import HTTPError, URLError
# You can catch HTTPError and URLError


def get_header(url):
    header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:77.0) Gecko/20100101 Firefox/77.0"}
    request = Request(url, headers=header, method="HEAD")
    response = urlopen(request)
    if response.status == 200:
        return dict(response.headers)


get_header("https://python-forum.io/Thread-Get-HTTP-Header")
PS: User-Agent is often needed in Headers, because many web applications are checking if it's a real browser and not a bot.
The 3rd party requests module send some User-Agent string, which works in the most cases.
JohnnyCoffee likes this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply
#3
Thanks for the demonstration, I managed to do it as follows:

    # Function -> Main function that receives request web :
    def application(self, environ, start_response):

        # Function -> Get the type of content :
        v_cot = environ['CONTENT_TYPE']
Thanks.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Review my code: convert a HTTP date header to a datetime object stevendaprano 1 3,994 Dec-17-2022, 12:24 AM
Last Post: snippsat
  ModuleNotFoundError: No module named 'http.client'; 'http' is not a package abhishek81py 1 18,084 Jun-25-2020, 08:58 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020