Answers for "how to get url in 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
4

get current url python

driver.current_url
Posted by: Guest on July-01-2020

Code answers related to "how to get url in python"

Browse Popular Code Answers by Language