Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to download and parse webpage using python, but to access it I need a couple of cookies set. Therefore I need to login over https to the webpage first. The login moment involves sending two POST params (username, password) to /login.php. During the login request I want to retrieve the cookies from the response header and store them so I can use them in the request to download the webpage /data.php.

How would I do this in python (preferably 2.6)? If possible I only want to use builtin modules.

share|improve this question

2 Answers

up vote 80 down vote accepted
import urllib, urllib2, cookielib

username = 'myuser'
password = 'mypassword'

cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
login_data = urllib.urlencode({'username' : username, 'j_password' : password})
opener.open('http://www.example.com/login.php', login_data)
resp = opener.open('http://www.example.com/hiddenpage.php')
print resp.read()

resp.read() is the straight html of the page you want to open, and you can use opener to view any page using your session cookie.

share|improve this answer
Awesome answer. – Paolo Bergantino Aug 14 '09 at 8:36
7  
resp.read() will give you the content – Corey Goldberg Dec 11 '10 at 4:05
Is this safe? Won't this allow packet sniffers to see plaintext passwords? Would using Https be more secure? – Heartinpiece Dec 10 '12 at 6:58
1  
@Heartinpiece Yes, if the server offers it you should use HTTPS. – Harley Holcombe Dec 10 '12 at 22:09

Here's a version using the excellent requests library:

from requests import session

payload = {
    'action': 'login',
    'username': USERNAME,
    'password': PASSWORD
}

with session() as c:
    c.post('http://example.com/login.php', data=payload)
    request = c.get('http://example.com/protected_page.php')
    print request.headers
    print request.text
share|improve this answer
3  
+1 this is the modern way to do it in python. – Kay Zhu Sep 23 '12 at 9:15

protected by Will Nov 2 '10 at 16:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.