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.
|
|
Dive Into Python has a good chapter on handling redirects with urllib2. Another solution is httplib.
|
||
|
|
|
|
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.
|
||
|
|
|
|
i suppose this would help
|
|||
|
|
