python get content from url code example
Example 1: python open a url
import webbrowser
webbrowser.open('http://example.com') # Go to example.com
Example 2: how to read a website in python
import urllib.request
try:
with urllib.request.urlopen('http://www.python.org/') as f:
print(f.read().decode('utf-8'))
except urllib.error.URLError as e:
print(e.reason)
print('i thik this is how u do it')