Answers for "get results of url python"

6

python get html from url

import requests

url = requests.get("http://google.com")
htmltext = url.text
Posted by: Guest on May-10-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