如何使用xgoogle

时间:2011-03-08 03:27:58

标签: python search xgoogle

我正在使用xgoogle库,每当我要求它获得搜索结果的数量时,它就会出现零。 (这不是我的代码,我直接从例子中复制了它)任何想法?

1 个答案:

答案 0 :(得分:0)

这在我的Debian系统上显示了1000000个结果:


jcomeau@intrepid:/usr/src/xgoogle$ cat xg.py 
#!/usr/bin/python
from xgoogle.search import GoogleSearch, SearchError
try:
  gs = GoogleSearch("quick and dirty")
  gs.results_per_page = 50
  results = gs.get_results()
  print 'results', gs.num_results  # number of 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