Looking at the source of urllib2 it looks like the easiest way to do it would be to subclass HTTPRedirectHandler and then use build_opener to override the default HTTPRedirectHandler, but this seems like a lot of (relatively complicated) work to do what seems like it should be pretty simple.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Dive Into Python has a good chapter on handling redirects with urllib2. Another solution is httplib.
|
||||
|
|
|
i suppose this would help
|
||||
|
|
|
I second olt's pointer to Dive into Python. Here's an implementation using urllib2 redirect handlers, more work than it should be? Maybe, shrug.
|
|||||
|
|
This is a urllib2 handler that will not follow redirects:
|
|||
|
|
|
The
|
|||
|
|
|
The shortest way however is
|
|||
|
|
And here is the Requests way:
|
|||
|
|