Answers for "python how to acquire the html code for a website"

0

python how to acquire the html code for a website

import requests

url = input('Webpage to grab source from: ')
html_output_name = input('Name for html file: ')

req = requests.get(url, 'html.parser')

with open(html_output_name, 'w') as f:
    f.write(req.text)
    f.close()
Posted by: Guest on January-19-2022

Code answers related to "python how to acquire the html code for a website"

Python Answers by Framework

Browse Popular Code Answers by Language