我想要来自网站的一些数据,其中包含以下网址: http://www.iex.nl/Ajax/ChartData/interday.ashx?id=360113249&callback=ChartData
我认为数据是Json。在我的浏览器中访问网址,我可以读取数据。
在python中我有以下代码:
import urllib
import re
import json
import chardet
url = "http://www.iex.nl/Ajax/ChartData/interday.ashx?id=360113249&callback=ChartData"
htmlfile = urllib.urlopen(url).read()
chardet.detect(htmlfile)
这给出了以下输出: {'confidence':0.0,'encoding':无}
当我打印htmlfile时,它看起来像'utf8'。
这个chardet输出的原因是什么?