I am using urllib2
in Python to post login data to a web site.
After successful login, the site redirects my request to another page. Can someone provide a simple code sample on how to do this in Python with urllib2
? I guess I will need cookies also to be logged in when I get redirected to another page. Right?
Thanks a lot in advace.