0
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":........

其实我想要:

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

我不希望引号转换为"。也许我不应该使用函数 read(),但我不知道如何处理它?

有人能帮我吗?

4

0 回答 0