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/topsto
With Python 3
import requests import json url = 'http://IP-Address:8088/ws/v1/cluster/scheduler' r = requests.get(url) data = json.loads(r.content.decode())