Okay. Potentially this is a very large question. Instead of using the standard API to retrieve information, you wish to screen scrap?
It's possible - although not recommended as screen scraping is reliant upon the HTML format not changing. However it's not an impossible task.
To get started, you want to look at opening a url:
http://docs.python.org/library/urllib2.html
It's super easy - The example on the page will show you something like this:
>>> import urllib2
>>> f = urllib2.urlopen('http://facebook.com/')
>>> print f.read()
And you see you have HTML.
Now facebook will be smarter than your average site to circumvent this type of login ed: I hope
So you may wan to look at handling the session manually:
import urllib2
req = urllib2.Request('http://www.facebook.com/')
req.add_header('Referer', 'http://www.lastpage.com/')
r = urllib2.urlopen(req)
All snipped from the python docs.