I'm trying to create a lesson on string manipulation for my Year 8 Computing class (12-13 year olds). I want them to grab text from a website and thought that it might be cool to use War and Peace. However, IDLE keeps crashing when I try to read the URL. It works fine in the terminal on a Mac or in Command Line on a PC (takes 5-10 seconds to run), however my students don't have access to the Command Line for network-security reasons.
My code looks like this
import urllib2
site = urllib2.urlopen('http://www.gutenberg.org/cache/epub/2600/pg2600.txt')
site.read()
Does anyone have any advice?