Answers for "how to interact with a web page using python"

15

how to open a website in python

import webbrowser
webbrowser.open('https://www.google.co.uk/')
Posted by: Guest on April-27-2020
0

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()
Posted by: Guest on April-12-2020

Code answers related to "how to interact with a web page using python"

Python Answers by Framework

Browse Popular Code Answers by Language