DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Read Remote Content
Reading remote data is easy in python.
from urllib import * url = 'http://example.com/index.html' html = urlretrieve(url).read()





