I am currently trying to log into a site using Python however the site seems to be sending a cookie and a redirect statement on the same page. Python seems to be following that redirect thus preventing me from reading the cookie send by the login page. How do I prevent Python's urllib (or urllib2) urlopen from following the redirect?
|
2
|
|||
|
|
|
You could do a couple of things:
This is a quick little thing that shows both
|
||
|
|
|
|
This question was asked before here. EDIT: If you have to deal with quirky web applications you should probably try out mechanize. It's a great library that simulates a web browser. You can control redirecting, cookies, page refreshes... If the website doesn't rely [heavily] on JavaScript, you'll get along very nicely with mechanize. |
|||
|
|
|
|
You could try calling It sounds like your real problem is that |
|||
|
|
