import requests url = requests.get("http://google.com") htmltext = url.text
import urllib link = "http://www.somesite.com/details.pl?urn=2344" f = urllib.urlopen(link) myfile = f.read() print(myfile)