我正在使用 xgoogle 库,每当我要求它获取搜索结果的数量时,它就会出现零。(它不是我的代码,我直接从示例中复制了它)有什么想法吗?
问问题
3946 次
1 回答
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
于 2011-03-08T03:38:16.153 回答