Como obter o arquivo html do URL

import requests

url = requests.get("http://google.com")
htmltext = url.text
Doubtful Dingo