When I run this:
import urllib feed = urllib.urlopen(\"http://www.yahoo.com\") print feed
I get this output in the interactive window (Py
Try this:
print feed.read()
See Python docs here.