How would I parse a json api response with python? I currently have this:
import urllib.request
import json
url = 'https://hacker-news.firebaseio.com/v0/topstories.json?print=pretty'
def response(url):
with urllib.request.urlopen(url) as response:
return response.read()
res = response(url)
print(json.loads(res))
I'm getting this error: TypeError: the JSON object must be str, not 'bytes'
What is the pythonic way to deal with json apis?