Downloading a webpage with python


2013-01-13

import urllib
page = urllib.urlopen('http://www.fuelizer.com')
print page.read()
page.close()