I would like to write a program that changes my user agent string.
How can I do this in Python?
|
I would like to write a program that changes my user agent string. How can I do this in Python? |
||||
|
|
|
I assume you mean a user-agent string in an HTTP request? This is just an HTTP header that gets sent along with your request. using Python's urllib2:
|
|||
|
|
|
In
and then just use Other ways of sending HTTP requests have other ways of specifying headers, of course. |
|||
|
|
|
Using Python you can use urllib to download webpages and use the version value to change the user-agent. There is a very good example on http://wolfprojects.altervista.org/changeua.php Here is an example copied from that page:
|
|||
|
|
|
Best of luck. |
|||
|
|
|
If you want to change the user agent string you send when opening web pages, google around for a Firefox plugin. ;) For example, I found this one. Or you could write a proxy server in Python, which changes all your requests independent of the browser. My point is, changing the string is going to be the easy part; your first question should be, where do I need to change it? If you already know that (at the browser? proxy server? on the router between you and the web servers you're hitting?), we can probably be more helpful. Or, if you're just doing this inside a script, go with any of the |
||||
|
|
|
Updated for Python 3.2 (py3k):
|
|||
|
|