cara mendapatkan file html dari url

import requests

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