Comment obtenir le fichier HTML à partir de l'URL

import requests

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