(self, crawler, splash_base_url, slot_policy, log_400)
| 223 | remote_keys_key = '_splash_remote_keys' |
| 224 | |
| 225 | def __init__(self, crawler, splash_base_url, slot_policy, log_400): |
| 226 | self.crawler = crawler |
| 227 | self.splash_base_url = splash_base_url |
| 228 | self.slot_policy = slot_policy |
| 229 | self.log_400 = log_400 |
| 230 | self.crawler.signals.connect(self.spider_opened, signals.spider_opened) |
| 231 | |
| 232 | @classmethod |
| 233 | def from_crawler(cls, crawler): |
nothing calls this directly
no outgoing calls
no test coverage detected