-2
我只想確認xgoogle是否不再用於自動搜索。我跟着這個網站上的第一個例子http://www.catonmat.net/blog/python-library-for-google-search/。xgoogle是否不再工作?
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
它只給了我三個搜索結果,它們與我在瀏覽器中得到的不同。它不再工作了,對吧?