我正在使用 xgoogle python 库尝试搜索特定站点。当我不在关键字搜索中使用“站点:”指示符时,该代码对我有用。如果我确实使用它,结果集是空的。有没有人有任何想法如何让下面的代码工作?
from xgoogle.search import GoogleSearch, SearchError
gs = GoogleSearch("site:reddit.com fun")
gs.results_per_page = 50
results = gs.get_results()
print results
for res in results:
print res.title.encode("utf8")
print