I need to retrieve my info from Stack Overflow. The web page that I want to retrieve is something like this.
http://stackoverflow.com/users/260127/prosseek
When I run the script, it doesn't seem return any results.
import urllib
sock = urllib.urlopen("http://stackoverflow.com/users/260127/prosseek")
htmlSource = sock.read()
sock.close()
print htmlSource
whereas I get almost instant result with this.
import urllib
sock = urllib.urlopen("http://diveintopython.org/")
htmlSource = sock.read()
sock.close()
print htmlSource
What might be wrong?
PS. I don't know wether this should be asked at MetaStackOverflow or not.