I\'m using Python 3.1, if that helps.
Anyways, I\'m trying to get the contents of this webpage. I Googled for a little bit and tried different things, but they didn\
Also you can use faster_than_requests package. That's very fast and simple:
import faster_than_requests as r content = r.get2str("http://test.com/")
Look at this comparison: