Python Get Source Code Of Webpage

[Solved] Python Get Source Code Of Webpage | Python - Code Explorer | yomemimo.com
Question : python get webpage source

Answered by : httpsgithubcombdunlap9

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()

Source : | Last Update : Sun, 19 Apr 20

Answers related to python get source code of webpage

Code Explorer Popular Question For Python