我一直在使用sbi通过自己的网页上的图片进行Google搜索,以便提取最佳猜测。它运作良好。昨天效果很好..
今天,当我运行该程序时,它出错了。
我的代码:
import sbi
result = bi.search_by(url='http://weknowyourdreams.com/images/apple/apple-09.jpg')
print result.best_guess
错误:
File "/Users/Documents/workspace/src/imagesearch.py", line 4, in <module>
result = sbi.search_by(url='http://weknowyourdreams.com/images/apple/apple-09.jpg')
File "/Users/Envs/code1/lib/python2.7/site-packages/sbi.py", line 154, in search_by
url = a['href']
File "/Users/Envs/code1/lib/python2.7/site-packages/bs4/element.py", line 905, in __getitem__
return self.attrs[key]
KeyError: 'href'
有什么想法吗?
谢谢!