📜  python获取网页源码-Python代码示例

📅  最后修改于: 2022-03-11 14:45:38.282000             🧑  作者: Mango

代码示例2
mport 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', encoding="utf-8" ) as f:
    f.write(req.text)
    f.close()