我已经使用Google API和JavaScript构建了一个剽窃检测应用程序,该工具运行良好,但是当搜索材料超过235个单词时无法搜索。请告诉我怎么做。
答案 0 :(得分:0)
您可以尝试xgoogle Python lib。
from xgoogle.search import GoogleSearch, SearchError
try:
gs = GoogleSearch("quick and dirty")
gs.results_per_page = 50
results = gs.get_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