Process each Request/Item (given in the output parameter) returned from the given spider. Items are sent to the item pipelines, requests are scheduled.
(
self, output: Any, response: Response | Failure
)
| 438 | ) |
| 439 | |
| 440 | def _process_spidermw_output( |
| 441 | self, output: Any, response: Response | Failure |
| 442 | ) -> Deferred[None]: |
| 443 | """Process each Request/Item (given in the output parameter) returned |
| 444 | from the given spider. |
| 445 | |
| 446 | Items are sent to the item pipelines, requests are scheduled. |
| 447 | """ |
| 448 | return deferred_from_coro(self._process_spidermw_output_async(output, response)) |
| 449 | |
| 450 | async def _process_spidermw_output_async( |
| 451 | self, output: Any, response: Response | Failure |
nothing calls this directly
no test coverage detected