(
self, spider_cls: type[Spider], settings: dict[str, Any]
)
| 235 | |
| 236 | @abstractmethod |
| 237 | async def run_and_export( |
| 238 | self, spider_cls: type[Spider], settings: dict[str, Any] |
| 239 | ) -> dict[str, Any]: |
| 240 | pass |
| 241 | |
| 242 | def _load_until_eof( |
| 243 | self, data: bytes, load_func: Callable[[IO[bytes]], Any] |
no outgoing calls
no test coverage detected