소스 검색

Catch errors while searching.

tags/v0.2
Ben Kurtovic 10 년 전
부모
커밋
693cdc302f
1개의 변경된 파일7개의 추가작업 그리고 2개의 파일을 삭제
  1. +7
    -2
      earwigbot/wiki/copyvios/search.py

+ 7
- 2
earwigbot/wiki/copyvios/search.py 파일 보기

@@ -22,8 +22,10 @@

from gzip import GzipFile
from json import loads
from socket import error
from StringIO import StringIO
from urllib import quote
from urllib2 import URLError

from earwigbot import importer
from earwigbot.exceptions import SearchQueryError
@@ -90,8 +92,11 @@ class YahooBOSSSearchEngine(BaseSearchEngine):

req = oauth.Request(method="GET", url=url, parameters=params)
req.sign_request(oauth.SignatureMethod_HMAC_SHA1(), consumer, None)
response = self.opener.open(self._build_url(url, req))
result = response.read()
try:
response = self.opener.open(self._build_url(url, req))
result = response.read()
except (URLError, error) as exc:
raise SearchQueryError("Yahoo! BOSS Error: " + str(exc))

if response.headers.get("Content-Encoding") == "gzip":
stream = StringIO(result)


불러오는 중...
취소
저장