我只是想确认 xgoogle 是否不再用于自动搜索。我按照这个网站上的第一个例子http://www.catonmat.net/blog/python-library-for-google-search/。
from xgoogle.search import GoogleSearch, SearchError
try:
gs = GoogleSearch("quick and dirty")
gs.results_per_page = 50
results = gs.get_results()
for res in results:
print res.title.encode("utf8")
print res.desc.encode("utf8")
print res.url.encode("utf8")
print
except SearchError, e:
print "Search failed: %s" % e
它只给了我三个搜索结果,它们与我在浏览器上得到的不同。它不再工作了,对吧?