SyntaxFix
Write A Post
Hire A Developer
Questions
For me, none of the above responses worked straight ahead. Instead, I had to do the following (Python 3):
from urllib.request import urlopen data = urlopen("[your url goes here]").read().decode('utf-8') # Do what you need to do with the data.