(self, possible_slots: Iterable[str])
| 262 | self.downloader: Downloader = crawler.engine.downloader |
| 263 | |
| 264 | def stats(self, possible_slots: Iterable[str]) -> list[tuple[int, str]]: |
| 265 | return [(self._active_downloads(slot), slot) for slot in possible_slots] |
| 266 | |
| 267 | def get_slot_key(self, request: Request) -> str: |
| 268 | return self.downloader.get_slot_key(request) |
no test coverage detected