def __init__(self, crawler):
     # ""I'm a plugin""
     basePlugin.__init__(self, crawler)
     
     # User configured variables
     self._equalLimit = 0.8
     self._equAlgorithm = 'setIntersection'
 def __init__(self, crawler):
     # ""I'm a plugin""
     basePlugin.__init__(self, crawler)
     
     # The wait time of the first test I'm going to perform
     self._wait_time = 5
     
     # The original delay between request and response
     _original_wait_time = 0
    def __init__(self, crawler):
        # ""I'm a plugin""
        basePlugin.__init__(self, crawler)

        # The wait time of the first test I'm going to perform
        self._wait_time = 5

        # The original delay between request and response
        _original_wait_time = 0
Exemplo n.º 4
0
 def __init__(self, crawler):
     basePlugin.__init__(self, crawler)
     self.crawler = crawler
     self._urlOpener = None
 def __init__(self, crawler):
     basePlugin.__init__( self, crawler )
     self.crawler = crawler
     self._urlOpener = None