Answers for "open url in 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
2

python open url in incognito

import webbrowser

url = 'www.google.com'
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s --incognito'

webbrowser.get(chrome_path).open_new(url)
Posted by: Guest on September-01-2020
6

python get html from url

import requests

url = requests.get("http://google.com")
htmltext = url.text
Posted by: Guest on May-10-2020
0

python how to get html code from url

import urllib.request		#pip install concat("urllib", number of current version)

my_request = urllib.request.urlopen("INSERT URL HERE")

my_HTML = my_request.read().decode("utf8")

print(my_HTML)
Posted by: Guest on August-18-2020
4

urllib python

#Used to make requests
import urllib.request

x = urllib.request.urlopen('https://www.google.com/')
print(x.read())
Posted by: Guest on June-26-2020
-1

with urllib.request.urlopen("https://

import urllib.request

req = urllib.request.Request('http://www.voidspace.org.uk')
with urllib.request.urlopen(req) as response:
   the_page = response.read()
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language