0
我需要提取查詢的谷歌搜索結果片段。我在Python中使用BeautifulSoup。我的代碼如下:僅使用python beautifulsoup提取谷歌搜索片段
question = "Where is Tajmahal?"
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
query = question
query = urllib.urlencode ({ 'q' : query })
url = "http://www.google.com/search?%s&"+query
page = opener.open(url)
soup = BeautifulSoup(page)
我不知道如何從這裏開始。我不知道Google搜索代碼片段存儲在哪個標籤中。請幫助