为什么浏览器显示实体名称?

时间:2013-11-12 14:48:16

标签: python html web.py

import urllib2
url = "http://www.reddit.com/r/pics/hot.json"
hdr = { 'User-Agent' : 'super happy flair bot by /u/spladug' }
req = urllib2.Request(url, headers=hdr)
html = urllib2.urlopen(req).read()
data = '{0}({1})'.format("callback", html)
print data

我想使用从某些网站上抓取的一些数据并使返回值支持JSONP。但浏览器输出:

callback({"kind": "Listing", "data":........

其实我想:

回调({“kind”:“列表”,“数据”:........

我不希望引号转换为&quot;。也许我不应该使用函数read(),但我不知道如何处理它?<​​/ p>

有人可以帮助我吗?

0 个答案:

没有答案