转换为字典时,JSON会自动反转

时间:2017-01-04 21:29:03

标签: python json python-requests

我正在使用"请求"模块,以获取恰好是JSON文件的网页的内容。我想要的是将这个JSON转换为Python的字典。

以下是我目前使用的代码:

apiURL = "http://www.cryptocompare.com/api/data/coinlist/"
content = requests.get(apiURL)
content = r.content
content = json.load(r)

虽然我希望创建的字典包含从开始到结束的整个JSON,如下图所示:
enter image description here

创建的字典从中间开始,或者在另一个单词中不包含JSON的第一行。 enter image description here

为什么会发生这种情况,我该如何解决?

0 个答案:

没有答案