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