Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python - The request headers for mechanize

I am looking for a way to view the request (not response) headers, specifically what browser mechanize claims to be. Also how would I go about manipulating them, eg setting another browser?

Example:

import mechanize
browser = mechanize.Browser()
# Now I want to make a request to eg example.com with custom headers using browser

The purpose is of course to test a website and see whether or not it shows different pages depending on the reported browser.

It has to be the mechanize browser as the rest of the code depends on it (but is left out as it's irrelevant.)

like image 465
Johanna Larsson Avatar asked Dec 17 '22 23:12

Johanna Larsson


2 Answers

browser.addheaders = [('User-Agent', 'Mozilla/5.0 blahblah')]
like image 192
rkhayrov Avatar answered Jan 04 '23 18:01

rkhayrov


You've got an answer on how to change the headers, but if you want to see the exact headers that are being used try using a proxy that displays the traffic. e.g. Fiddler2 on windows or see this question for some Linux altenatives.

like image 37
Duncan Avatar answered Jan 04 '23 20:01

Duncan