I would like to write a python script to crawl a social network website. The aim of the script should be to retrieve a piece of the social graph (friendships relationship).
The website does not provide any API.
The problem is: how can i crawl a website in python which pretends a login session to access the contact pages (for example, http://www.anobii.com/junemiller/friends )? Well, I have my login\password and I'd use it to login and retrieve, but I don't know how to use it to login via python to establish a session to access the pages. Any suggestion about python modules or methods?
Thanks, Jacopo