Como obter o site ao vivo HTML em Python

import requests
html_code = requests.get('url')
Tejas Naik