Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python get webpage source

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()
 
PREVIOUS NEXT
Tagged: #python #webpage #source
ADD COMMENT
Topic
Name
5+5 =