xgoogle不再有效吗?

时间:2015-11-03 05:32:40

标签: python xgoogle

我只想确认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

它只给了我三个搜索结果,它们与我在浏览器上得到的结果不同。它不再有效了,对吧?

1 个答案:

答案 0 :(得分:2)

我联系了xgoogle的作者,并被告知它已不再有效。