curlopen url browser code example
Example 1: python open a url
import webbrowser
webbrowser.open('http://example.com') # Go to example.com
Example 2: 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()