https://stackoverflow.com/questions/23049767/parsing-http-response-in-python
python requests library returns response object model
to get dictionary use
import requests
url = 'http://www.quandl.com/api/v1/datasets/FRED/GDP.json'
response = requests.get(url)
dict = response.json()
No comments:
Post a Comment