使用Python获取Google搜索右侧摘要框

时间:2013-06-28 19:21:44

标签: python urllib2 python-requests

我想获取任何Google搜索的右侧摘要框,我也有一个独特的标记即获取它,但是当我使用Python Code I获取Google搜索查询的内容时不要在Google的回复中获得右侧框。

请帮助我获取Google查询的全部内容:

获取Google查询页面的代码:

import requests

url = 'https://www.google.co.in/search?q=dhoni'
r = requests.get(url)
content = r.text
f = open('query.html','w')
f.write(search_results)
f.close()

PS:运行上面的代码并在浏览器中查看保存的文件后,右边的框没有显示,表示在获取页面内容时未提取右框内容。

0 个答案:

没有答案