from urllib2 import urlopen code example
Example: python get html from url
import requests
url = requests.get("http://google.com")
htmltext = url.text
import requests
url = requests.get("http://google.com")
htmltext = url.text