what does urllib do code example
Example: urllib
from urllib.request
import urlopen
story = urlopen('http://sixty-north.com/c/t.txt')
story_words = []
for line in story:
line_words = line.split()
for word in line_words:
story_words.append(word)
story.close()