3

Python 3.3.0 で robotparser.read() 関数のタイムアウトを設定する方法はありますか? (urllib.request urlopen など)

デフォルトの 60 秒のタイムアウトは、少し極端です。

(私は独学で Python を学んでいます。)

Python 3.3.0 - ロボットパーサー

Python 3.3.0 - urllib.request

4

1 に答える 1

6

いいえ、でグローバルデフォルトタイムアウトを設定するかsocket.setdefaulttimeout()、クラスをサブクラス化しRobotFileParserてカスタムタイムアウトを追加する必要があります。

from urllib.robotparser import RobotFileParser
import urllib.request

class TimoutRobotFileParser(RobotFileParser):
    def __init__(self, url='', timeout=60):
        super().__init__(url)
        self.timeout = timeout

    def read(self):
        """Reads the robots.txt URL and feeds it to the parser."""
        try:
            f = urllib.request.urlopen(self.url, timeout=self.timeout)
        except urllib.error.HTTPError as err:
            if err.code in (401, 403):
                self.disallow_all = True
            elif err.code >= 400:
                self.allow_all = True
        else:
            raw = f.read()
            self.parse(raw.decode("utf-8").splitlines())
于 2013-03-05T22:34:25.923 に答える