使用Python进行Google搜索的结果数量有限

时间:2012-06-04 20:45:54

标签: python

我正在尝试从python进行自定义谷歌搜索。我在developer.google.com找到了相关代码。

我的代码:

url = ('https://ajax.googleapis.com/ajax/services/search/web'
       '?v=1.0&q=teen%20wolf%20s02e01%20divxstage.eu&userip=USERS-IP-ADDRESS')

request = urllib2.Request(url, None, {'Referer': "http://www.my-ajax-site.com"})
response = urllib2.urlopen(request)

results = simplejson.load(response)
print results

正如您所见,我正在查询Teen Wolf S02E01 divxstage.eu。上面的脚本返回了json response

现在,当我只是从浏览器中搜索Teen Wolf S02E01 divxstage.eu时,谷歌给我的第一个链接是网站divxstage.eu的链接,这是我的必需链接。

现在,如果你仔细查看json response它不包含divxstage.eu链接,结果也是有限的。

所以,我的问题是为什么上述两种方法的输出存在差异,以及如何自定义查询以获取divxstage.eu所需的www.divxstage.eu/video/6qihgxf1ejzx1链接}。

0 个答案:

没有答案