'''
Created on Sep 6, 2017

@author: Susan
'''
import urllib2 


if __name__ == '__main__':
    #url = "http://www.cs.duke.edu/courses/fall17/compsci101/data/hello.txt"
    url="http://nytimes.com"
    f = urllib2.urlopen(url) 
    for foofoo in f: 
        print foofoo 