I am using the "requests" module in order to get the content of a web page which happens to be a JSON file. What I want is to convert this JSON to a Python's dictionary.
Here is the code I am using so far:
import requests
import json
apiURL = "http://www.cryptocompare.com/api/data/coinlist/"
content = requests.get(apiURL)
content = r.content
content = json.load(r)
While I am expecting the created dictionary to contains the whole JSON from the beggining till the end as shown in the image below:
The created dictionary starts from the middle or in another words doesn't contains the first lines of the JSON.
Why is this happening and how can I fix that?