If I point Firefox at http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes, I get a page of HTML. But if I try this in Python:
import urllib site = 'http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes' req = urllib.urlopen(site) text = req.read()
I get the following:
500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request.
What am I doing wrong?
Tamper datato see what the browser is really doing. Maybe you're missing something. – Tempus Aug 26 '09 at 15:13"500" in textreturned false, and printing it filled three pages of my console. – Matthew Marshall Aug 26 '09 at 15:42