This method must be overridden with your custom spider functionality
(self, response: Response, row: dict[str, str])
| 136 | return response |
| 137 | |
| 138 | def parse_row(self, response: Response, row: dict[str, str]) -> Any: |
| 139 | """This method must be overridden with your custom spider functionality""" |
| 140 | raise NotImplementedError |
| 141 | |
| 142 | def parse_rows(self, response: Response) -> Any: |
| 143 | """Receives a response and a dict (representing each row) with a key for |