xgoogle pythonライブラリを使用して、特定のサイトとして検索しようとしています。キーワード検索で「site:」インジケーターを使用しない場合、コードは機能します。私がそれを使用した場合、結果セットは空です。以下のコードを機能させる方法について誰かが考えていますか?
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