This method has the same purpose as the one in XMLFeedSpider
(self, response: Response)
| 132 | return results |
| 133 | |
| 134 | def adapt_response(self, response: Response) -> Response: |
| 135 | """This method has the same purpose as the one in XMLFeedSpider""" |
| 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""" |